From 222554fcb637108c1770ff4731b3c5ba2614662d Mon Sep 17 00:00:00 2001 From: Julia Jiang Date: Mon, 12 Jun 2023 15:58:39 -0400 Subject: [PATCH] SWDEV-398297 - correct dead link in rocm 5.6 Change-Id: I97dfb0fa3311891e84641ea5f4bda3911eaa4313 --- README.md | 2 +- docs/how_to_guides/install.md | 7 ++++--- docs/user_guide/programming_manual.md | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6de243d157..d5fb37e805 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ HIP releases are typically naming convention for each ROCM release to help diffe - [HIP Kernel Language](docs/reference/kernel_language.md) - [HIP Porting Guide](docs/user_guide/hip_porting_guide.md) - [HIP Porting Driver Guide](docs/user_guide/hip_porting_driver_api.md) -- [HIP Programming Guide](ddocs/user_guide/programming_manual.md) +- [HIP Programming Guide](docs/user_guide/programming_manual.md) - [HIP Logging ](docs/developer_guide/logging.md) - [Building HIP From Source](docs/developer_guide/build.md) - [HIP Debugging ](docs/how_to_guides/debugging.md) diff --git a/docs/how_to_guides/install.md b/docs/how_to_guides/install.md index b8b38a0199..4f57b18c03 100644 --- a/docs/how_to_guides/install.md +++ b/docs/how_to_guides/install.md @@ -40,14 +40,15 @@ apt-get install hip-runtime-nvidia hip-dev # Verify your installation -Run hipconfig (instructions below assume default installation path) : -```shell +Run hipconfig (instructions below assume default installation path): +``` /opt/rocm/bin/hipconfig --full ``` # How to build HIP from source Developers can build HIP from source on either AMD or NVIDIA platforms, see -detailed instructions at {doc}`/developer_guide/build` +detailed instructions at [building HIP from source](../developer_guide/build.md). + diff --git a/docs/user_guide/programming_manual.md b/docs/user_guide/programming_manual.md index 827a62af67..6c8c164ced 100644 --- a/docs/user_guide/programming_manual.md +++ b/docs/user_guide/programming_manual.md @@ -193,4 +193,4 @@ Here is an example to create and use static libraries: hipcc libHipDevice.a test.cpp -fgpu-rdc -o test.out ``` -For more information, please see samples/2_Cookbook/15_static_library/host_functions and samples/2_Cookbook/15_static_library/device_functions. +For more information, please see [HIP samples](https://github.com/ROCm-Developer-Tools/hip-tests/tree/rocm-5.5.x/samples/2_Cookbook/15_static_library/host_functions) and [samples](https://github.com/ROCm-Developer-Tools/hip-tests/tree/rocm-5.5.x/samples/2_Cookbook/15_static_library/device_functions).