Skip to content
Snippets Groups Projects
Commit d9a064e8 authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Merge branch 'master' of gitlab.eclipse.org:eclipse/aidge/aidge_export_tensorrt

parents 730c7018 61dfbd14
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@ void init_Graph(py::module& m)
py::arg("nb_bits") = -32)
.def("device", &Graph::device, py::arg("id"))
.def("load", &Graph::load, py::arg("filepath"))
.def("save", &Graph::save, py::arg("filepath"))
.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