Files
onepilot/tinygrad_repo/test/mockgpu/gpu.py
T
Vehicle Researcher bd2ed6664a Carrot2-v9
2025-08-03 19:15:56 +09:00

5 lines
193 B
Python

class VirtGPU:
def __init__(self, gpuid): self.gpuid = gpuid
def map_range(self, vaddr, size): raise NotImplementedError()
def unmap_range(self, vaddr, size): raise NotImplementedError()