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

Fix syntax

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