Skip to content
Snippets Groups Projects
Commit 94a8796f authored by Nathan Thoumine's avatar Nathan Thoumine
Browse files

Fix typo

parent 58fca115
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ void init_Graph(py::module& m)
.def("device", &Graph::device, py::arg("id"))
.def("load", &Graph::load, py::arg("filepath"))
.def("save", &Graph::save, py::arg("filepath"))
.def("calibrate", &Graph::calibrate, py::arg("calibration_folder_path") = "./calibration_folder/", py::arg("cache_file_path") = "./calibration_chache")
.def("calibrate", &Graph::calibrate, py::arg("calibration_folder_path") = "./calibration_folder/", py::arg("cache_file_path") = "./calibration_cache")
.def("initialize", &Graph::initialize)
.def("profile", &Graph::profile, py::arg("nb_iterations"), py::arg("mode")= ExecutionMode_T::ASYNC)
.def("run_sync", [](Graph& graph, py::list inputs) -> py::list {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment