SWDEV-541799 - Return hipSuccess from hipFreeAsync if ptr to free is … (#683)

SWDEV-541799 - Return hipSuccess from hipFreeAsync if ptr to free is nullptr to match with hipFree.
This commit is contained in:
Patel, Jaydeepkumar
2025-08-01 14:41:40 +05:30
committed by GitHub
parent 76d2c4135e
commit c329b548eb
+1 -1
View File
@@ -162,7 +162,7 @@ hipError_t hipFreeAsync(void* dev_ptr, hipStream_t stream) {
}
if (dev_ptr == nullptr) {
HIP_RETURN(hipErrorInvalidValue);
HIP_RETURN(hipSuccess);
}
STREAM_CAPTURE(hipFreeAsync, stream, dev_ptr);