From 5af229a968eb0b85a075997c97d47d2c534448ed Mon Sep 17 00:00:00 2001 From: Caspar van Leeuwen Date: Tue, 24 Sep 2024 12:22:54 +0200 Subject: [PATCH] Slightly lower memory request, as now jobs are rejected --- config/azure_mc.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/config/azure_mc.py b/config/azure_mc.py index 5300fac9..ae8a8c39 100644 --- a/config/azure_mc.py +++ b/config/azure_mc.py @@ -42,7 +42,9 @@ 'export SLURM_EXPORT_ENV=ALL' ], 'extras': { - 'mem_per_node': 768000 + # For some reason, we cannot ask for the full amount configured as RealMemory in + # /etc/slurm/nodes.conf, so we ask slightly less + 'mem_per_node': 767480 }, }, { @@ -57,7 +59,9 @@ 'export SLURM_EXPORT_ENV=ALL' ], 'extras': { - 'mem_per_node': 64000 + # For some reason, we cannot ask for the full amount configured as RealMemory in + # /etc/slurm/nodes.conf, so we ask slightly less + 'mem_per_node': 63480 }, }, ]