diff --git a/projects/clr/rocclr/device/pal/paldevice.cpp b/projects/clr/rocclr/device/pal/paldevice.cpp index 343ff2395b..7bbc7ed300 100644 --- a/projects/clr/rocclr/device/pal/paldevice.cpp +++ b/projects/clr/rocclr/device/pal/paldevice.cpp @@ -921,7 +921,9 @@ bool Device::create(Pal::IDevice* device) { exclusiveComputeEnginesId_.insert({ExclusiveQueueType::Medium, i}); } - if (computeCaps.queuePrioritySupport & Pal::SupportQueuePriorityNormal) { + if ((computeCaps.queuePrioritySupport & Pal::SupportQueuePriorityNormal) || + // In Linux all queues have 0 for priority + (computeCaps.queuePrioritySupport == 0)) { computeEnginesId_.push_back(i); } }