From 0a285ef9afe021b0921822ceff42d0576cece7af Mon Sep 17 00:00:00 2001 From: Alejandro Saucedo Date: Sat, 6 Mar 2021 11:25:25 +0000 Subject: [PATCH] Updated string --- python/src/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python/src/main.cpp b/python/src/main.cpp index a20120d4f..f13347aa8 100644 --- a/python/src/main.cpp +++ b/python/src/main.cpp @@ -135,7 +135,10 @@ PYBIND11_MODULE(kp, m) { py::class_>(m, "Manager") .def(py::init()) .def(py::init()) - .def(py::init&,const std::vector&>()) + .def(py::init&,const std::vector&>(), + py::arg("device") = 0, + py::arg("family_queue_indices") = std::vector(), + py::arg("desired_extensions") = std::vector()) .def("sequence", &kp::Manager::sequence, py::arg("queueIndex") = 0) .def("tensor", [np](kp::Manager& self, const py::array_t data,