-
Notifications
You must be signed in to change notification settings - Fork 1
/
siusims.q
37 lines (28 loc) · 984 Bytes
/
siusims.q
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
#!/bin/bash
#SBATCH --job-name=siusims_testperf
#SBATCH --tasks-per-node=24
#SBATCH --nodes=4
#SBATCH --time=48:00:00
#SBATCH --mem-per-cpu=8048
#SBATCH --mail-type=FAIL
#SBATCH --mail-type=END
#SBATCH [email protected]
#SBATCH --export=PATH,R_LIBS,CLUSTER,CORES,LD_LIBRARY_PATH
#SBATCH --partition=jwbowers
#
module load gnu/gnu-9.3.0 gnu/openmpi-3.1.6-gnu-9.3.0
source ~/miniforge3/bin/activate
conda activate mambaR
## set InputDir=/data/keeling/a/jwbowers/Documents/PROJECTS/manytests-paper
## set RunDir=/data/keeling/a/jwbowers/Documents/PROJECTS/manytests-paper
## cd /data/keeling/a/jwbowers/Documents/PROJECTS/manytests-paper
export R_DATATABLE_NUM_THREADS=1
export CLUSTER="keeling-socket"
export CORES=96
echo "Started on: $(date --rfc-3339=seconds)"
echo "Hostname: $(hostname)"
echo "Working directory: $PWD"
#Rscript r-multihost.R
Rscript --verbose Analysis/siusims.R
# R --file=Analysis/siusims.R
echo "Finished on: $(date --rfc-3339=seconds)"