dsp simulator (#8869)

* dsp simulator

* progress

* fix

* close on test tiny

* working

* less waste

* line savings

* Device DSP compiler

* mock DSP at the bottom

* DSP tests

* docker caching

* test update

* need load

* skip that test for CI DSP

* last touch

* ugh
This commit is contained in:
George Hotz
2025-02-04 09:45:04 +08:00
committed by GitHub
parent 836cf42c2e
commit 56fa5c1191
6 changed files with 142 additions and 30 deletions

View File

@@ -7,7 +7,7 @@ def multidevice_test(fxn):
exclude_devices = getenv("EXCLUDE_DEVICES", "").split(",")
def ret(self):
for device in Device._devices:
if device in ["DISK", "NPY", "FAKE"]: continue
if device in ["DISK", "NPY", "FAKE", "DSP"]: continue
if not CI: print(device)
if device in exclude_devices:
if not CI: print(f"WARNING: {device} test is excluded")