hipStreamWaitEvent returns success if event created but not recorded

[ROCm/hip commit: 16708dd2e0]
Esse commit está contido em:
Ben Sander
2017-11-06 17:10:07 -06:00
commit 465b24123b
+2 -1
Ver Arquivo
@@ -98,7 +98,8 @@ hipError_t hipStreamWaitEvent(hipStream_t stream, hipEvent_t event, unsigned int
if (event == nullptr) {
e = hipErrorInvalidResourceHandle;
} else if (ecd._state != hipEventStatusUnitialized) {
} else if ((ecd._state != hipEventStatusUnitialized) &&
(ecd._state != hipEventStatusCreated)) {
if (HIP_SYNC_STREAM_WAIT || (HIP_SYNC_NULL_STREAM && (stream == 0))) {
// conservative wait on host for the specified event to complete: