mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-24 17:43:52 +08:00
* Added cython bindings for model runners and commonmodel * Removed cython language_level=3 * loop to set CXXFLAGS for both envs
7 lines
125 B
Cython
7 lines
125 B
Cython
# distutils: language = c++
|
|
|
|
from .runmodel cimport RunModel as cppRunModel
|
|
|
|
cdef class RunModel:
|
|
cdef cppRunModel * model
|