Skip to content

Commit 6eb34ee

Browse files
authored
update CID fix in PR 28541 (#28863)
### Details: - *cpu_ids is const in this function* ### Tickets: - *ticket-id*
1 parent 69ff32d commit 6eb34ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/inference/src/dev/threading/cpu_streams_executor.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ struct CPUStreamsExecutor::Impl {
3636
: custom::task_scheduler_observer(arena),
3737
_mask{std::move(mask)},
3838
_ncpus(ncpus),
39-
_cpu_ids(std::move(cpu_ids)) {}
39+
_cpu_ids(cpu_ids) {}
4040
void on_scheduler_entry(bool) override {
4141
pin_thread_to_vacant_core(tbb::this_task_arena::current_thread_index(),
4242
_threadBindingStep,

0 commit comments

Comments
 (0)