Fix signal resource issue.

Remove memory leak with new hc::completion_future.
Implement HIP_LAUNCH_BLOCKING with queue-level wait.

Change-Id: I45975f81c4d239fdeed7776970988d28449865dc


[ROCm/hip commit: 225e37fdc9]
Цей коміт міститься в:
Ben Sander
2016-09-26 16:32:35 -05:00
джерело 00f8a4f5a7
коміт 0dadf681db
3 змінених файлів з 12 додано та 10 видалено
+3 -2
Переглянути файл
@@ -772,7 +772,7 @@ hipError_t hipMemsetAsync(void* dst, int value, size_t sizeBytes, hipStream_t s
}
}
stream->lockclose_postKernelCommand(cf);
stream->lockclose_postKernelCommand(&crit->_av);
if (HIP_LAUNCH_BLOCKING) {
@@ -822,9 +822,10 @@ hipError_t hipMemset(void* dst, int value, size_t sizeBytes )
e = hipErrorInvalidValue;
}
}
// TODO - is hipMemset supposed to be async?
cf.wait();
stream->lockclose_postKernelCommand(cf);
stream->lockclose_postKernelCommand(&crit->_av);
if (HIP_LAUNCH_BLOCKING) {