-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_catch_rule.pbs
52 lines (44 loc) · 1.58 KB
/
run_catch_rule.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
51
#!/bin/sh
## job name
#PBS -N catch_rule_rnd_all
## maximum runtime
#PBS -l walltime=02:00:01
## select number of nodes, cpus (per node) and memory (per node)
#PBS -l select=2:ncpus=24:mpiprocs=24: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 25-27
## 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_tmp
## load modules
## anaconda includes R and OpenMPI
module purge
module load mpi/intel-2018.1.163 anaconda3/personal
### activate R with MPI environment
source activate R_2020
echo "starting the simulations..."
### run job
### when running with MPI, worker count is one less than selected cores
R CMD BATCH --vanilla --quiet "--args use_MPI=FALSE n_workers=20 n_blocks=20 stock_id=$PBS_ARRAY_INDEX n_iter=500 n_yrs=50 fhist='one-way' catch_rule='catch_rule' ga_search=FALSE stat_yrs='all'" $HOME/git/wklife9_GA_tmp/run_ms.R $HOME/reports/$PBS_JOBID.$PBS_ARRAY_INDEX.Rout
echo ""
echo "R job finished!"
echo ""
## print details about job
echo "job details from PBS:"
echo "==============================================================================="
qstat -f
echo "==============================================================================="
qstat -t
echo "==============================================================================="