forked from tinygrad/tinygrad
* move device to device.py * pylint test --disable R,C,W,E --enable E0611 * fix tests
8 lines
405 B
Python
8 lines
405 B
Python
from tinygrad.tensor import Tensor # noqa: F401
|
|
from tinygrad.jit import TinyJit # noqa: F401
|
|
from tinygrad.shape.symbolic import Variable # noqa: F401
|
|
from tinygrad.helpers import dtypes # noqa: F401
|
|
|
|
# NOTE: these should not be relied on to be stable
|
|
from tinygrad.device import Device # noqa: F401
|
|
from tinygrad.helpers import GlobalCounters # noqa: F401 |