Skip to content

Commit

Permalink
[CPU] Fixed number of streams initialization for hint = throughput (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-gorokhov committed Mar 2, 2022
1 parent cd52cc6 commit 40fc533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ void Engine::ApplyPerformanceHints(std::map<std::string, std::string> &config, c
engConfig.perfHintsConfig.ovPerfHintNumRequests);
}
config[CONFIG_KEY(CPU_THROUGHPUT_STREAMS)] = std::to_string(num_streams);
config[ov::num_streams.name()] = ov::util::to_string(ov::streams::NUMA);
config[ov::num_streams.name()] = ov::util::to_string(num_streams);
}
}

Expand Down

0 comments on commit 40fc533

Please sign in to comment.