forked from cryotools/cosipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslurm_config.toml
23 lines (19 loc) · 962 Bytes
/
slurm_config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This is the SLURM configuration (init) file.
# Please make your changes here.
[LABELS]
account = "morsanat" # Slurm account/group, equivalent to Slurm parameter `--account`.
name = "SensHEF" # Equivalent to Slurm parameter `--job-name`.
queue = "work" # Name of job queue.
[PARAMETERS]
# Additional Slurm parameters. These can overwrite other settings. #--nodes=1
slurm_parameters = ["--qos=short", "--error=Error_nodes.err", "--output=Output_nodes.out", "--time=01:00:00","--reservation=PyMC", "--mem='3G'"]
shebang = "#!/bin/bash -l"
local_directory = "./logs/dask-worker-space"
[MEMORY]
port = 8786 # Network port number.
cores = 20 # One grid point per core: do not change.
nodes = 1 #7 # Grid points submitted in one sbatch script.
processes = 20 # Number of processes.
memory = "3G" # Total allocated memory per submitted Slurm job.
[OVERRIDES]
memory_per_process = 3 # Memory per process. This sets `memory` to (cores * memory_per_process.)