SWDEV-379388 - remove check for all streams done
- cuda shows a different behaviour and different error need more investigation Signed-off-by: sdashmiz <shadi.dashmiz@amd.com> Change-Id: I68771102ba4dff6157bca34a4135cb245f023d08
Šī revīzija ir iekļauta:
revīziju iesūtīja
Maneesh Gupta
vecāks
314bdba632
revīzija
ea5838320e
@@ -410,9 +410,6 @@ hipError_t hipEventSynchronize(hipEvent_t event) {
|
||||
HIP_RETURN(hipErrorInvalidHandle);
|
||||
}
|
||||
|
||||
if (hip::Stream::StreamCaptureOngoing() == true) {
|
||||
HIP_RETURN(hipErrorStreamCaptureUnsupported);
|
||||
}
|
||||
hip::Event* e = reinterpret_cast<hip::Event*>(event);
|
||||
HIP_RETURN(e->synchronize());
|
||||
}
|
||||
|
||||
@@ -502,12 +502,6 @@ hipError_t hipStreamWaitEvent_common(hipStream_t stream, hipEvent_t event, unsig
|
||||
return hipErrorContextIsDestroyed;
|
||||
}
|
||||
|
||||
if (stream != nullptr) {
|
||||
// If still capturing return error
|
||||
if (hip::Stream::StreamCaptureOngoing() == true) {
|
||||
HIP_RETURN(hipErrorStreamCaptureIsolation);
|
||||
}
|
||||
}
|
||||
hip::Event* e = reinterpret_cast<hip::Event*>(event);
|
||||
return e->streamWait(stream, flags);
|
||||
}
|
||||
|
||||
Atsaukties uz šo jaunā problēmā
Block a user