[Mlir-commits] [mlir] [mlir] Update vector return types for `.getMixed`* methods NFC. (PR #133821)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Mar 31 16:17:33 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir
Author: Jakub Kuderski (kuhar)
<details>
<summary>Changes</summary>
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.
---
Full diff: https://github.com/llvm/llvm-project/pull/133821.diff
1 Files Affected:
- (modified) mlir/include/mlir/Interfaces/ViewLikeInterface.td (+3-3)
``````````diff
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=*/"",
``````````
</details>
https://github.com/llvm/llvm-project/pull/133821
More information about the Mlir-commits
mailing list