From 9de024b1095c269cac792e5c356733c422e655ba Mon Sep 17 00:00:00 2001 From: Tao Sang Date: Wed, 28 Jul 2021 21:01:03 -0400 Subject: [PATCH] SWDEV-294591 - Fix hipEventIpc failure on NV Remove unnecessary codes Change-Id: I4248b2cebd3dd156f9d5d427e1897da22fb964ec [ROCm/hip commit: ec7e25b7e0f2662d0d13cf801bea6ac679cc84d9] --- .../hip/tests/src/runtimeApi/event/hipEventIpc.cpp | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/projects/hip/tests/src/runtimeApi/event/hipEventIpc.cpp b/projects/hip/tests/src/runtimeApi/event/hipEventIpc.cpp index f78ae5eb05..b2b8f2f4d0 100644 --- a/projects/hip/tests/src/runtimeApi/event/hipEventIpc.cpp +++ b/projects/hip/tests/src/runtimeApi/event/hipEventIpc.cpp @@ -91,14 +91,9 @@ int main(int argc, char* argv[]) { HIPCHECK(hipIpcGetEventHandle(&ipc_handle, start)); hipEvent_t ipc_event; - auto ret = hipIpcOpenEventHandle(&ipc_event, ipc_handle); - - if (ret == hipErrorInvalidContext) { - // tests/src/ipc/hipMultiProcIpcEvent.cpp is the right sample in different process. - printf("hipIpcOpenEventHandle() should be called in a different process\n"); - } else if (ret == hipSuccess) { - // To be removed - } + // hipIpcOpenEventHandle() should be called in a different process + // tests/src/ipc/hipMultiProcIpcEvent.cpp is the right sample in different process + HIPCHECK_API(hipIpcOpenEventHandle(&ipc_event, ipc_handle), hipErrorInvalidContext); HIPCHECK(hipEventDestroy(start)); HIPCHECK(hipEventDestroy(stop));