SWDEV-286150 - Switch PAL version to 711
Change-Id: Iaf07946d6327f92ed734223a6b38c433ce368c4a
[ROCm/clr commit: 43ea9a8e31]
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# PAL interface versions
|
||||
PAL_MAJOR_VERSION = 678
|
||||
PAL_MAJOR_VERSION = 711
|
||||
GPUOPEN_MAJOR_VERSION = 42
|
||||
|
||||
@@ -808,10 +808,11 @@ RgpSqttMarkerEvent RgpCaptureMgr::BuildEventMarker(const VirtualGPU* gpu,
|
||||
void RgpCaptureMgr::WriteMarker(const VirtualGPU* gpu, const void* data, size_t data_size) const {
|
||||
assert((data_size % sizeof(uint32_t)) == 0);
|
||||
assert((data_size / sizeof(uint32_t)) > 0);
|
||||
Pal::RgpMarkerSubQueueFlags subQueueFlags = {};
|
||||
subQueueFlags.includeMainSubQueue = 1;
|
||||
|
||||
gpu->queue(MainEngine)
|
||||
.iCmd()
|
||||
->CmdInsertRgpTraceMarker(static_cast<uint32_t>(data_size / sizeof(uint32_t)), data);
|
||||
gpu->queue(MainEngine).iCmd()->CmdInsertRgpTraceMarker(
|
||||
subQueueFlags, static_cast<uint32_t>(data_size / sizeof(uint32_t)), data);
|
||||
}
|
||||
|
||||
// ================================================================================================
|
||||
|
||||
Reference in New Issue
Block a user