14 lines
233 B
Bash
14 lines
233 B
Bash
#!/bin/bash
|
|
|
|
## parameters
|
|
#PBS -N uebung_04__exercise_03
|
|
#PBS -q entry_teachingq
|
|
#PBS -l select=1:ncpus=8:mpiprocs=8
|
|
#PBS -l walltime=00:05:00
|
|
|
|
## environment
|
|
cd ~/pwr/uebung_04/exercise_03
|
|
|
|
## execute
|
|
mpiexec -n 8 exercise_03.out
|