mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-11 00:23:43 +08:00
0e51ecbb7e
version: sunnypilot v2026.003.000 (dev)
date: 2026-09-09T15:43:49
master commit: b255314f5a
13 lines
674 B
Python
13 lines
674 B
Python
import os
|
|
if int(os.getenv("TYPED", "0")):
|
|
from typeguard import install_import_hook
|
|
install_import_hook(__name__)
|
|
from tinygrad.tensor import Tensor # noqa: F401
|
|
from tinygrad.engine.jit import TinyJit # noqa: F401
|
|
from tinygrad.function import function # noqa: F401
|
|
from tinygrad.uop.ops import UOp
|
|
Variable = UOp.variable
|
|
from tinygrad.dtype import dtypes # noqa: F401
|
|
from tinygrad.helpers import GlobalCounters, fetch, Context, getenv # noqa: F401
|
|
from tinygrad.device import Device # noqa: F401
|