SWDEV-320640 - Fix to return the right error code when the stream is not in capture mode

Change-Id: Id2f296e0cbf5f90a8163441f4c69c72615dd90a0


[ROCm/clr commit: 02838eb236]
Этот коммит содержится в:
Sourabh Betigeri
2022-03-17 17:39:03 -07:00
коммит произвёл Sourabh Betigeri
родитель 38a0792ebe
Коммит d29a3ae502
+1 -1
Просмотреть файл
@@ -1303,7 +1303,7 @@ hipError_t hipStreamUpdateCaptureDependencies(hipStream_t stream, hipGraphNode_t
HIP_RETURN(hipErrorInvalidValue);
}
hip::Stream* s = reinterpret_cast<hip::Stream*>(stream);
if (s->GetCaptureStatus() == hipStreamCaptureStatusActive) {
if (s->GetCaptureStatus() == hipStreamCaptureStatusNone) {
HIP_RETURN(hipErrorIllegalState);
}
if (numDependencies > 0 && dependencies == nullptr) {