mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
fix: incorrect check in parseAffinityMask function
Resolves: GSD-8333 Signed-off-by: Jaroslaw Warchulski <jaroslaw.warchulski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
a2742492ab
commit
7c5640669c
@@ -207,7 +207,7 @@ void ExecutionEnvironment::parseAffinityMask() {
|
||||
|
||||
// tiles as devices
|
||||
if (exposeSubDevicesAsApiDevices) {
|
||||
if (rootDeviceIndex > numRootDevices) {
|
||||
if (rootDeviceIndex >= numRootDevices) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user