SWDEV-380405 - Check for invalid stream for hipMemcpyPeerAsync.

Change-Id: I6dfccb4d20bb638bd596c071030c68889743d706
Esse commit está contido em:
Jaydeep Patel
2023-02-03 11:45:07 +00:00
commit de Jaydeepkumar Patel
commit e940beb459
+3 -1
Ver Arquivo
@@ -232,7 +232,9 @@ hipError_t hipMemcpyPeerAsync(void* dst, int dstDevice, const void* src, int src
srcDevice < 0 || dstDevice < 0) {
HIP_RETURN(hipErrorInvalidDevice);
}
if (!hip::isValid(stream)) {
return hipErrorContextIsDestroyed;
}
HIP_RETURN(hipMemcpyAsync(dst, src, sizeBytes, hipMemcpyDeviceToDevice, stream));
}