[Mlir-commits] [mlir] Adding mlir prefix for missing places in TilingInterface.td (PR #117495)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Sun Nov 24 07:02:22 PST 2024


https://github.com/ddubov100 created https://github.com/llvm/llvm-project/pull/117495

None

>From 9552840345bf89d412009bdf6df437305ff59f57 Mon Sep 17 00:00:00 2001
From: dubov diana <ddubov at mobileye.com>
Date: Sun, 24 Nov 2024 17:01:09 +0200
Subject: [PATCH] Adding mlir prefix for missing places in TilingInterface.td

---
 mlir/include/mlir/Interfaces/TilingInterface.td | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/mlir/include/mlir/Interfaces/TilingInterface.td b/mlir/include/mlir/Interfaces/TilingInterface.td
index 68d4bf7c17e181..b75fc5e806afbe 100644
--- a/mlir/include/mlir/Interfaces/TilingInterface.td
+++ b/mlir/include/mlir/Interfaces/TilingInterface.td
@@ -66,7 +66,7 @@ def TilingInterface : OpInterface<"TilingInterface"> {
         /*desc=*/[{
           Returns a list of iterator types that describe the number of loops.
         }],
-        /*retType=*/"::mlir::SmallVector<utils::IteratorType>",
+        /*retType=*/"::mlir::SmallVector<::mlir::utils::IteratorType>",
         /*methodName=*/"getLoopIteratorTypes",
         /*args=*/(ins),
         /*methodBody=*/"",
@@ -353,8 +353,8 @@ def TilingInterface : OpInterface<"TilingInterface"> {
         /*methodName=*/"generateScalarImplementation",
         /*args=*/(ins
             "::mlir::OpBuilder &":$b,
-            "Location ":$loc,
-            "ValueRange ":$ivs),
+            "::mlir::Location ":$loc,
+            "::mlir::ValueRange ":$ivs),
         /*methodBody=*/"",
         /*defaultImplementation=*/[{
           return failure();



More information about the Mlir-commits mailing list