Skip to content

Commit

Permalink
Use OV API to set tensor descriptor in output for (#920)
Browse files Browse the repository at this point in the history
ParameterStubNode
  • Loading branch information
praasz authored Jun 10, 2024
1 parent 659e519 commit 7239f82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/nvidia_plugin/tests/unit/result.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ov::Output<ParameterStubNode> : public ov::Output<ov::Node> {
ov::element::Type{},
ov::PartialShape{1},
std::unordered_set<std::string>{ParameterStubNode::get_type_info_static().name});
node->m_outputs.emplace_back(node.get(), 0, tensor);
node->get_output_descriptor(0).set_tensor_ptr(tensor);
}
};

Expand Down

0 comments on commit 7239f82

Please sign in to comment.