SWDEV-326800 - hipStreamWaitEvent shouldnt accept flags other than 0

Change-Id: Ic9e2e8e7ac5d34d4286356534810c8e7aa0ee5ad
This commit is contained in:
Satyanvesh Dittakavi
2022-03-17 09:43:49 +00:00
orang tua 8e81b8495c
melakukan 796b8c2b62
+4
Melihat File
@@ -457,6 +457,10 @@ hipError_t hipStreamWaitEvent(hipStream_t stream, hipEvent_t event, unsigned int
HIP_RETURN(hipErrorInvalidHandle);
}
if (flags != 0) {
HIP_RETURN(hipErrorInvalidValue);
}
if (!hip::isValid(stream)) {
HIP_RETURN(hipErrorContextIsDestroyed);
}