#include #include "HDynamicCNNCPU.h" namespace py = pybind11; PYBIND11_MODULE(PyHDynamicCNNCPU, m) { m.doc() = "HDynamicCNNCPU Module"; py::class_(m, "HDynamicCNNCPU") .def(py::init<>()) .def("update", &HDynamicCNNCPU::entrypoint); }