[Mlir-commits] [mlir] 7e3187e - Adding mlir prefix for missing places in TilingInterface.td (#117495)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Nov 25 07:33:47 PST 2024
Author: ddubov100
Date: 2024-11-25T17:33:43+02:00
New Revision: 7e3187e12a2cef8b2552e08ce9423aca9c09d813
URL: https://github.com/llvm/llvm-project/commit/7e3187e12a2cef8b2552e08ce9423aca9c09d813
DIFF: https://github.com/llvm/llvm-project/commit/7e3187e12a2cef8b2552e08ce9423aca9c09d813.diff
LOG: Adding mlir prefix for missing places in TilingInterface.td (#117495)
Added:
Modified:
mlir/include/mlir/Interfaces/TilingInterface.td
Removed:
################################################################################
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