Skip to content

Commit

Permalink
[GPU] Use only big cores for hybrid CPU
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyamin-Roman committed Nov 27, 2023
1 parent 613e4f5 commit fc92960
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins/intel_gpu/src/graph/program.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,12 @@ static ov::threading::IStreamsExecutor::Config make_task_executor_config(const E
case ov::hint::Priority::HIGH: task_executor_config._threadPreferredCoreType = ov::threading::IStreamsExecutor::Config::BIG; break;
default: OPENVINO_ASSERT(false, "[GPU] Can't create task executor: invalid host task priority value: ", priority);
}
bool enable_cpu_pinning = config.get_property(ov::hint::enable_cpu_pinning);

task_executor_config.update_executor_config(task_executor_config._streams,
1,
task_executor_config._threadPreferredCoreType,
false);
enable_cpu_pinning);

return task_executor_config;
}
Expand Down

0 comments on commit fc92960

Please sign in to comment.