[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:52:35 PDT 2025


https://github.com/Jimmy2027 created https://github.com/llvm/llvm-project/pull/135928

None

>From 66ab53438fcbaec568e93fcc7ec61e048ce13f09 Mon Sep 17 00:00:00 2001
From: Hendrik Klug <hendrik.klug at gmail.com>
Date: Wed, 16 Apr 2025 09:49:28 +0200
Subject: [PATCH] [MLIR][Linalg] Remove debug print from FoldIntoElementwise
 pass

---
 mlir/lib/Dialect/Linalg/Transforms/FoldIntoElementwise.cpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

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