Files
tinygrad/tinygrad/__init__.py
T
George HotzandGitHub 9e07824542 move device to device.py (#2466)
* move device to device.py

* pylint test --disable R,C,W,E --enable E0611

* fix tests
2023-11-27 11:34:37 -08:00

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