mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-06-24 02:14:17 +00:00
* tinygrad.nn * flake8 * working on pylint * more pylint * more pylint * pylint passes * networkx * mypy can't infer that type * junk
9 lines
209 B
Python
9 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)
|
|
|