mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-20 23:03:54 +08:00
* Added cython bindings for model runners and commonmodel
* Removed cython language_level=3
* loop to set CXXFLAGS for both envs
old-commit-hash: e2e39d100b
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*)
|