SWDEV-425568 - Do cpu wait for device sync.

Change-Id: Ia05e09bd10ab623b36c74037e9988e132120dd9f
This commit is contained in:
Jaydeep Patel
2023-10-18 14:55:03 +00:00
committed by Jaydeepkumar Patel
parent f316a30e5d
commit ee00ebc42f
+2 -2
View File
@@ -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);
}