mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-01-07 22:23:55 -05:00
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
5 lines
193 B
Python
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()
|