__init__.py 365 字节
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9 10
import ops
from ops import *
import nn
from nn import *
import io
from io import *
import tensor
from tensor import *
import control_flow
from control_flow import *
Q
qijun 已提交
11 12
import device
from device import *
Y
Yu Yang 已提交
13 14 15 16 17 18 19

__all__ = []
__all__ += nn.__all__
__all__ += io.__all__
__all__ += tensor.__all__
__all__ += control_flow.__all__
__all__ += ops.__all__
Q
qijun 已提交
20
__all__ += device.__all__