[Mlir-commits] [mlir] 70d34e4 - [MLIR][Linalg] Remove debug print from FoldIntoElementwise pass (#135928)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Wed Apr 16 02:00:51 PDT 2025


Author: Hendrik_Klug
Date: 2025-04-16T10:00:48+01:00
New Revision: 70d34e4bfd32d8518a70226d3d68398d94c1d68f

URL: https://github.com/llvm/llvm-project/commit/70d34e4bfd32d8518a70226d3d68398d94c1d68f
DIFF: https://github.com/llvm/llvm-project/commit/70d34e4bfd32d8518a70226d3d68398d94c1d68f.diff

LOG: [MLIR][Linalg] Remove debug print from FoldIntoElementwise pass (#135928)

Added: 
    

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

Removed: 
    


################################################################################
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
+}


        


More information about the Mlir-commits mailing list