File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
src/meta_schedule/schedule_rule Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -391,7 +391,6 @@ class MultiLevelTilingNode : public ScheduleRuleNode {
391391 }
392392 sch->Annotate (block_rv, tir::attr::meta_schedule_tiling_structure, structure);
393393
394- LOG (INFO) << " Doing multi level tiling" ;
395394 std::vector<State> states{State (sch, block_rv)};
396395 states = SubRule (std::move (states), [&](State state) { return TileForVNNI (state); });
397396 states = SubRule (std::move (states), [&](State state) { return TileLoopNest (state); });
@@ -518,7 +517,6 @@ inline std::vector<State> MultiLevelTilingNode::TileLoopNest(State state) const
518517 // Step 2. For each loop axis, tile it
519518 int64_t spatial_loop_product = 1 ;
520519 std::vector<Array<LoopRV>> tiles (s_indices_.size () + r_indices_.size ());
521- LOG (INFO) << " Tile loops: " << loops.size ();
522520 for (int i = 0 , n = loops.size (); i < n; ++i) {
523521 LoopRV loop = loops[i];
524522 const std::vector<int >* idx = nullptr ;
You can’t perform that action at this time.
0 commit comments