File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed
mlir/lib/Dialect/Mesh/Transforms Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -81,16 +81,14 @@ struct ShardingPropagation
81
81
}
82
82
Block &block = region.front ();
83
83
84
- // clang-format off
85
84
LLVM_DEBUG (
86
- DBGS () << " print all the ops' iterator types and indexing maps in the "
87
- " block.\n " ;
88
- for (Operation &op : block.getOperations ()) {
89
- if (auto shardingOp = llvm::dyn_cast<ShardingInterface>(&op))
90
- shardingOp.printLoopTypesAndIndexingMaps (llvm::dbgs ());
91
- }
92
- );
93
- // clang-format on
85
+ DBGS () << " print all the ops' iterator types and indexing maps in the "
86
+ " block.\n " ;
87
+ for (Operation &op
88
+ : block.getOperations ()) {
89
+ if (auto shardingOp = llvm::dyn_cast<ShardingInterface>(&op))
90
+ shardingOp.printLoopTypesAndIndexingMaps (llvm::dbgs ());
91
+ });
94
92
95
93
// 1. propagate in reversed order
96
94
for (Operation &op : llvm::make_early_inc_range (llvm::reverse (block)))
You can’t perform that action at this time.
0 commit comments