[Mlir-commits] [mlir] e60d574 - [mlir][Python] Fix test broken after D98474

River Riddle llvmlistbot at llvm.org
Tue Mar 16 16:52:37 PDT 2021


Author: River Riddle
Date: 2021-03-16T16:52:20-07:00
New Revision: e60d57451e5ffcf8a43884926b78a31e5b00d90e

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

LOG: [mlir][Python] Fix test broken after D98474

Added: 
    

Modified: 
    mlir/test/Bindings/Python/ir_operation.py

Removed: 
    


################################################################################
diff  --git a/mlir/test/Bindings/Python/ir_operation.py b/mlir/test/Bindings/Python/ir_operation.py
index a71194b354cb..d154e77077ef 100644
--- a/mlir/test/Bindings/Python/ir_operation.py
+++ b/mlir/test/Bindings/Python/ir_operation.py
@@ -470,7 +470,7 @@ def testOperationPrint():
   print(bytes_value)
 
   # Test get_asm with options.
-  # CHECK: value = opaque<"", "0xDEADBEEF"> : tensor<4xi32>
+  # CHECK: value = opaque<"_", "0xDEADBEEF"> : tensor<4xi32>
   # CHECK: "std.return"(%arg0) : (i32) -> () -:4:7
   module.operation.print(large_elements_limit=2, enable_debug_info=True,
       pretty_debug_info=True, print_generic_op_form=True, use_local_scope=True)


        


More information about the Mlir-commits mailing list