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/ViewLikeInterface.td
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def OffsetSizeAndStrideOpInterface : OpInterface<"OffsetSizeAndStrideOpInterface
/*desc=*/[{
Return a vector of all the static or dynamic offsets of the op.
}],
/*retTy=*/"::llvm::SmallVector<::mlir::OpFoldResult, 4>",
/*retTy=*/"::llvm::SmallVector<::mlir::OpFoldResult>",
/*methodName=*/"getMixedOffsets",
/*args=*/(ins),
/*methodBody=*/"",
Expand All @@ -174,7 +174,7 @@ def OffsetSizeAndStrideOpInterface : OpInterface<"OffsetSizeAndStrideOpInterface
/*desc=*/[{
Return a vector of all the static or dynamic sizes of the op.
}],
/*retTy=*/"::llvm::SmallVector<::mlir::OpFoldResult, 4>",
/*retTy=*/"::llvm::SmallVector<::mlir::OpFoldResult>",
/*methodName=*/"getMixedSizes",
/*args=*/(ins),
/*methodBody=*/"",
Expand All @@ -188,7 +188,7 @@ def OffsetSizeAndStrideOpInterface : OpInterface<"OffsetSizeAndStrideOpInterface
/*desc=*/[{
Return a vector of all the static or dynamic strides of the op.
}],
/*retTy=*/"::llvm::SmallVector<::mlir::OpFoldResult, 4>",
/*retTy=*/"::llvm::SmallVector<::mlir::OpFoldResult>",
/*methodName=*/"getMixedStrides",
/*args=*/(ins),
/*methodBody=*/"",
Expand Down