fix: do not expose render engine by default on xe2

Related-To: HSD-18040606360
Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
This commit is contained in:
Maciej Plewka
2024-11-22 10:53:00 +00:00
committed by Compute-Runtime-Automation
parent 47383d752f
commit 0454a9480a
2 changed files with 102 additions and 1 deletions

View File

@@ -58,7 +58,10 @@ const EngineInstancesContainer GfxCoreHelperHw<Family>::getGpgpuEngineInstances(
}
}
engines.push_back({aub_stream::ENGINE_CCCS, EngineUsage::regular});
if ((debugManager.flags.NodeOrdinal.get() == static_cast<int32_t>(aub_stream::EngineType::ENGINE_CCCS)) ||
hwInfo.featureTable.flags.ftrRcsNode) {
engines.push_back({aub_stream::ENGINE_CCCS, EngineUsage::regular});
}
engines.push_back({defaultEngine, EngineUsage::lowPriority});
engines.push_back({defaultEngine, EngineUsage::internal});