/** * Copyright 2020 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "poly/schedule_pass_mgr.h" namespace akg { namespace ir { namespace poly { const std::vector> &SchedulePassMgr::GetSchedulePasses() const { return schedule_passes_; } void SchedulePassMgr::RegisterPass(std::shared_ptrpass) { CHECK(pass); schedule_passes_.push_back(pass); } isl::schedule SchedulePassMgr::Run(const isl::schedule &sch) { CHECK(sch); return Run(sch, schedule_passes_); } isl::schedule SchedulePassMgr::Run(const isl::schedule &sch, const std::vector> &passes) { CHECK(sch); std::chrono::high_resolution_clock::time_point timer_start; scop_info_.ClearTimeRecords(); auto final_sch = sch; need_restart_ = false; for (auto &pass : passes) { std::stringstream time_log; TIMER_START; final_sch = pass->Run(final_sch); time_log << "[ Polyhedral exec time" << (scop_info_.cube_info_.IsSpecGemm() ? "_specgemm" : "") << " ], " << pass->GetPassName() << " spent " << TIMER_DURATION << " ms"; LOG(INFO) << time_log.str(); scop_info_.RecordTime(time_log.str()); scop_info_.DumpSchTree(pass->GetPassName(), final_sch); if (pass->restart_) { need_restart_ = true; break; } } return final_sch; } isl::schedule SchedulePassMgr::Run(const isl::schedule &sch, PassMgrStrategy &strategy) { CHECK(sch); strategy.RegisterPasses(); std::vector> passes = strategy.GetPasses(); return Run(sch, passes); } } // namespace poly } // namespace ir } // namespace akg