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

cd ${PBS_O_WORKDIR}

module load scientific/phits/3.31-gnu

mpiexec phits_LinGfort_MPI

...

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

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

cd ${PBS_O_WORKDIR}

module load scientific/phits/3.31-intel

mpirun -np $(cat ${PBS_NODEFILE} | wc -l) phits_LinIfort_MPI

...