Return an MLIR Integer Attribute of the given IntegerType.
(self, type, value)
| 325 | return ty, None |
| 326 | |
| 327 | def getIntegerAttr(self, type, value): |
| 328 | """ |
| 329 | Return an MLIR Integer Attribute of the given IntegerType. |
| 330 | """ |
| 331 | return IntegerAttr.get(type, value) |
| 332 | |
| 333 | def getIntegerType(self, width=64): |
| 334 | """ |