From 3c63ca66e4c90a478e34ffa9ade61388f7a6ffd6 Mon Sep 17 00:00:00 2001 From: Julia Jiang Date: Wed, 26 Jun 2024 15:30:19 -0400 Subject: [PATCH] SWDEV-337797 - correct doxygen for the API hipIpcOpenEventHandle Change-Id: I45158be773d9a3baf5128590e3df7218d4fbbd7f [ROCm/hip commit: fe808eb26f21eb662962b641b03d232621790a6c] --- projects/hip/include/hip/hip_runtime_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/hip/include/hip/hip_runtime_api.h b/projects/hip/include/hip/hip_runtime_api.h index 1ce46c6d57..6cccb8c63f 100644 --- a/projects/hip/include/hip/hip_runtime_api.h +++ b/projects/hip/include/hip/hip_runtime_api.h @@ -2215,7 +2215,7 @@ hipError_t hipIpcGetEventHandle(hipIpcEventHandle_t* handle, hipEvent_t event); /** * @brief Opens an interprocess event handles. * - * Opens an interprocess event handle exported from another process with cudaIpcGetEventHandle. The returned + * Opens an interprocess event handle exported from another process with hipIpcGetEventHandle. The returned * hipEvent_t behaves like a locally created event with the hipEventDisableTiming flag specified. This event * need be freed with hipEventDestroy. Operations on the imported event after the exported event has been freed * with hipEventDestroy will result in undefined behavior. If the function is called within the same process where