Files
apache--tvm/python/tvm/node.py
T
2017-04-26 12:35:58 -07:00

10 lines
235 B
Python

"""Node is the base class of all TVM AST.
Normally user do not need to touch this api.
"""
# pylint: disable=unused-import
from __future__ import absolute_import as _abs
from ._ffi.node import NodeBase, register_node
Node = NodeBase