f9fcc7adab
date: 2026-06-28T09:48:35 master commit: da6313dbe95b3f24bb5d8018b0e5f950f5823ca7
11 lines
351 B
Bash
Executable File
11 lines
351 B
Bash
Executable File
#!/bin/sh
|
|
python3 -c "
|
|
try:
|
|
from tinygrad.runtime.support.system import APLRemotePCIDevice
|
|
APLRemotePCIDevice.ensure_app()
|
|
except Exception as e:
|
|
print('Your tinygrad is too old. Please clone the latest tinygrad: git clone https://github.com/tinygrad/tinygrad.git && cd tinygrad && python3 -m pip install -e .')
|
|
print(e)
|
|
exit(1)
|
|
"
|