SWDEV-223262

hipMemcpyWithStream is supposed to be synchronous.

Change-Id: Ie44e37ecc9246e26a6b315c01e88a279f9e42fd7


[ROCm/clr commit: 13bf30569e]
This commit is contained in:
Christophe Paquot
2020-02-19 14:08:12 -08:00
parent 1f32dbad00
commit fbef5e7d2a
+1 -1
View File
@@ -254,7 +254,7 @@ hipError_t hipMemcpyWithStream(void* dst, const void* src, size_t sizeBytes,
amd::HostQueue* queue = hip::getQueue(stream);
HIP_RETURN(ihipMemcpy(dst, src, sizeBytes, kind, *queue, true));
HIP_RETURN(ihipMemcpy(dst, src, sizeBytes, kind, *queue, false));
}
hipError_t hipMemPtrGetInfo(void *ptr, size_t *size) {