SWDEV-295251 - Avoid marker if queue is empty for DD to fix MT issue
Change-Id: I80be39ace9d93347f81ef8acd7858d43bc4a3f1e
[ROCm/clr commit: 682151f39d]
Этот коммит содержится в:
коммит произвёл
Maneesh Gupta
родитель
1560d8d6fe
Коммит
fce3b20213
@@ -108,7 +108,7 @@ void HostQueue::finish() {
|
||||
if (IS_HIP) {
|
||||
command = getLastQueuedCommand(true);
|
||||
// Check if the queue has nothing to process and return
|
||||
if (command == nullptr) {
|
||||
if (AMD_DIRECT_DISPATCH && command == nullptr) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user