kk_contour_net_shallow/RenderStimuli/CPPExtensions/PyTCopyCPU.cpp

16 lines
256 B
C++
Raw Normal View History

2023-07-28 15:42:20 +02:00
#include <pybind11/pybind11.h>
#include "TCopyCPU.h"
namespace py = pybind11;
PYBIND11_MODULE(PyTCopyCPU, m)
{
m.doc() = "TCopyCPU Module";
py::class_<TCopyCPU>(m, "TCopyCPU")
.def(py::init<>())
.def("process",
&TCopyCPU::process);
}