Skip to content

Commit 80f6881

Browse files
randyh62neon60
authored andcommitted
Update hip_porting_guide.rst
fix :cpp:type:`` errors
1 parent 30d45db commit 80f6881

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/how-to/hip_porting_guide.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -595,32 +595,32 @@ required to implement this interaction.
595595
* - HIP type
596596
- CU Driver type
597597
- CUDA Runtime type
598-
* - :cpp:type:``hipModule_t``
598+
* - :cpp:type:`hipModule_t`
599599
- ``CUmodule``
600600
-
601-
* - :cpp:type:``hipFunction_t``
601+
* - :cpp:type:`hipFunction_t`
602602
- ``CUfunction``
603603
-
604-
* - :cpp:type:``hipCtx_t``
604+
* - :cpp:type:`hipCtx_t`
605605
- ``CUcontext``
606606
-
607-
* - :cpp:type:``hipDevice_t``
607+
* - :cpp:type:`hipDevice_t`
608608
- ``CUdevice``
609609
-
610-
* - :cpp:type:``hipStream_t``
610+
* - :cpp:type:`hipStream_t`
611611
- ``CUstream``
612612
- ``cudaStream_t``
613-
* - :cpp:type:``hipEvent_t``
613+
* - :cpp:type:`hipEvent_t`
614614
- ``CUevent``
615615
- ``cudaEvent_t``
616-
* - :cpp:type:``hipArray_t``
616+
* - :cpp:type:`hipArray_t`
617617
- ``CUarray``
618618
- ``cudaArray``
619619

620620
Compilation options
621621
-------------------
622622

623-
The :cpp:type:``hipModule_t`` interface does not support the ``cuModuleLoadDataEx`` function,
623+
The :cpp:type:`hipModule_t` interface does not support the ``cuModuleLoadDataEx`` function,
624624
which is used to control PTX compilation options. HIP-Clang does not use PTX, so
625625
it does not support these compilation options. In fact, HIP-Clang code objects contain
626626
fully compiled code for a device-specific instruction set and don't require additional

0 commit comments

Comments
 (0)