Skip to content

Commit 50205fc

Browse files
committed
clang format
1 parent f4290d5 commit 50205fc

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

mlir/lib/Dialect/Mesh/Transforms/ShardingPropagation.cpp

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,14 @@ struct ShardingPropagation
8181
}
8282
Block &block = region.front();
8383

84-
// clang-format off
8584
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+
});
9492

9593
// 1. propagate in reversed order
9694
for (Operation &op : llvm::make_early_inc_range(llvm::reverse(block)))

0 commit comments

Comments
 (0)