Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading