2023-11-17 23:53:40 +00:00
|
|
|
# distutils: language = c++
|
|
|
|
|
|
|
|
from libcpp.string cimport string
|
|
|
|
|
2024-06-11 01:36:40 +00:00
|
|
|
from msgq.visionipc.visionipc cimport cl_context
|
2023-11-17 23:53:40 +00:00
|
|
|
|
|
|
|
cdef extern from "selfdrive/modeld/runners/thneedmodel.h":
|
|
|
|
cdef cppclass ThneedModel:
|
|
|
|
ThneedModel(string, float*, size_t, int, bool, cl_context)
|