Skip to content

Commit

Permalink
fix code style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wangleis committed Dec 23, 2024
1 parent 13ce056 commit 9245daf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins/intel_cpu/src/cpu_streams_calculation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,8 @@ std::vector<std::vector<int>> get_streams_info_table(
break;
}
}
current_socket_info = socket_index < proc_socket_table.size() ? proc_socket_table[socket_index] : proc_socket_table[0];
current_socket_info =
socket_index < proc_socket_table.size() ? proc_socket_table[socket_index] : proc_socket_table[0];
}

n_threads_per_stream = model_prefer_threads == 0
Expand Down

0 comments on commit 9245daf

Please sign in to comment.