Skip to content

Commit 70d34e4

Browse files
authored
[MLIR][Linalg] Remove debug print from FoldIntoElementwise pass (#135928)
1 parent 559df83 commit 70d34e4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mlir/lib/Dialect/Linalg/Transforms/FoldIntoElementwise.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ struct LinalgFoldIntoElementwisePass
7272
LinalgFoldIntoElementwisePass>::LinalgFoldIntoElementwisePassBase;
7373

7474
void runOnOperation() override {
75-
llvm::outs() << "Hellow from fold into elemenwise \n";
7675
Operation *op = getOperation();
7776
RewritePatternSet patterns(op->getContext());
7877
populateLinalgFoldIntoElementwisePatterns(patterns);
@@ -86,4 +85,4 @@ struct LinalgFoldIntoElementwisePass
8685
void mlir::linalg::populateLinalgFoldIntoElementwisePatterns(
8786
RewritePatternSet &patterns) {
8887
patterns.add<FoldTransposePattern>(patterns.getContext());
89-
}
88+
}

0 commit comments

Comments
 (0)