File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ module load python
1313cd $TUT_DIR
1414
1515echo " ###############################"
16- udocker run -v=$TUT_DIR /gromacs:/home/user -w=/home/user grom_gpu /home/user/compile.sh
16+ udocker run -v=$TUT_DIR /gromacs-gpu :/home/user -w=/home/user grom_gpu /home/user/compile.sh
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ PATH=$PATH :/usr/local/gromacs/bin
3+ LD_LIBRARY_PATH=/usr/local/gromacs/lib
4+ gromacs_ver=2025.4
5+
6+ cd /tmp
7+ wget --no-check-certificate https://ftp.gromacs.org/gromacs/gromacs-${gromacs_ver} .tar.gz
8+ tar zxvf gromacs-${gromacs_ver} .tar.gz
9+ cd gromacs-${gromacs_ver}
10+ mkdir -p /tmp/gromacs-${gromacs_ver} /build
11+ cd /tmp/gromacs-${gromacs_ver} /build
12+ cmake .. -DGMX_BUILD_OWN_FFTW=ON -DGMX_OPENMP=ON -DGMX_GPU=CUDA
13+ make \
14+ make install \
15+ rm -rf /tmp/gromacs-${gromacs_ver} *
You can’t perform that action at this time.
0 commit comments