SWDEV-425568 - Do cpu wait for device sync.

Change-Id: Ia05e09bd10ab623b36c74037e9988e132120dd9f


[ROCm/clr commit: ee00ebc42f]
Este commit está contenido en:
Jaydeep Patel
2023-10-18 14:55:03 +00:00
cometido por Jaydeepkumar Patel
padre 4c9f160818
commit 8229fce863
+2 -2
Ver fichero
@@ -579,8 +579,8 @@ hipError_t hipDeviceSetSharedMemConfig(hipSharedMemConfig config) {
hipError_t hipDeviceSynchronize() {
HIP_INIT_API(hipDeviceSynchronize);
constexpr bool kDontWaitForCpu = false;
hip::Stream::SyncAllStreams(hip::getCurrentDevice()->deviceId(), kDontWaitForCpu);
constexpr bool kDoWaitForCpu = true;
hip::Stream::SyncAllStreams(hip::getCurrentDevice()->deviceId(), kDoWaitForCpu);
HIP_RETURN(hipSuccess);
}