SWDEV-223262

hipMemcpyWithStream is supposed to be synchronous.

Change-Id: Ie44e37ecc9246e26a6b315c01e88a279f9e42fd7


[ROCm/hip commit: a9a6cae956]
This commit is contained in:
Christophe Paquot
2020-02-19 14:08:12 -08:00
parent ceb0269d44
commit c8b083f1c6
+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) {