[Mlir-commits] [mlir] ba13978 - [mlir] fix broken python test

Alex Zinenko llvmlistbot at llvm.org
Mon Nov 6 04:30:52 PST 2023


Author: Alex Zinenko
Date: 2023-11-06T12:30:17Z
New Revision: ba13978f4269f4f35f7d1c32bb529f19bf1d8f46

URL: https://github.com/llvm/llvm-project/commit/ba13978f4269f4f35f7d1c32bb529f19bf1d8f46
DIFF: https://github.com/llvm/llvm-project/commit/ba13978f4269f4f35f7d1c32bb529f19bf1d8f46.diff

LOG: [mlir] fix broken python test

Added: 
    

Modified: 
    mlir/test/python/ir/builtin_types.py

Removed: 
    


################################################################################
diff  --git a/mlir/test/python/ir/builtin_types.py b/mlir/test/python/ir/builtin_types.py
index 4c891a2ca2ab9a2..d4fed86b4f135ee 100644
--- a/mlir/test/python/ir/builtin_types.py
+++ b/mlir/test/python/ir/builtin_types.py
@@ -341,7 +341,7 @@ def testVectorType():
             print("Exception not produced")
 
         try:
-            VectorType.get(shape, f32, scalable=[False, True], scalable_dims=[42])
+            VectorType.get(shape, f32, scalable_dims=[42])
         except ValueError as e:
             # CHECK: Scalable dimension index out of bounds.
             print(e)


        


More information about the Mlir-commits mailing list