1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620
|
# RUN: %PYTHON %s | FileCheck %s
import gc
from mlir.ir import *
def run(f):
print("\nTEST:", f.__name__)
f()
gc.collect()
assert Context._get_live_count() == 0
return f
# CHECK-LABEL: TEST: testParsePrint
@run
def testParsePrint():
with Context() as ctx:
t = Attribute.parse('"hello"')
assert t.context is ctx
ctx = None
gc.collect()
# CHECK: "hello"
print(str(t))
# CHECK: StringAttr("hello")
print(repr(t))
# CHECK-LABEL: TEST: testParseError
@run
def testParseError():
with Context():
try:
t = Attribute.parse("BAD_ATTR_DOES_NOT_EXIST")
except MLIRError as e:
# CHECK: testParseError: <
# CHECK: Unable to parse attribute:
# CHECK: error: "BAD_ATTR_DOES_NOT_EXIST":1:1: expected attribute value
# CHECK: >
print(f"testParseError: <{e}>")
else:
print("Exception not produced")
# CHECK-LABEL: TEST: testAttrEq
@run
def testAttrEq():
with Context():
a1 = Attribute.parse('"attr1"')
a2 = Attribute.parse('"attr2"')
a3 = Attribute.parse('"attr1"')
# CHECK: a1 == a1: True
print("a1 == a1:", a1 == a1)
# CHECK: a1 == a2: False
print("a1 == a2:", a1 == a2)
# CHECK: a1 == a3: True
print("a1 == a3:", a1 == a3)
# CHECK: a1 == None: False
print("a1 == None:", a1 == None)
# CHECK-LABEL: TEST: testAttrHash
@run
def testAttrHash():
with Context():
a1 = Attribute.parse('"attr1"')
a2 = Attribute.parse('"attr2"')
a3 = Attribute.parse('"attr1"')
# CHECK: hash(a1) == hash(a3): True
print("hash(a1) == hash(a3):", a1.__hash__() == a3.__hash__())
s = set()
s.add(a1)
s.add(a2)
s.add(a3)
# CHECK: len(s): 2
print("len(s): ", len(s))
# CHECK-LABEL: TEST: testAttrCast
@run
def testAttrCast():
with Context():
a1 = Attribute.parse('"attr1"')
a2 = Attribute(a1)
# CHECK: a1 == a2: True
print("a1 == a2:", a1 == a2)
# CHECK-LABEL: TEST: testAttrIsInstance
@run
def testAttrIsInstance():
with Context():
a1 = Attribute.parse("42")
a2 = Attribute.parse("[42]")
assert IntegerAttr.isinstance(a1)
assert not IntegerAttr.isinstance(a2)
assert not ArrayAttr.isinstance(a1)
assert ArrayAttr.isinstance(a2)
# CHECK-LABEL: TEST: testAttrEqDoesNotRaise
@run
def testAttrEqDoesNotRaise():
with Context():
a1 = Attribute.parse('"attr1"')
not_an_attr = "foo"
# CHECK: False
print(a1 == not_an_attr)
# CHECK: False
print(a1 == None)
# CHECK: True
print(a1 != None)
# CHECK-LABEL: TEST: testAttrCapsule
@run
def testAttrCapsule():
with Context() as ctx:
a1 = Attribute.parse('"attr1"')
# CHECK: mlir.ir.Attribute._CAPIPtr
attr_capsule = a1._CAPIPtr
print(attr_capsule)
a2 = Attribute._CAPICreate(attr_capsule)
assert a2 == a1
assert a2.context is ctx
# CHECK-LABEL: TEST: testStandardAttrCasts
@run
def testStandardAttrCasts():
with Context():
a1 = Attribute.parse('"attr1"')
astr = StringAttr(a1)
aself = StringAttr(astr)
# CHECK: StringAttr("attr1")
print(repr(astr))
try:
tillegal = StringAttr(Attribute.parse("1.0"))
except ValueError as e:
# CHECK: ValueError: Cannot cast attribute to StringAttr (from Attribute(1.000000e+00 : f64))
print("ValueError:", e)
else:
print("Exception not produced")
# CHECK-LABEL: TEST: testAffineMapAttr
@run
def testAffineMapAttr():
with Context() as ctx:
d0 = AffineDimExpr.get(0)
d1 = AffineDimExpr.get(1)
c2 = AffineConstantExpr.get(2)
map0 = AffineMap.get(2, 3, [])
# CHECK: affine_map<(d0, d1)[s0, s1, s2] -> ()>
attr_built = AffineMapAttr.get(map0)
print(str(attr_built))
attr_parsed = Attribute.parse(str(attr_built))
assert attr_built == attr_parsed
# CHECK-LABEL: TEST: testFloatAttr
@run
def testFloatAttr():
with Context(), Location.unknown():
fattr = FloatAttr(Attribute.parse("42.0 : f32"))
# CHECK: fattr value: 42.0
print("fattr value:", fattr.value)
# Test factory methods.
# CHECK: default_get: 4.200000e+01 : f32
print("default_get:", FloatAttr.get(F32Type.get(), 42.0))
# CHECK: f32_get: 4.200000e+01 : f32
print("f32_get:", FloatAttr.get_f32(42.0))
# CHECK: f64_get: 4.200000e+01 : f64
print("f64_get:", FloatAttr.get_f64(42.0))
try:
fattr_invalid = FloatAttr.get(IntegerType.get_signless(32), 42)
except MLIRError as e:
# CHECK: Invalid attribute:
# CHECK: error: unknown: expected floating point type
print(e)
else:
print("Exception not produced")
# CHECK-LABEL: TEST: testIntegerAttr
@run
def testIntegerAttr():
with Context() as ctx:
i_attr = IntegerAttr(Attribute.parse("42"))
# CHECK: i_attr value: 42
print("i_attr value:", i_attr.value)
# CHECK: i_attr type: i64
print("i_attr type:", i_attr.type)
si_attr = IntegerAttr(Attribute.parse("-1 : si8"))
# CHECK: si_attr value: -1
print("si_attr value:", si_attr.value)
ui_attr = IntegerAttr(Attribute.parse("255 : ui8"))
# CHECK: ui_attr value: 255
print("ui_attr value:", ui_attr.value)
idx_attr = IntegerAttr(Attribute.parse("-1 : index"))
# CHECK: idx_attr value: -1
print("idx_attr value:", idx_attr.value)
# Test factory methods.
# CHECK: default_get: 42 : i32
print("default_get:", IntegerAttr.get(IntegerType.get_signless(32), 42))
# CHECK-LABEL: TEST: testBoolAttr
@run
def testBoolAttr():
with Context() as ctx:
battr = BoolAttr(Attribute.parse("true"))
# CHECK: iattr value: True
print("iattr value:", battr.value)
# Test factory methods.
# CHECK: default_get: true
print("default_get:", BoolAttr.get(True))
# CHECK-LABEL: TEST: testFlatSymbolRefAttr
@run
def testFlatSymbolRefAttr():
with Context() as ctx:
sattr = Attribute.parse("@symbol")
# CHECK: symattr value: symbol
print("symattr value:", sattr.value)
# Test factory methods.
# CHECK: default_get: @foobar
print("default_get:", FlatSymbolRefAttr.get("foobar"))
# CHECK-LABEL: TEST: testSymbolRefAttr
@run
def testSymbolRefAttr():
with Context() as ctx:
sattr = Attribute.parse("@symbol1::@symbol2")
# CHECK: symattr value: ['symbol1', 'symbol2']
print("symattr value:", sattr.value)
# CHECK: default_get: @symbol1::@symbol2
print("default_get:", SymbolRefAttr.get(["symbol1", "symbol2"]))
# CHECK: default_get: @"@symbol1"::@"@symbol2"
print("default_get:", SymbolRefAttr.get(["@symbol1", "@symbol2"]))
# CHECK-LABEL: TEST: testOpaqueAttr
@run
def testOpaqueAttr():
with Context() as ctx:
ctx.allow_unregistered_dialects = True
oattr = OpaqueAttr(Attribute.parse("#pytest_dummy.dummyattr<>"))
# CHECK: oattr value: pytest_dummy
print("oattr value:", oattr.dialect_namespace)
# CHECK: oattr value: b'dummyattr<>'
print("oattr value:", oattr.data)
# Test factory methods.
# CHECK: default_get: #foobar<123>
print(
"default_get:",
OpaqueAttr.get("foobar", bytes("123", "utf-8"), NoneType.get()),
)
# CHECK-LABEL: TEST: testStringAttr
@run
def testStringAttr():
with Context() as ctx:
sattr = StringAttr(Attribute.parse('"stringattr"'))
# CHECK: sattr value: stringattr
print("sattr value:", sattr.value)
# CHECK: sattr value: b'stringattr'
print("sattr value:", sattr.value_bytes)
# Test factory methods.
# CHECK: default_get: "foobar"
print("default_get:", StringAttr.get("foobar"))
# CHECK: typed_get: "12345" : i32
print("typed_get:", StringAttr.get_typed(IntegerType.get_signless(32), "12345"))
# CHECK-LABEL: TEST: testNamedAttr
@run
def testNamedAttr():
with Context():
a = Attribute.parse('"stringattr"')
named = a.get_named("foobar") # Note: under the small object threshold
# CHECK: attr: "stringattr"
print("attr:", named.attr)
# CHECK: name: foobar
print("name:", named.name)
# CHECK: named: NamedAttribute(foobar="stringattr")
print("named:", named)
# CHECK-LABEL: TEST: testDenseIntAttr
@run
def testDenseIntAttr():
with Context():
raw = Attribute.parse("dense<[[0,1,2],[3,4,5]]> : vector<2x3xi32>")
# CHECK: attr: dense<[{{\[}}0, 1, 2], [3, 4, 5]]>
print("attr:", raw)
a = DenseIntElementsAttr(raw)
assert len(a) == 6
# CHECK: 0 1 2 3 4 5
for value in a:
print(value, end=" ")
print()
# CHECK: i32
print(ShapedType(a.type).element_type)
raw = Attribute.parse("dense<[true,false,true,false]> : vector<4xi1>")
# CHECK: attr: dense<[true, false, true, false]>
print("attr:", raw)
a = DenseIntElementsAttr(raw)
assert len(a) == 4
# CHECK: 1 0 1 0
for value in a:
print(value, end=" ")
print()
# CHECK: i1
print(ShapedType(a.type).element_type)
@run
def testDenseArrayGetItem():
def print_item(attr_asm):
attr = Attribute.parse(attr_asm)
print(f"{len(attr)}: {attr[0]}, {attr[1]}")
with Context():
# CHECK: 2: 0, 1
print_item("array<i1: false, true>")
# CHECK: 2: 2, 3
print_item("array<i8: 2, 3>")
# CHECK: 2: 4, 5
print_item("array<i16: 4, 5>")
# CHECK: 2: 6, 7
print_item("array<i32: 6, 7>")
# CHECK: 2: 8, 9
print_item("array<i64: 8, 9>")
# CHECK: 2: 1.{{0+}}, 2.{{0+}}
print_item("array<f32: 1.0, 2.0>")
# CHECK: 2: 3.{{0+}}, 4.{{0+}}
print_item("array<f64: 3.0, 4.0>")
# CHECK-LABEL: TEST: testDenseIntAttrGetItem
@run
def testDenseIntAttrGetItem():
def print_item(attr_asm):
attr = Attribute.parse(attr_asm)
dtype = ShapedType(attr.type).element_type
try:
item = attr[0]
print(f"{dtype}:", item)
except TypeError as e:
print(f"{dtype}:", e)
with Context():
# CHECK: i1: 1
print_item("dense<true> : tensor<i1>")
# CHECK: i8: 123
print_item("dense<123> : tensor<i8>")
# CHECK: i16: 123
print_item("dense<123> : tensor<i16>")
# CHECK: i32: 123
print_item("dense<123> : tensor<i32>")
# CHECK: i64: 123
print_item("dense<123> : tensor<i64>")
# CHECK: ui8: 123
print_item("dense<123> : tensor<ui8>")
# CHECK: ui16: 123
print_item("dense<123> : tensor<ui16>")
# CHECK: ui32: 123
print_item("dense<123> : tensor<ui32>")
# CHECK: ui64: 123
print_item("dense<123> : tensor<ui64>")
# CHECK: si8: -123
print_item("dense<-123> : tensor<si8>")
# CHECK: si16: -123
print_item("dense<-123> : tensor<si16>")
# CHECK: si32: -123
print_item("dense<-123> : tensor<si32>")
# CHECK: si64: -123
print_item("dense<-123> : tensor<si64>")
# CHECK: i7: Unsupported integer type
print_item("dense<123> : tensor<i7>")
# CHECK-LABEL: TEST: testDenseFPAttr
@run
def testDenseFPAttr():
with Context():
raw = Attribute.parse("dense<[0.0, 1.0, 2.0, 3.0]> : vector<4xf32>")
# CHECK: attr: dense<[0.000000e+00, 1.000000e+00, 2.000000e+00, 3.000000e+00]>
print("attr:", raw)
a = DenseFPElementsAttr(raw)
assert len(a) == 4
# CHECK: 0.0 1.0 2.0 3.0
for value in a:
print(value, end=" ")
print()
# CHECK: f32
print(ShapedType(a.type).element_type)
# CHECK-LABEL: TEST: testDictAttr
@run
def testDictAttr():
with Context():
dict_attr = {
"stringattr": StringAttr.get("string"),
"integerattr": IntegerAttr.get(IntegerType.get_signless(32), 42),
}
a = DictAttr.get(dict_attr)
# CHECK attr: {integerattr = 42 : i32, stringattr = "string"}
print("attr:", a)
assert len(a) == 2
# CHECK: integerattr: IntegerAttr(42 : i32)
print("integerattr:", repr(a["integerattr"]))
# CHECK: stringattr: StringAttr("string")
print("stringattr:", repr(a["stringattr"]))
# CHECK: True
print("stringattr" in a)
# CHECK: False
print("not_in_dict" in a)
# Check that exceptions are raised as expected.
try:
_ = a["does_not_exist"]
except KeyError:
pass
else:
assert False, "Exception not produced"
try:
_ = a[42]
except IndexError:
pass
else:
assert False, "expected IndexError on accessing an out-of-bounds attribute"
# CHECK "empty: {}"
print("empty: ", DictAttr.get())
# CHECK-LABEL: TEST: testTypeAttr
@run
def testTypeAttr():
with Context():
raw = Attribute.parse("vector<4xf32>")
# CHECK: attr: vector<4xf32>
print("attr:", raw)
type_attr = TypeAttr(raw)
# CHECK: f32
print(ShapedType(type_attr.value).element_type)
# CHECK-LABEL: TEST: testArrayAttr
@run
def testArrayAttr():
with Context():
arr = Attribute.parse("[42, true, vector<4xf32>]")
# CHECK: arr: [42, true, vector<4xf32>]
print("arr:", arr)
# CHECK: - IntegerAttr(42 : i64)
# CHECK: - BoolAttr(true)
# CHECK: - TypeAttr(vector<4xf32>)
for attr in arr:
print("- ", repr(attr))
with Context():
intAttr = Attribute.parse("42")
vecAttr = Attribute.parse("vector<4xf32>")
boolAttr = BoolAttr.get(True)
raw = ArrayAttr.get([vecAttr, boolAttr, intAttr])
# CHECK: attr: [vector<4xf32>, true, 42]
print("raw attr:", raw)
# CHECK: - TypeAttr(vector<4xf32>)
# CHECK: - BoolAttr(true
# CHECK: - IntegerAttr(42 : i64)
arr = raw
for attr in arr:
print("- ", repr(attr))
# CHECK: attr[0]: TypeAttr(vector<4xf32>)
print("attr[0]:", repr(arr[0]))
# CHECK: attr[1]: BoolAttr(true)
print("attr[1]:", repr(arr[1]))
# CHECK: attr[2]: IntegerAttr(42 : i64)
print("attr[2]:", repr(arr[2]))
try:
print("attr[3]:", arr[3])
except IndexError as e:
# CHECK: Error: ArrayAttribute index out of range
print("Error: ", e)
with Context():
try:
ArrayAttr.get([None])
except RuntimeError as e:
# CHECK: Error: Invalid attribute (None?) when attempting to create an ArrayAttribute
print("Error: ", e)
try:
ArrayAttr.get([42])
except RuntimeError as e:
# CHECK: Error: Invalid attribute when attempting to create an ArrayAttribute
print("Error: ", e)
with Context():
array = ArrayAttr.get([StringAttr.get("a"), StringAttr.get("b")])
array = array + [StringAttr.get("c")]
# CHECK: concat: ["a", "b", "c"]
print("concat: ", array)
# CHECK-LABEL: TEST: testStridedLayoutAttr
@run
def testStridedLayoutAttr():
with Context():
attr = StridedLayoutAttr.get(42, [5, 7, 13])
# CHECK: strided<[5, 7, 13], offset: 42>
print(attr)
# CHECK: 42
print(attr.offset)
# CHECK: 3
print(len(attr.strides))
# CHECK: 5
print(attr.strides[0])
# CHECK: 7
print(attr.strides[1])
# CHECK: 13
print(attr.strides[2])
attr = StridedLayoutAttr.get_fully_dynamic(3)
dynamic = ShapedType.get_dynamic_stride_or_offset()
# CHECK: strided<[?, ?, ?], offset: ?>
print(attr)
# CHECK: offset is dynamic: True
print(f"offset is dynamic: {attr.offset == dynamic}")
# CHECK: rank: 3
print(f"rank: {len(attr.strides)}")
# CHECK: strides are dynamic: [True, True, True]
print(f"strides are dynamic: {[s == dynamic for s in attr.strides]}")
# CHECK-LABEL: TEST: testConcreteTypesRoundTrip
@run
def testConcreteTypesRoundTrip():
with Context(), Location.unknown():
def print_item(attr):
print(repr(attr.type))
# CHECK: F32Type(f32)
print_item(Attribute.parse("42.0 : f32"))
# CHECK: F32Type(f32)
print_item(FloatAttr.get_f32(42.0))
# CHECK: IntegerType(i64)
print_item(IntegerAttr.get(IntegerType.get_signless(64), 42))
def print_container_item(attr_asm):
attr = DenseElementsAttr(Attribute.parse(attr_asm))
print(repr(attr.type))
print(repr(attr.type.element_type))
# CHECK: RankedTensorType(tensor<i16>)
# CHECK: IntegerType(i16)
print_container_item("dense<123> : tensor<i16>")
# CHECK: RankedTensorType(tensor<f64>)
# CHECK: F64Type(f64)
print_container_item("dense<1.0> : tensor<f64>")
raw = Attribute.parse("vector<4xf32>")
# CHECK: attr: vector<4xf32>
print("attr:", raw)
type_attr = TypeAttr(raw)
# CHECK: VectorType(vector<4xf32>)
print(repr(type_attr.value))
# CHECK: F32Type(f32)
print(repr(type_attr.value.element_type))
# CHECK-LABEL: TEST: testConcreteAttributesRoundTrip
@run
def testConcreteAttributesRoundTrip():
with Context(), Location.unknown():
# CHECK: FloatAttr(4.200000e+01 : f32)
print(repr(Attribute.parse("42.0 : f32")))
assert IntegerAttr.static_typeid is not None
|