From 44dc6b7fe2bd6c58b9bcec625615e393b0a2a066 Mon Sep 17 00:00:00 2001
From: foreman
Date: Mon, 16 Jul 2018 12:05:32 -0400
Subject: [PATCH] P4 to Git Change 1580823 by gandryey@gera-w8 on 2018/07/16
11:48:51
SWDEV-154474 - [Task]: TAN Dual Realtime Queue Enhancement For Radeon Rays
- Use the new enum for RT1
Affected files ...
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpuvirtual.cpp#423 edit
[ROCm/clr commit: 77bd31536a9e7bee7abf47a8d46c4a0d7e647e3d]
---
projects/clr/rocclr/runtime/device/gpu/gpuvirtual.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/projects/clr/rocclr/runtime/device/gpu/gpuvirtual.cpp b/projects/clr/rocclr/runtime/device/gpu/gpuvirtual.cpp
index 5306663a2b..0ca26abbce 100644
--- a/projects/clr/rocclr/runtime/device/gpu/gpuvirtual.cpp
+++ b/projects/clr/rocclr/runtime/device/gpu/gpuvirtual.cpp
@@ -427,7 +427,7 @@ bool VirtualGPU::create(bool profiling, uint rtCUs, uint deviceQueueSize,
engineMask = dev().engines().getMask((gslEngineID)(GSL_ENGINEID_COMPUTE_MEDIUM_PRIORITY));
} else {
if (priority == amd::CommandQueue::Priority::Medium) {
- engineMask = dev().engines().getMask((gslEngineID)(GSL_ENGINEID_COMPUTE_RT));
+ engineMask = dev().engines().getMask((gslEngineID)(GSL_ENGINEID_COMPUTE_RT1));
} else {
engineMask = dev().engines().getMask((gslEngineID)(GSL_ENGINEID_COMPUTE_RT));
}