SWDEV-237658 - Do not attach events to user invisible Marker.
Change-Id: I3a74fd2614d6e2e1d51543471bbd5ae51a713a47
[ROCm/clr commit: ea15c75c55]
Этот коммит содержится в:
коммит произвёл
Karthik Jayaprakash
родитель
f959aadea0
Коммит
cddec46bb7
Обычный файл → Исполняемый файл
+7
-1
@@ -143,7 +143,13 @@ void Event::addMarker(amd::HostQueue* queue, amd::Command* command, bool record)
|
||||
if (queue->properties().test(CL_QUEUE_PROFILING_ENABLE)) {
|
||||
if (command == nullptr) {
|
||||
command = queue->getLastQueuedCommand(true);
|
||||
if (command == nullptr) {
|
||||
if ((command == nullptr) || (command->type() == 0)) {
|
||||
// if lastEnqueuedCommand is user invisible command(command->type() == 0),
|
||||
// which is only used for sync, create a new amd:Marker
|
||||
// and release() lastEnqueuedCommand
|
||||
if (command != nullptr) {
|
||||
command->release();
|
||||
}
|
||||
command = new amd::Marker(*queue, kMarkerDisableFlush);
|
||||
command->enqueue();
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user