From b67fd2e3f85e2fbe38d6ebbb1d1c3a5488122818 Mon Sep 17 00:00:00 2001
From: foreman
Date: Mon, 9 Jul 2018 13:22:19 -0400
Subject: [PATCH] P4 to Git Change 1577773 by gandryey@gera-w8 on 2018/07/09
13:10:36
SWDEV-155438 - Produce RGP Queue Timings chunk for OpenCL RGP files
- Enable queue timing
Affected files ...
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palgpuopen.cpp#4 edit
[ROCm/clr commit: 3fb9ab0d9065096e05f460caf5f9483c32c4d994]
---
projects/clr/rocclr/runtime/device/pal/palgpuopen.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/projects/clr/rocclr/runtime/device/pal/palgpuopen.cpp b/projects/clr/rocclr/runtime/device/pal/palgpuopen.cpp
index 8614ccc90c..081f990dcb 100644
--- a/projects/clr/rocclr/runtime/device/pal/palgpuopen.cpp
+++ b/projects/clr/rocclr/runtime/device/pal/palgpuopen.cpp
@@ -401,7 +401,7 @@ Pal::Result RgpCaptureMgr::PrepareRGPTrace(VirtualGPU* gpu)
if (result == Pal::Result::Success) {
GpuUtil::GpaSessionBeginInfo info = {};
- info.flags.enableQueueTiming = false;// trace_.queueTimingEnabled;
+ info.flags.enableQueueTiming = true;// trace_.queueTimingEnabled;
result = trace_.gpa_session_->Begin(info);
}