Skip to content

Commit d604f1d

Browse files
authored
fix for confused input with output in assert error message (openvinotoolkit#25915)
### Details: - short fix for message ### Tickets: - N/A
1 parent f8d0e8c commit d604f1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/inference/src/cpp/compiled_model.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const ov::Output<const ov::Node>& CompiledModel::input(size_t i) const {
7474
OPENVINO_ASSERT(i < _impl->inputs().size(),
7575
"Cannot get input for index: ",
7676
i,
77-
" outputs size is ",
77+
" inputs size is ",
7878
_impl->inputs().size());
7979
return _impl->inputs().at(i);
8080
});

0 commit comments

Comments
 (0)