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

Change-Id: Id2f296e0cbf5f90a8163441f4c69c72615dd90a0
This commit is contained in:
Sourabh Betigeri
2022-03-17 17:39:03 -07:00
committed by Sourabh Betigeri
parent aacfc3ed7d
commit 02838eb236
+1 -1
View File
@@ -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) {