GENESIS 2.1.4 with GPU support
Webpage
https://www.r-ccs.riken.jp/labs/cbrt/
Version
2.1.4
Build Environment
- gcc 13.1.1 (gcc-toolset/13)
- MKL 2025.0.0.1 (oneAPI 2025.0.1)
- Intel MPI 2021.14.1 (oneAPI 2025.0.1)
- CUDA 12.6 Update 2
Files Required
- genesis-2.1.4.tar.bz2
- tests-2.1.4.tar.bz2
Build Procedure
#!/bin/sh
VERSION=2.1.4
BASEDIR=/home/users/${USER}/Software/GENESIS/${VERSION}
SRC_TARBALL=${BASEDIR}/genesis-${VERSION}.tar.bz2
TESTS_TARBALL=${BASEDIR}/tests-${VERSION}.tar.bz2INSTALLDIR=/apl/genesis/2.1.4-CUDA
WORKDIR=/gwork/users/${USER}
BUILDDIR=${WORKDIR}/genesis-${VERSION}
TESTSDIR=${WORKDIR}/tests-${VERSION}PARALLEL_TESTS=8
# ----------------------------------------------------------------------------
umask 0022
module -s purge
module -s load gcc-toolset/13
module -s load mkl/2025.0.0.1
module -s load intelmpi/2021.14.1
module -s load cuda/12.6u2export LANG=C
export LC_ALL=C
export OMP_NUM_THREADS=1
ulimit -s unlimitedcd ${WORKDIR}
if [ -d genesis-${VERSION} ]; then
mv genesis-${VERSION} genesis-erase
rm -rf genesis-erase &
fi
if [ -d tests-${VERSION} ]; then
mv tests-${VERSION} tests-erase
rm -rf tests-erase &
fitar jxf ${SRC_TARBALL}
tar jxf ${TESTS_TARBALL}cd ${BUILDDIR}
FC=mpif90 CC=mpicc \
LAPACK_LIBS=" -L${MKLROOT}/lib/intel64 -Wl,--no-as-needed -lmkl_gf_lp64 -lmkl_gnu_thread -lmkl_core -lgomp -lpthread -lm -ldl" \
./configure --prefix=${INSTALLDIR} \
--enable-gpu \
--enable-single \
--with-cuda=/apl/cuda/12.6u2
make && make installSPDYN=${INSTALLDIR}/bin/spdyn
cd ${TESTSDIR}/regression_test
for f in test.py test_remd.py test_fep.py test_rpath.py \
test_gamd.py; do
sed -i -e "s/env python/env python3/" $f
done# spdyn tests
./test.py "mpirun -np ${PARALLEL_TESTS} $SPDYN"
./test_remd.py "mpirun -np ${PARALLEL_TESTS} $SPDYN"
./test_rpath.py "mpirun -np ${PARALLEL_TESTS} $SPDYN"
./test_gamd.py "mpirun -np ${PARALLEL_TESTS} $SPDYN"
./test_fep.py "mpirun -np ${PARALLEL_TESTS} $SPDYN"
Notes
- The script above was run on ccgpu. Some of test jobs were also run on computation node equipped with A100.