[Mlir-commits] [mlir] Reland "[mlir] Fix TileUsingForOp attr-dict printing/parsing" (PR #73261)

Felix Schneider llvmlistbot at llvm.org
Fri Nov 24 13:27:03 PST 2023


================
@@ -355,7 +355,7 @@ def testTileCompact(target):
 @create_sequence
 def testTileAttributes(target):
     attr = DenseI64ArrayAttr.get([4, 8])
-    ichange = DenseI64ArrayAttr.get([0, 1])
+    ichange = Attribute.parse("[0, 1]")
----------------
ubfx wrote:

But isn't the point of that test (`testTileAttributes()`) to pass those as `Attribute`s? Otherwise it would be the same as `testTileCompact()`, or am I missing something?

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


More information about the Mlir-commits mailing list