[Mlir-commits] [mlir] [mlir] [attribute] Reproduce inconsistent attribute parser and printer (PR #133872)
Jueon Park
llvmlistbot at llvm.org
Mon Mar 31 23:33:50 PDT 2025
https://github.com/JueonPark created https://github.com/llvm/llvm-project/pull/133872
None
>From 6782561ceab3c3a7f2b6c439da5f2cd0632453ed Mon Sep 17 00:00:00 2001
From: Jueon Park <jueonpark at rebellions.ai>
Date: Tue, 1 Apr 2025 15:26:00 +0900
Subject: [PATCH] update(attribute,test): add nested attribute for test
---
mlir/test/lib/Dialect/Test/TestAttrDefs.td | 30 ++++++++++++++++++++++
mlir/test/mlir-tblgen/op-format.mlir | 21 +++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/mlir/test/lib/Dialect/Test/TestAttrDefs.td b/mlir/test/lib/Dialect/Test/TestAttrDefs.td
index fc2d77af29f12..6282154b9b912 100644
--- a/mlir/test/lib/Dialect/Test/TestAttrDefs.td
+++ b/mlir/test/lib/Dialect/Test/TestAttrDefs.td
@@ -58,6 +58,36 @@ def CompoundAttrNested : Test_Attr<"CompoundAttrNested"> {
let assemblyFormat = "`<` `nested` `=` $nested `>`";
}
+// Nested attributes for reproducing.
+def InternalAttr : Test_Attr<"Internal"> {
+ let mnemonic = "internal";
+
+ let parameters = (ins
+ "int64_t":$key,
+ "int64_t":$value
+ );
+
+ let assemblyFormat = "`<` struct(params) `>`";
+}
+
+def ExternalAttr : Test_Attr<"External"> {
+ let mnemonic = "external";
+
+ let parameters = (ins InternalAttr:$internal);
+
+ let assemblyFormat = "`<` struct(params) `>`";
+}
+
+def ExternalArrayAttr : Test_Attr<"ExternalArray"> {
+ let mnemonic = "external_array";
+
+ let parameters = (ins
+ ArrayRefParameter<"InternalAttr">:$internals
+ );
+
+ let assemblyFormat = "`<` `[` struct(params) `]` `>`";
+}
+
// An attribute testing AttributeSelfTypeParameter.
def AttrWithSelfTypeParam
: Test_Attr<"AttrWithSelfTypeParam", [TypedAttrInterface]> {
diff --git a/mlir/test/mlir-tblgen/op-format.mlir b/mlir/test/mlir-tblgen/op-format.mlir
index 08b0c52413a75..7d0bbd8a4273a 100644
--- a/mlir/test/mlir-tblgen/op-format.mlir
+++ b/mlir/test/mlir-tblgen/op-format.mlir
@@ -345,6 +345,27 @@ module attributes {test.someAttr = #test.cmpnd_nested_outer<i <42 <1, !test.smpl
//-----
+// CHECK: module attributes {test.internal = #test.internal<key = 8, value = 9>} {
+// CHECK-NEXT: }
+module attributes {test.internal = #test.internal<key = 8, value = 9>} {
+}
+
+//-----
+
+// CHECK: module attributes {test.external = #test.external<internal = <key = 1, value = 2>>} {
+// CHECK-NEXT: }
+module attributes {test.external = #test.external<internal = #test.internal<key = 1, value = 2>>} {
+}
+
+//-----
+
+// CHECK: module attributes {test.external_array = #test.external_array<[internals = <key = 1, value = 2>, <key = 8, value = 9>]>} {
+// CHECK-NEXT: }
+module attributes {test.external_array = #test.external_array<[internals = #test.internal<key = 1, value = 2>, #test.internal<key = 8, value = 9>]>} {
+}
+
+//-----
+
// CHECK: test.format_cpmd_nested_attr nested <i <42 <1, !test.smpla, [5, 6]>>>
test.format_cpmd_nested_attr nested <i <42 <1, !test.smpla, [5, 6]>>>
More information about the Mlir-commits
mailing list