Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnick committed Dec 16, 2024
1 parent 5e24cde commit cabc589
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/plugins/intel_cpu/src/infer_request.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -501,10 +501,7 @@ void SyncInferRequest::init_tensor(const std::size_t& port_index, const ov::ISyn

if (type == ov::ISyncInferRequest::FoundPort::Type::OUTPUT) {
auto output = graph.getOutputNodeByIndex(port_index);
OPENVINO_ASSERT(output,
"Tensor with index: ",
port_index,
" absent in the plugin's graph outputs");
OPENVINO_ASSERT(output, "Tensor with index: ", port_index, " absent in the plugin's graph outputs");
if (m_outputs.find(port_index) == m_outputs.end()) {
const auto& port = m_output_ports_map[port_index];
const auto& port_shape = port.get_partial_shape();
Expand Down

0 comments on commit cabc589

Please sign in to comment.