From c60f904bff5dea4c07189f17cf154390a3252e04 Mon Sep 17 00:00:00 2001 From: randyh62 <42045079+randyh62@users.noreply.github.com> Date: Tue, 4 Jun 2024 11:46:30 -0700 Subject: [PATCH] Update hip_porting_driver_api.md Correct broken reference --- docs/how-to/hip_porting_driver_api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-to/hip_porting_driver_api.md b/docs/how-to/hip_porting_driver_api.md index d42353b631..91512ed4e7 100644 --- a/docs/how-to/hip_porting_driver_api.md +++ b/docs/how-to/hip_porting_driver_api.md @@ -43,7 +43,7 @@ The CUDA Runtime API unifies the Context API with the Device API. This simplifie HIP provides a context API to facilitate easy porting from existing Driver codes. In HIP, the `Ctx` functions largely provide an alternate syntax for changing the active device. -Most new applications will prefer to use `hipSetDevice` or the stream APIs , therefore HIP has marked `hipCtx` APIs as **deprecated**. Support for these APIs may not be available in future releases. For more details on deprecated APIs please refer [HIP deprecated APIs](https://github.com/ROCm/HIP/blob/develop/docs/reference/deprecated_api_list.md). +Most new applications will prefer to use `hipSetDevice` or the stream APIs , therefore HIP has marked `hipCtx` APIs as **deprecated**. Support for these APIs may not be available in future releases. For more details on deprecated APIs please refer [HIP deprecated APIs](https://rocm.docs.amd.com/projects/HIP/en/latest/reference/deprecated_api_list.html). ## HIP Module and `Ctx` APIs