[Mlir-commits] [mlir] [MLIR][Linalg] Remove debug print from FoldIntoElementwise pass (PR #135928)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Wed Apr 16 00:53:27 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir
Author: Hendrik_Klug (Jimmy2027)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/135928.diff
1 Files Affected:
- (modified) mlir/lib/Dialect/Linalg/Transforms/FoldIntoElementwise.cpp (+1-2)
``````````diff
diff --git a/mlir/lib/Dialect/Linalg/Transforms/FoldIntoElementwise.cpp b/mlir/lib/Dialect/Linalg/Transforms/FoldIntoElementwise.cpp
index bdd4f6025b051..fcf049e9ce722 100644
--- a/mlir/lib/Dialect/Linalg/Transforms/FoldIntoElementwise.cpp
+++ b/mlir/lib/Dialect/Linalg/Transforms/FoldIntoElementwise.cpp
@@ -72,7 +72,6 @@ struct LinalgFoldIntoElementwisePass
LinalgFoldIntoElementwisePass>::LinalgFoldIntoElementwisePassBase;
void runOnOperation() override {
- llvm::outs() << "Hellow from fold into elemenwise \n";
Operation *op = getOperation();
RewritePatternSet patterns(op->getContext());
populateLinalgFoldIntoElementwisePatterns(patterns);
@@ -86,4 +85,4 @@ struct LinalgFoldIntoElementwisePass
void mlir::linalg::populateLinalgFoldIntoElementwisePatterns(
RewritePatternSet &patterns) {
patterns.add<FoldTransposePattern>(patterns.getContext());
-}
\ No newline at end of file
+}
``````````
</details>
https://github.com/llvm/llvm-project/pull/135928
More information about the Mlir-commits
mailing list