mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-01-09 15:08:02 -05:00
* tinygrad.nn * flake8 * working on pylint * more pylint * more pylint * pylint passes * networkx * mypy can't infer that type * junk
10 lines
209 B
Python
10 lines
209 B
Python
# type: ignore
|
|
import sys
|
|
|
|
# only pyximport this
|
|
import pyximport
|
|
py_importer, pyx_importer = pyximport.install()
|
|
from accel.rawcpu.buffer import RawCPUBuffer # noqa: F401
|
|
sys.meta_path.remove(pyx_importer)
|
|
|