Files
tinygrad/test/mockgpu/gpu.py
uuuvn c29c46853f Very basic mock sqtt (#10512)
This mockgpu sqtt emulation will just ignore basically everything and end
up with a 0x1000 size trace full of zeroes, but just testing for things
like register rename is better than nothing i guess
2025-05-26 14:38:28 -07: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()