From 9d84e31d23a0756b3881160e2a5d20f60ae12f9e Mon Sep 17 00:00:00 2001 From: vstojilj Date: Thu, 22 Jan 2026 17:08:43 +0100 Subject: [PATCH] Fix invalid use of hipEventElapsedTime (#2698) --- .../hip-tests/catch/unit/device/hipGetProcAddressIpcApis.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/projects/hip-tests/catch/unit/device/hipGetProcAddressIpcApis.cc b/projects/hip-tests/catch/unit/device/hipGetProcAddressIpcApis.cc index 927cf5ff8d..cf016ea3f0 100644 --- a/projects/hip-tests/catch/unit/device/hipGetProcAddressIpcApis.cc +++ b/projects/hip-tests/catch/unit/device/hipGetProcAddressIpcApis.cc @@ -221,10 +221,6 @@ TEST_CASE("Unit_hipGetProcAddress_IPC_Event") { REQUIRE(validateHostArray(hostMem, N, 11) == true); - float time = 0.0f; - HIP_CHECK(hipEventElapsedTime(&time, start, stop)); - REQUIRE(time > 0.0f); - HIP_CHECK(hipEventDestroy(stop)); HIP_CHECK(hipStreamDestroy(stream)); free(hostMem);