diff --git a/rocclr/runtime/device/gpu/gpudevice.cpp b/rocclr/runtime/device/gpu/gpudevice.cpp index 87cd838486..afcfae562b 100644 --- a/rocclr/runtime/device/gpu/gpudevice.cpp +++ b/rocclr/runtime/device/gpu/gpudevice.cpp @@ -754,7 +754,7 @@ Device::create(CALuint ordinal, CALuint numOfDevices) // Open GSL device bool reportOCL12Device = (OPENCL_VERSION < 200); - reportOCL12Device = ((numOfDevices < 2) || (ordinal == 0)) ? (OPENCL_VERSION < 200) : true; + reportOCL12Device = (numOfDevices < 2) ? (OPENCL_VERSION < 200) : true; if (!open(ordinal, appProfile_.enableHighPerformanceState(), appProfile_.reportAsOCL12Device() || reportOCL12Device)) { return false;