[Mlir-commits] [mlir] [mlir][vector] Remove unneeded maks restriction (PR #113742)
Diego Caballero
llvmlistbot at llvm.org
Fri Oct 25 15:55:27 PDT 2024
================
@@ -2140,14 +2140,14 @@ def Vector_CompressStoreOp :
Vector_Op<"compressstore">,
Arguments<(ins Arg<AnyMemRef, "", [MemWrite]>:$base,
Variadic<Index>:$indices,
- VectorOfRankAndType<[1], [I1]>:$mask,
- VectorOfRank<[1]>:$valueToStore)> {
+ VectorOf<[I1]>:$mask,
+ AnyVector:$valueToStore)> {
----------------
dcaballe wrote:
For compress and expand, I would state in the doc that the compression/expansion applies only along the innermost dimension.
https://github.com/llvm/llvm-project/pull/113742
More information about the Mlir-commits
mailing list