Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
masahi committed Apr 7, 2022
1 parent fed910e commit 0c51bad
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/meta_schedule/schedule_rule/multi_level_tiling.cc
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,6 @@ class MultiLevelTilingNode : public ScheduleRuleNode {
}
sch->Annotate(block_rv, tir::attr::meta_schedule_tiling_structure, structure);

LOG(INFO) << "Doing multi level tiling";
std::vector<State> states{State(sch, block_rv)};
states = SubRule(std::move(states), [&](State state) { return TileForVNNI(state); });
states = SubRule(std::move(states), [&](State state) { return TileLoopNest(state); });
Expand Down Expand Up @@ -518,7 +517,6 @@ inline std::vector<State> MultiLevelTilingNode::TileLoopNest(State state) const
// Step 2. For each loop axis, tile it
int64_t spatial_loop_product = 1;
std::vector<Array<LoopRV>> tiles(s_indices_.size() + r_indices_.size());
LOG(INFO) << "Tile loops: " << loops.size();
for (int i = 0, n = loops.size(); i < n; ++i) {
LoopRV loop = loops[i];
const std::vector<int>* idx = nullptr;
Expand Down

0 comments on commit 0c51bad

Please sign in to comment.