Neko on LUMI-G #665
njansson
started this conversation in
Show and tell
Replies: 1 comment
-
After the latest Lumi summer updates the following works:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
To compile Neko on LUMI-G
(For a general guide on how to build Neko for AMD GPUs please see: #585)
ml CrayEnv
)ml craype-accel-amd-gfx90a
)ml rocm
)./configure FC=ftn CC=cc --with-hip HIP_HIPCC_FLAGS="-O3 --offload-arch=gfx90a" --enable-device-mpi
./configure FC=ftn CC=cc --with-hip HIPCC=CC HIP_HIPCC_FLAGS="-O3 -x hip --offload-arch=gfx90a" --enable-device-mpi
make && make install
MPICH_GPU_SUPPORT_ENABLED=1
in the shell/jobscript before runningneko
(otherwise device aware MPI will cause a segmentation fault), if everything went well backend type should be reported as HIP (but currently not the device type...).Beta Was this translation helpful? Give feedback.
All reactions