[Mlir-commits] [mlir] [mlir][vector] Make the in_bounds attribute mandatory (PR #97049)

Mehdi Amini llvmlistbot at llvm.org
Sun Jul 7 04:24:51 PDT 2024


================
@@ -51,10 +51,16 @@ def testTransferReadOp():
         with InsertionPoint(f.add_entry_block()):
             A, zero, padding, mask = f.arguments
             vector.TransferReadOp(
-                vector_type, A, [zero, zero], identity_map_attr, padding, mask=mask
+                vector_type,
+                A,
+                [zero, zero],
+                identity_map_attr,
+                padding,
+                [False, False],
+                mask=mask,
             )
             vector.TransferReadOp(
-                vector_type, A, [zero, zero], identity_map_attr, padding
----------------
joker-eph wrote:

We're losing the default in Python? Can this be recovered somehow?

https://github.com/llvm/llvm-project/pull/97049


More information about the Mlir-commits mailing list