[Mlir-commits] [mlir] [MLIR][NFC] Fix the pass description to describe what it actually does. (PR #172306)
Adam Siemieniuk
llvmlistbot at llvm.org
Tue Dec 16 05:47:34 PST 2025
================
@@ -167,8 +167,15 @@ 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"];
+
+ let description = [{
+ Fold transform ops that feed `linalg.elementwise` into the elementwise op
----------------
adam-smnk wrote:
nit: here and summary, shouldn't it be `transpose` instead of `transform`?
https://github.com/llvm/llvm-project/pull/172306
More information about the Mlir-commits
mailing list