From: Ramkumar Ramachandra Date: Tue, 13 Dec 2022 16:43:36 +0000 (+0100) Subject: mlir/LinalgOps: fix name of generated .yamlgen in comments X-Git-Tag: upstream/17.0.6~22942 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c58d10c7da88f8e7385d3954399f9ab5e565a33;p=platform%2Fupstream%2Fllvm.git mlir/LinalgOps: fix name of generated .yamlgen in comments Signed-off-by: Ramkumar Ramachandra Differential Revision: https://reviews.llvm.org/D139946 --- diff --git a/mlir/lib/Dialect/Linalg/IR/LinalgOps.cpp b/mlir/lib/Dialect/Linalg/IR/LinalgOps.cpp index 8b0540e..9587a5a 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