[Mlir-commits] [mlir] [MLIR][NFC] Fix the pass description to describe what it actually does. (PR #172306)
Petr Kurapov
llvmlistbot at llvm.org
Mon Dec 15 06:35:42 PST 2025
https://github.com/kurapov-peter created https://github.com/llvm/llvm-project/pull/172306
I was trying out things and spent some time trying to fold a broadcast with pass only to find out that the declared functionality doesn't exist. Hope this saves someone's time.
>From 9596403c43c8db000ad3394091184da0cd1fcd0f Mon Sep 17 00:00:00 2001
From: Petr Kurapov <petr.kurapov at gmail.com>
Date: Mon, 15 Dec 2025 15:32:02 +0100
Subject: [PATCH] [MLIR][NFC] Fix the pass description to describe what it
actually does.
---
mlir/include/mlir/Dialect/Linalg/Passes.td | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mlir/include/mlir/Dialect/Linalg/Passes.td b/mlir/include/mlir/Dialect/Linalg/Passes.td
index 44da2965e6892..e1ea52ea2c21c 100644
--- a/mlir/include/mlir/Dialect/Linalg/Passes.td
+++ b/mlir/include/mlir/Dialect/Linalg/Passes.td
@@ -167,7 +167,7 @@ def LinalgInlineScalarOperandsPass : Pass<"linalg-inline-scalar-operands"> {
}
def LinalgFoldIntoElementwisePass : Pass<"linalg-fold-into-elementwise"> {
- let summary = "Fold transform, broadcast and other ops into elementwise";
+ let summary = "Fold transform ops into elementwise";
let dependentDialects = ["linalg::LinalgDialect"];
}
More information about the Mlir-commits
mailing list