[Mlir-commits] [mlir] [mlir][vector] Extend vector.{insert|extract}_strided_slice (PR #79052)
Andrzej WarzyĆski
llvmlistbot at llvm.org
Wed Jan 24 01:18:09 PST 2024
================
@@ -3265,6 +3288,20 @@ LogicalResult ExtractStridedSliceOp::verify() {
if (getResult().getType() != resultType)
return emitOpError("expected result type to be ") << resultType;
+ unsigned idx = 0;
+ for (unsigned ub = sizes.size(); idx < ub; ++idx) {
----------------
banach-space wrote:
Yeah, this is not needed here.
https://github.com/llvm/llvm-project/pull/79052
More information about the Mlir-commits
mailing list