[Mlir-commits] [mlir] 66db3cc - [mlir] Update vector return types for `.getMixed`* methods (NFC) (#133821)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Mar 31 16:56:50 PDT 2025
Author: Jakub Kuderski
Date: 2025-03-31T19:56:46-04:00
New Revision: 66db3ccd8c370e56d8f34a55f8cb137dd21b7ced
URL: https://github.com/llvm/llvm-project/commit/66db3ccd8c370e56d8f34a55f8cb137dd21b7ced
DIFF: https://github.com/llvm/llvm-project/commit/66db3ccd8c370e56d8f34a55f8cb137dd21b7ced.diff
LOG: [mlir] Update vector return types for `.getMixed`* methods (NFC) (#133821)
Drop small size to make vector types match the generic helper
`getMixedValues` in `StaticValueUtils.h`.
This saves some needles vector copies. I didn't find any local variables
that need updating.
Added:
Modified:
mlir/include/mlir/Interfaces/ViewLikeInterface.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/Interfaces/ViewLikeInterface.td b/mlir/include/mlir/Interfaces/ViewLikeInterface.td
index 9397f271e1bc6..d1401c238381e 100644
--- a/mlir/include/mlir/Interfaces/ViewLikeInterface.td
+++ b/mlir/include/mlir/Interfaces/ViewLikeInterface.td
@@ -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=*/"",
@@ -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=*/"",
@@ -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=*/"",
More information about the Mlir-commits
mailing list