mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-07-15 09:52:04 +08:00
cfe0ae9b8a
date: 2023-10-09T10:55:55 commit: 91b6e3aecd7170f24bccacb10c515ec281c30295
14 lines
270 B
Cython
14 lines
270 B
Cython
# distutils: language = c++
|
|
|
|
from cereal.visionipc.visionipc cimport cl_mem
|
|
from cereal.visionipc.visionipc_pyx cimport CLContext as BaseCLContext
|
|
|
|
cdef class CLContext(BaseCLContext):
|
|
pass
|
|
|
|
cdef class CLMem:
|
|
cdef cl_mem * mem;
|
|
|
|
@staticmethod
|
|
cdef create(void*)
|