forked from idaholab/stork
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun_perfmonce_mesh.sh
34 lines (26 loc) · 1.06 KB
/
run_perfmonce_mesh.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env zsh
### Job name
#BSUB -J apex_perf_mesh
### File / path where STDOUT & STDERR will be written
### %J is the job ID, %I is the array ID
#BSUB -o perf_mesh.%J.%I
### Send email when job is done
#BSUB -u [email protected]
#BSUB -N
### Request the time you need for execution in minutes
### The format for the parameter is: [hour:]minute,
### that means for 80 minutes you could also use this: 1:20
#BSUB -W 01:80
### Request memory you need for your job in TOTAL in MB
#BSUB -M 128192
### Use esub for Open MPI
#BSUB -a openmpi
### Use a specific machine
#BSUB -m mpi-s-bull
cd $HOME/projects/Apex
mpirun -n 16 ./Apex-opt -i problems/performance_test/d_steady_perth_17920.i
mpirun -n 16 ./Apex-opt -i problems/performance_test/d_steady_perth_133920.i
mpirun -n 16 ./Apex-opt -i problems/performance_test/d_steady_perth_430080.i
mpirun -n 16 ./Apex-opt -i problems/performance_test/d_steady_perth_995600.i
mpirun -n 16 ./Apex-opt -i problems/performance_test/d_steady_perth_1900800.i
mpirun -n 16 ./Apex-opt -i problems/performance_test/d_steady_perth_3248000.i