[Mlir-commits] [mlir] [mlir][vector] Add tests for scalable vectors in bufferize-invalid.mlir (PR #102361)
Cullen Rhodes
llvmlistbot at llvm.org
Thu Aug 8 00:24:29 PDT 2024
================
@@ -6,3 +6,12 @@ func.func @mask(%t0: tensor<?xf32>, %val: vector<16xf32>, %idx: index, %m0: vect
%0 = vector.mask %m0 { vector.transfer_write %val, %t0[%idx] : vector<16xf32>, tensor<?xf32> } : vector<16xi1> -> tensor<?xf32>
return %0 : tensor<?xf32>
}
+
+// -----
+
+// CHECK-LABEL: func @mask_scalable(
+func.func @mask_scalable(%t0: tensor<?xf32>, %val: vector<[16]xf32>, %idx: index, %m0: vector<[16]xi1>) -> tensor<?xf32> {
+ // expected-error @+1 {{'vector.mask' op body must bufferize in-place}}
----------------
c-rhodes wrote:
this error doesn't consider scalability so the test above covers both fixed and scalable vectors?
https://github.com/llvm/llvm-project/pull/102361
More information about the Mlir-commits
mailing list