Versions Compared

Key

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

...

Code Block
titletest_golem.pbs
#!/bin/bash

#PBS -N test-golem
#PBS -q cpu
#PBS -j oe
#PBS -l select=6
#PBS -l place=pack

module load scientific/golem/08052023 

MPI_NUM_PROCESSES=$(cat ${PBS_NODEFILE} | wc -l)
cd ${PBS_O_WORKDIR}

mpiexec -n $MPI_NUM_PROCESSES golem-opt -i ~/golem/Golem/test/tests/HM/HM_1D_bc_transient.i

...