diff --git a/docs/index.md b/docs/index.md index 8f8c82f78c..571f9c08ad 100644 --- a/docs/index.md +++ b/docs/index.md @@ -56,6 +56,9 @@ These documents have not yet been ported over to the Diátaxis framework. * [HIP Porting Guide](./old/user_guide/hip_porting_guide) * [HIP Porting Driver API Guide](./old/user_guide/hip_porting_driver_api) +* [HIP RTC Programming Guide](./old/user_guide/hip_rtc.md) +* [HIP Programming Manual](./old/user_guide/programming_manual.md) +* [Frequently asked questions](./old/user_guide/faq.md) ::: diff --git a/docs/old/reference/kernel_language.rst b/docs/old/reference/kernel_language.rst index 469b7d6c97..ba667ab458 100644 --- a/docs/old/reference/kernel_language.rst +++ b/docs/old/reference/kernel_language.rst @@ -98,7 +98,7 @@ When using ``hipLaunchKernelGGL``, your first five parameters must be: * **size_t dynamicShared**: The amount of additional shared memory that you want to allocate when launching the kernel (see :ref:`shared-variable-type`). * **hipStream_t**: The stream where you want to run the kernel. A value of ``0`` corresponds to the - NULL stream (see :ref:`synchronization-functions`). + NULL stream (see :ref:`synchronization functions`). You can include your kernel arguments after these parameters. diff --git a/docs/old/user_guide/faq.md b/docs/old/user_guide/faq.md index 0c5dd879e2..7b4d741250 100644 --- a/docs/old/user_guide/faq.md +++ b/docs/old/user_guide/faq.md @@ -33,7 +33,7 @@ See the [API Support Table](https://github.com/ROCm/HIPIFY/blob/amd-staging/docs - Virtual functions, indirect functions and try/catch (CUDA 4.0) - `__prof_trigger` - PTX assembly (CUDA 4.0). HIP-Clang supports inline GCN assembly. -- Several kernel features are under development. See the {doc}`/reference/kernel_language` for more information. +- Several kernel features are under development. See the {doc}`/old/reference/kernel_language` for more information. ## Is HIP a drop-in replacement for CUDA? @@ -243,7 +243,7 @@ hipCUResultTohipError If platform portability is important, use #ifdef __HIP_PLATFORM_NVIDIA__ to guard the CUDA-specific code. ## How do I trace HIP application flow? -See {doc}`/developer_guide/logging` for more information. +See {doc}`/how-to/logging` for more information. ## What is maximum limit of kernel launching parameter? Product of block.x, block.y, and block.z should be less than 1024.