mirror of
https://github.com/davrot/pytorch-sbs.git
synced 2025-07-05 17:00:03 +02:00
14 lines
No EOL
310 B
C++
14 lines
No EOL
310 B
C++
#include <pybind11/pybind11.h>
|
|
|
|
#include "HDynamicCNNCPU.h"
|
|
|
|
namespace py = pybind11;
|
|
|
|
PYBIND11_MODULE(PyHDynamicCNNCPU, m)
|
|
{
|
|
m.doc() = "HDynamicCNNCPU Module";
|
|
py::class_<HDynamicCNNCPU>(m, "HDynamicCNNCPU")
|
|
.def(py::init<>())
|
|
.def("update",
|
|
&HDynamicCNNCPU::entrypoint);
|
|
} |