From 66ab53438fcbaec568e93fcc7ec61e048ce13f09 Mon Sep 17 00:00:00 2001 From: Hendrik Klug 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(patterns.getContext()); -} \ No newline at end of file +}