Skip to content

Commit

Permalink
Adding mlir prefix for missing places in TilingInterface.td (llvm#117495
Browse files Browse the repository at this point in the history
)
  • Loading branch information
ddubov100 authored Nov 25, 2024
1 parent f9dca5b commit 7e3187e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mlir/include/mlir/Interfaces/TilingInterface.td
Original file line number Diff line number Diff line change
Expand Up @@ -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=*/"",
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 7e3187e

Please sign in to comment.