-
Notifications
You must be signed in to change notification settings - Fork 1
/
run_ms_hr_cap.pbs
50 lines (43 loc) · 1.77 KB
/
run_ms_hr_cap.pbs
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/sh
## job name
#PBS -N GA_cap
## maximum runtime
#PBS -l walltime=10:00:00
## select number of nodes, cpus (per node) and memory (per node)
#PBS -l select=6:ncpus=24:mpiprocs=4:mem=100gb
## standard output standard error
#PBS -o reports
#PBS -e reports
## request disk space for temporary directory
###PBS -l tmpspace=10gb
## array job
##PBS -J 15-19
## start job after another job finished?
###PBS -W depend=afterany:1624711.pbs
### print details about job
echo ""
echo "This is job $PBS_JOBID index $PBS_ARRAY_INDEX"
echo "The following ressources have been allocated"
cat $PBS_NODEFILE
echo ""
### set working directory
cd $HOME/git/wklife9_GA
## load modules
## anaconda includes R and OpenMPI
module purge
module load mpi/intel-2018.1.163 anaconda3/personal
### activate MPI environment
source activate R_2020
echo "starting the simulations..."
### run job
### when running with MPI, worker count is one less than selected cores
mpiexec R CMD BATCH --vanilla --quiet "--args use_MPI=TRUE n_workers=5 n_blocks=5 popSize=100 maxiter=100 run=10 stock_id=12 n_iter=500 n_yrs=50 fhist='one-way' catch_rule='catch_rule' ga_search=TRUE lag_idx=FALSE range_idx_1=FALSE range_idx_2=FALSE range_catch=FALSE exp_r=FALSE exp_f=FALSE exp_b=FALSE interval=FALSE multiplier=FALSE upper_constraint=TRUE lower_constraint=TRUE obj_SSB=TRUE obj_F=FALSE obj_C=TRUE obj_risk=TRUE obj_ICV=TRUE collate=TRUE scenario='uncertainty_cap'" $HOME/git/wklife9_GA/run_ms_hr.R $HOME/reports/$PBS_JOBID.$PBS_ARRAY_INDEX.Rout
## $PBS_ARRAY_INDEX
echo ""
echo "R job finished!"
echo ""
## print details about job
echo "job details from PBS:"
echo "==============================================================================="
qstat -f
echo "==============================================================================="