You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AMD has begun the process of moving header files from /opt/rocm/${ROCM_PACKAGE}/include to /opt/rocm/include with rocm/5.4.0. Using the older include locations will emit an error starting with rocm/6.0.0.
Currently the rocm/5.5.0 modules on tioga on not setting ${HIP_PATH}, which causes build errors when running
cd SW4CK/src
module load rocm/5.5.0
make -f Makefile.hip
in the form
ld.lld: error: /lib/libm.so is incompatible with elf64-x86-64
ld.lld: error: /lib/libdl.so is incompatible with elf64-x86-64
ld.lld: error: /lib/libm.so is incompatible with elf64-x86-64
...
due to a damaged -L path in this file. A temporary workaround is just to add export HIP_PATH=${ROCM_PATH} by the compilation.
The text was updated successfully, but these errors were encountered:
AMD has begun the process of moving header files from
/opt/rocm/${ROCM_PACKAGE}/include
to/opt/rocm/include
with rocm/5.4.0. Using the older include locations will emit an error starting with rocm/6.0.0.Currently the rocm/5.5.0 modules on tioga on not setting ${HIP_PATH}, which causes build errors when running
in the form
due to a damaged
-L
path in this file. A temporary workaround is just to addexport HIP_PATH=${ROCM_PATH}
by the compilation.The text was updated successfully, but these errors were encountered: