This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tcr_sri001 [2020/04/26 20:59] – tmatejuk | tcr_sri001 [2023/08/01 01:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 43: | Line 43: | ||
==== sbatch example ==== | ==== sbatch example ==== | ||
- | FIXME | + | Use GROMACS 2020.1. This description assumes that path to binaries is ''/ |
+ | #!/bin/bash -l | ||
+ | #SBATCH --job-name=" | ||
+ | #SBATCH --nodes=2 | ||
+ | #SBATCH --ntasks=32 | ||
+ | #SBATCH --mem-per-cpu=2G | ||
+ | #SBATCH --partition=short | ||
+ | #SBATCH --constraint=intel | ||
+ | #SBATCH --exclusive | ||
+ | #SBATCH --time=2: | ||
+ | |||
+ | module load compilers/ | ||
+ | module load mpi/ | ||
+ | |||
+ | source / | ||
+ | |||
+ | WORKDIR="/ | ||
+ | mkdir -p ${WORKDIR} | ||
+ | #copy input files and pseudo files to ${WORKDIR} | ||
+ | cp / | ||
+ | cd ${WORKDIR} | ||
+ | tar xzf GROMACS_TestCaseA.tar.gz | ||
+ | |||
+ | T1=`date +%s` | ||
+ | |||
+ | mpirun gmx_mpi mdrun -s ion_channel.tpr -maxh 0.50 -resethway -noconfout -nsteps 10000 -g logile | ||
+ | |||
+ | T2=`date +%s` | ||
+ | echo -e "stop ${T2}\t start ${T1}\t ${SLURM_NNODES}" | ||
==== performance tests ==== | ==== performance tests ==== | ||
FIXME | FIXME |