Skip to content

Commit

Permalink
fixed review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-gorokhov committed Jan 3, 2025
1 parent 3372262 commit 1659f37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demos/common/cpp/utils/src/config_factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ModelConfig ConfigFactory::getUserConfig(const std::string& flags_d,
if (flags_nthreads != 0)
config.compiledModelConfig.emplace(ov::inference_num_threads.name(), flags_nthreads);

config.compiledModelConfig.emplace(ov::hint::enable_cpu_pinning.name(), "NO");
config.compiledModelConfig.emplace(ov::hint::enable_cpu_pinning.name(), false);

ov::streams::Num nstreams =
deviceNstreams.count(device) > 0 ? ov::streams::Num(deviceNstreams[device]) : ov::streams::AUTO;
Expand Down

0 comments on commit 1659f37

Please sign in to comment.