Primitive data type in the low level IR Parameters ---------- dtype : str The runtime data type relates to the primtype.
| 42 | |
| 43 | @tvm_ffi.register_object("ir.PrimType") |
| 44 | class PrimType(Type): |
| 45 | """Primitive data type in the low level IR |
| 46 | |
| 47 | Parameters |
| 48 | ---------- |
| 49 | dtype : str |
| 50 | The runtime data type relates to the primtype. |
| 51 | """ |
| 52 | |
| 53 | def __init__(self, dtype): |
| 54 | self.__init_handle_by_constructor__(_ffi_api.PrimType, dtype) |
| 55 | |
| 56 | |
| 57 | @tvm_ffi.register_object("ir.PointerType") |
no outgoing calls
searching dependent graphs…