mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-30 19:12:07 +08:00
7 lines
110 B
Python
7 lines
110 B
Python
from tinygrad.device import Device
|
|
|
|
if Device.DEFAULT == "AMD":
|
|
WARP_THREADS = 64
|
|
else:
|
|
WARP_THREADS = 32
|