Lines Matching refs:raw
291 raw = Attribute.parse("dense<[[0,1,2],[3,4,5]]> : vector<2x3xi32>")
293 print("attr:", raw)
295 a = DenseIntElementsAttr(raw)
306 raw = Attribute.parse("dense<[true,false,true,false]> : vector<4xi1>")
308 print("attr:", raw)
310 a = DenseIntElementsAttr(raw)
370 raw = Attribute.parse("dense<[0.0, 1.0, 2.0, 3.0]> : vector<4xf32>")
373 print("attr:", raw)
375 a = DenseFPElementsAttr(raw)
439 raw = Attribute.parse("vector<4xf32>")
441 print("attr:", raw)
442 type_attr = TypeAttr(raw)
451 raw = Attribute.parse("[42, true, vector<4xf32>]")
453 print("raw attr:", raw)
457 for attr in ArrayAttr(raw):
464 raw = ArrayAttr.get([vecAttr, boolAttr, intAttr])
466 print("raw attr:", raw)
470 arr = ArrayAttr(raw)