SWDEV-440545 - [hiprtc] hiprtcLinkAddData with HIPRTC_JIT_INPUT_LLVM_BITCODE takes human-readable LLVM IR too but this is not documented

Fix HIPRTC documentation

Use HIPRTC consistently in documentation.

Fix doxygen comments about HIPRTC_JIT_INPUT_LLVM_BITCODE

Fixes: SWDEV-440545
Change-Id: I0a1a90ea88f1adf0653fffeed88e3971fc913dbb


[ROCm/hip commit: 54760221b3]
This commit is contained in:
Yaxun (Sam) Liu
2024-02-05 10:25:24 -05:00
committed by Yaxun Liu
parent 5bab1b0e30
commit e1a01f7693
3 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ typedef enum hiprtcJITInputType {
HIPRTC_JIT_INPUT_LIBRARY, ///< Input library
HIPRTC_JIT_INPUT_NVVM, ///< Input NVVM
HIPRTC_JIT_NUM_LEGACY_INPUT_TYPES, ///< Number of legacy input type
HIPRTC_JIT_INPUT_LLVM_BITCODE = 100, ///< LLVM bitcode
HIPRTC_JIT_INPUT_LLVM_BITCODE = 100, ///< LLVM bitcode or IR assembly
HIPRTC_JIT_INPUT_LLVM_BUNDLED_BITCODE = 101, ///< LLVM bundled bitcode
HIPRTC_JIT_INPUT_LLVM_ARCHIVES_OF_BUNDLED_BITCODE = 102, ///< LLVM archives of boundled bitcode
HIPRTC_JIT_NUM_INPUT_TYPES = (HIPRTC_JIT_NUM_LEGACY_INPUT_TYPES + 3)