Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/bindings/python/src/pyopenvino/pyopenvino.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,6 @@ PYBIND11_MODULE(_pyopenvino, m) {
"Please ensure that environment variables (e.g. PATH, PYTHONPATH) are set correctly so that "
"OpenVINO Runtime and Python libraries point to same release.");

// https://pybind11.readthedocs.io/en/stable/advanced/cast/stl.html#making-opaque-types
py::bind_vector<ov::TensorVector>(m, "TensorVector");

m.def("get_version", &get_version);
m.def(
"serialize",
Expand Down Expand Up @@ -232,6 +229,8 @@ PYBIND11_MODULE(_pyopenvino, m) {
regclass_graph_Output<ov::Node>(m, std::string(""));
regclass_Tensor(m);
regclass_graph_descriptor_Tensor(m);
// https://pybind11.readthedocs.io/en/stable/advanced/cast/stl.html#making-opaque-types
py::bind_vector<ov::TensorVector>(m, "TensorVector");
regclass_graph_Input(m);
regclass_graph_Node(m);
regclass_graph_NodeFactory(m);
Expand Down
Loading