|
set(HIP_HCC_LIB "hip_hcc") |
|
if(NOT EXISTS "${ROCR_LIB_DIR}/lib${HIP_HCC_LIB}.so") |
|
message("ERROR: ROC Runtime libraries can't be found under specified path. Please set ROCR_LIB_DIR path. Current value is : " ${ROCR_LIB_DIR}) |
|
RETURN() |
|
endif() |
The project, e.g. babel.so component, tries to find libhip_hcc.so, but it does not exist on my machine which HIP runtime packages are installed. I googled and found e.g. ROCm/ROCm#1163 (comment), which suggests to create a symlink to libamdhip64.so.
ROCmValidationSuite/babel.so/CMakeLists.txt
Line 107 in ca71668
ROCmValidationSuite/babel.so/CMakeLists.txt
Lines 137 to 140 in ca71668
The project, e.g. babel.so component, tries to find libhip_hcc.so, but it does not exist on my machine which HIP runtime packages are installed. I googled and found e.g. ROCm/ROCm#1163 (comment), which suggests to create a symlink to libamdhip64.so.