Skip to content
Snippets Groups Projects
Commit 29e32c30 authored by Matthias Schnepf's avatar Matthias Schnepf
Browse files

Fix default values

parent 3d2488c3
Branches
No related tags found
No related merge requests found
......@@ -64,14 +64,14 @@ MASTER.DAEMON_SHUTDOWN_FAST = ( TimeToLive <= 3 * $(MINUTE) )
# Set number of CPUs
DEFAULT_NUM_CPUS = 20
NUM_CPUS = ifThenElse( IsUndefined($ENV(SLURM_CPUS_ON_NODE)), \
$ENV(SLURM_CPUS_ON_NODE), \
$(DEFAULT_NUM_CPUS) \
$(DEFAULT_NUM_CPUS), \
$ENV(SLURM_CPUS_ON_NODE) \
)
DEFAULT_Memory = 12000
MEMORY = ifThenElse( IsUndefined($ENV(SLURM_MEM_ON_NODE)), \
$ENV(SLURM_MEM_ON_NODE), \
$(DEFAULT_Memory) \
$(DEFAULT_Memory), \
$ENV(SLURM_MEM_ON_NODE) \
)
TardisDroneUuid = "$ENV(TardisDroneUuid)"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment