Skip to content

Commit

Permalink
fix for confused input with output in assert error message (#25915)
Browse files Browse the repository at this point in the history
### Details:
 - short fix for message

### Tickets:
 - N/A
  • Loading branch information
michal-miotk authored Aug 5, 2024
1 parent f8d0e8c commit d604f1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inference/src/cpp/compiled_model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const ov::Output<const ov::Node>& CompiledModel::input(size_t i) const {
OPENVINO_ASSERT(i < _impl->inputs().size(),
"Cannot get input for index: ",
i,
" outputs size is ",
" inputs size is ",
_impl->inputs().size());
return _impl->inputs().at(i);
});
Expand Down

0 comments on commit d604f1d

Please sign in to comment.