[Mlir-commits] [mlir] 9c58d10 - mlir/LinalgOps: fix name of generated .yamlgen in comments
Ramkumar Ramachandra
llvmlistbot at llvm.org
Wed Dec 21 09:43:27 PST 2022
Author: Ramkumar Ramachandra
Date: 2022-12-21T18:43:03+01:00
New Revision: 9c58d10c7da88f8e7385d3954399f9ab5e565a33
URL: https://github.com/llvm/llvm-project/commit/9c58d10c7da88f8e7385d3954399f9ab5e565a33
DIFF: https://github.com/llvm/llvm-project/commit/9c58d10c7da88f8e7385d3954399f9ab5e565a33.diff
LOG: mlir/LinalgOps: fix name of generated .yamlgen in comments
Signed-off-by: Ramkumar Ramachandra <r at artagnon.com>
Differential Revision: https://reviews.llvm.org/D139946
Added:
Modified:
mlir/lib/Dialect/Linalg/IR/LinalgOps.cpp
Removed:
################################################################################
diff --git a/mlir/lib/Dialect/Linalg/IR/LinalgOps.cpp b/mlir/lib/Dialect/Linalg/IR/LinalgOps.cpp
index 8b0540e10d01b..9587a5a32b0e4 100644
--- a/mlir/lib/Dialect/Linalg/IR/LinalgOps.cpp
+++ b/mlir/lib/Dialect/Linalg/IR/LinalgOps.cpp
@@ -252,7 +252,8 @@ static void printNamedStructuredOp(OpAsmPrinter &p, Operation *op,
p.printOptionalAttrDict(
op->getAttrs(),
/*elidedAttrs=*/{"operand_segment_sizes",
- // See generated code in mlir-linalg-yaml-gen.cpp
+ // See generated code in
+ // LinalgNamedStructuredOps.yamlgen.cpp.inc
"linalg.memoized_indexing_maps"});
// Printing is shared with generic ops, except for the region and
@@ -270,7 +271,8 @@ static void printNamedStructuredOp(OpAsmPrinter &p, Operation *op,
// TODO: Move this to a utility library.
// The public methods on this class are referenced directly from generated code.
// Helper build the unary, binary, and type conversion functions defined by the
-// DSL. See mlir-linalg-ods-yaml-gen.cpp for the code that uses this class.
+// DSL. See LinalgNamedStructuredOps.yamlgen.cpp.inc for the code that uses this
+// class.
//
// Implementations of the math functions must be polymorphic over numeric types,
// internally performing necessary casts. If the function application makes no
More information about the Mlir-commits
mailing list