Merge pull request #218 from EthicalML/add_destroy_mgr_py
Added destroy for manager
This commit is contained in:
commit
11597af272
1 changed files with 3 additions and 0 deletions
|
|
@ -156,6 +156,8 @@ PYBIND11_MODULE(kp, m) {
|
|||
py::arg("device") = 0,
|
||||
py::arg("family_queue_indices") = std::vector<uint32_t>(),
|
||||
py::arg("desired_extensions") = std::vector<std::string>())
|
||||
.def("destroy", &kp::Manager::destroy,
|
||||
DOC(kp, Manager, destroy))
|
||||
.def("sequence", &kp::Manager::sequence, DOC(kp, Manager, sequence),
|
||||
py::arg("queue_index") = 0, py::arg("total_timestamps") = 0)
|
||||
.def("tensor", [np](kp::Manager& self,
|
||||
|
|
@ -241,3 +243,4 @@ PYBIND11_MODULE(kp, m) {
|
|||
m.attr("__version__") = "dev";
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue