Versions Compared

Key

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

...

Code Block
languagebash
titlePBS skripta
linenumberstrue
#!/bin/bash

#PBS -q cpu
#PBS -l select=8
#PBS -N phits-gnu
#PBS -j oe

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

cd ${PBS_O_WORKDIR}

module load scientific/phits/3.31-gnu

mpirunmpiexec -npn ${MPI_NUM_PROCESSES} phits_LinGfort_MPI

...