Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
themeConfluence
titlerun.sge
linenumberstrue
#!/bin/bash

#$ -N lammps
#$ -cwd
#$ -pe *mpi 8

export OMP_NUM_THREADS=8${NSLOTS}

module load lammps/23Jun2022

mpirun -np ${NSLOTS} lmp -sf intel -in in.chain -pk intel 0 mode double

...