[CPU] Fixed number of streams initialization for hint = throughput (#10728)

This commit is contained in:
Gorokhov Dmitriy
2022-03-02 15:44:34 +03:00
committed by GitHub
parent cd52cc6767
commit 40fc5334d8

View File

@@ -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);
}
}