Commit b0ddd9c6 authored by Robert Kimball's avatar Robert Kimball

fix python Executable wrapper

parent 936bcc70
...@@ -25,7 +25,7 @@ namespace py = pybind11; ...@@ -25,7 +25,7 @@ namespace py = pybind11;
void regclass_pyngraph_runtime_Executable(py::module m) void regclass_pyngraph_runtime_Executable(py::module m)
{ {
py::class_<ngraph::runtime::Executable, std::unique_ptr<ngraph::runtime::Executable>> py::class_<ngraph::runtime::Executable, std::shared_ptr<ngraph::runtime::Executable>>
executable(m, "Executable"); executable(m, "Executable");
executable.doc() = "ngraph.impl.runtime.Executable wraps ngraph::runtime::Executable"; executable.doc() = "ngraph.impl.runtime.Executable wraps ngraph::runtime::Executable";
executable.def("call", executable.def("call",
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment