[Mlir-commits] [mlir] [mlir] Update vector return types for `.getMixed`* methods NFC. (PR #133821)
Jakub Kuderski
llvmlistbot at llvm.org
Mon Mar 31 16:16:49 PDT 2025
https://github.com/kuhar created https://github.com/llvm/llvm-project/pull/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.
>From 6e6d3ccc491c6dea62a6db794f879cb552f7d134 Mon Sep 17 00:00:00 2001
From: Jakub Kuderski <jakub at nod-labs.com>
Date: Mon, 31 Mar 2025 19:13:21 -0400
Subject: [PATCH] [mlir] Update vector return types for `.getMixed`* methods
NFC.
Drop small size to make vector types match the generic helper
`getMixedValues` in `StaticValueUtils.h`.
---
mlir/include/mlir/Interfaces/ViewLikeInterface.td | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
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