mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-23 16:32:04 +08:00
13aee3754b
date: 2026-07-20T11:52:50
master commit: bae7e49626
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()
|