-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmsub.sh
executable file
·21 lines (18 loc) · 906 Bytes
/
msub.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash -x
mkdir output
# clean up previous runs
rm output/*.txt
msub -l nodes=1:ppn=12 sinedensity.sh -o output/sinedensity.txt
msub -l nodes=1:ppn=16 shearwave.sh -o output/shearwave.txt
msub -l nodes=1:ppn=16 poiseuille.sh -o output/poiseuille.txt
msub -l nodes=1:ppn=16 -l walltime=1200 couette.sh -o output/couette.txt
msub -l nodes=1:ppn=16 oscillator.sh -o output/oscillator.txt
msub -l nodes=1:ppn=1 -l walltime=1200 timer.sh -o output/timer1.txt
msub -l nodes=1:ppn=2 -l walltime=900 timer.sh -o output/timer2.txt
msub -l nodes=1:ppn=4 timer.sh -o output/timer4.txt
msub -l nodes=1:ppn=8 timer.sh -o output/timer8.txt
msub -l nodes=1:ppn=16 timer.sh -o output/timer16.txt
msub -l nodes=2:ppn=16 timer.sh -o output/timer32.txt
msub -l nodes=2:ppn=28 timer.sh -o output/timer56.txt
msub -l nodes=4:ppn=28 timer.sh -o output/timer112.txt
msub -l nodes=8:ppn=28 timer.sh -o output/timer224.txt