Limit multiple partition count to compute command lists

Related-To: NEO-6811

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz
2022-03-28 13:48:41 +00:00
committed by Compute-Runtime-Automation
parent 90c6d7d9c9
commit 9858438121
18 changed files with 52 additions and 57 deletions

View File

@@ -951,7 +951,7 @@ void CommandQueue::overrideEngine(aub_stream::EngineType engineType, EngineUsage
const HardwareInfo &hwInfo = getDevice().getHardwareInfo();
const HwHelper &hwHelper = HwHelper::get(hwInfo.platform.eRenderCoreFamily);
const EngineGroupType engineGroupType = hwHelper.getEngineGroupType(engineType, engineUsage, hwInfo);
const bool isEngineCopyOnly = hwHelper.isCopyOnlyEngineType(engineGroupType);
const bool isEngineCopyOnly = EngineHelper::isCopyOnlyEngineType(engineGroupType);
if (isEngineCopyOnly) {
std::fill(bcsEngines.begin(), bcsEngines.end(), nullptr);