Files
Vehicle Researcher 9f648e0963 openpilot v0.10.1
2025-08-24 02:10:58 -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()