[Mlir-commits] [mlir] [MLIR][NFC] Fix the pass description to describe what it actually does. (PR #172306)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Dec 15 06:36:21 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir-linalg
@llvm/pr-subscribers-mlir
Author: Petr Kurapov (kurapov-peter)
<details>
<summary>Changes</summary>
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.
---
Full diff: https://github.com/llvm/llvm-project/pull/172306.diff
1 Files Affected:
- (modified) mlir/include/mlir/Dialect/Linalg/Passes.td (+1-1)
``````````diff
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"];
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/172306
More information about the Mlir-commits
mailing list