SWDEV-452786 - Fixing missing/dead links
Change-Id: I8a1a0cedaf01fb516419e7d4bacbb1c1421a648a
This commit is contained in:
@@ -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)
|
||||
|
||||
:::
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user