node.py 235 Bytes
Newer Older
1 2 3 4
"""Node is the base class of all TVM AST.

Normally user do not need to touch this api.
"""
5 6
# pylint: disable=unused-import
from __future__ import absolute_import as _abs
7
from ._ffi.node import NodeBase, register_node
8 9

Node = NodeBase