mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-01-10 23:48:01 -05:00
7 lines
216 B
Python
7 lines
216 B
Python
class VirtGPU:
|
|
def __init__(self, gpuid):
|
|
self.gpuid = gpuid
|
|
self.regs = {}
|
|
def map_range(self, vaddr, size): raise NotImplementedError()
|
|
def unmap_range(self, vaddr, size): raise NotImplementedError()
|