__init__.py 354 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
"""C interfacing code.

This namespace contains everything that interacts with C code.
Most TVM C related object are ctypes compatible, which means
they contains a handle field that is ctypes.c_void_p and can
be used via ctypes function calls.

Some performance critical functions are implemented by cython
and have a ctypes fallback implementation.
"""