Files
tinygrad/accel/rawcpu/ops_rawcpu.py
George Hotz b132de677d tinygrad.nn (#367)
* tinygrad.nn

* flake8

* working on pylint

* more pylint

* more pylint

* pylint passes

* networkx

* mypy can't infer that type

* junk
2022-08-18 07:41:00 -07:00

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)