-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjob_array_mc.slurm
More file actions
24 lines (21 loc) · 822 Bytes
/
Copy pathjob_array_mc.slurm
File metadata and controls
24 lines (21 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
# Job name
#SBATCH --job-name=ins_test
# Number of Nodes
#SBATCH --partition=short
#SBATCH --nodes=1
#SBATCH --exclusive
#SBATCH --output=results/aflow_fix/egap/rand_search_test/regression/%A-%a.out
# Number of array jobs, and maximum number of simultaneous jobs (%n)
#SBATCH --array=0-4%5
# Number of processes per Node
#SBATCH --ntasks-per-node=1
# Number of CPU-cores per task
#SBATCH --cpus-per-task=4
#SBATCH --mail-user=<bechtelt@physik.hu-berlin.de>
#SBATCH --time=0-23:59:59 # days-hh:mm:ss.
module load cuda
python3 scripts/crossval/crossval_mc.py --config=jraph_MPEU_configs/aflow_rand_search.py \
--workdir=results/aflow_fix/egap/rand_search_test/regression/id${SLURM_ARRAY_TASK_ID} \
--index=${SLURM_ARRAY_TASK_ID} \
--split_file=results/aflow_fix/egap/rand_search_test/classify/splits_ins.json