Skip to content

Commit

Permalink
Merge pull request EESSI#151 from laraPPr/fix_hortense_config
Browse files Browse the repository at this point in the history
fix memory_per_node for Hortense
  • Loading branch information
boegel authored Jun 8, 2024
2 parents b0c91e4 + dcd2688 commit 06e0db9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions config/vsc_hortense.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def command(self, job):
'extras': {
# Make sure to round down, otherwise a job might ask for more mem than is available
# per node
'mem_per_node': 256.000 # in GiB (should be checked, its unclear from slurm.conf)
'mem_per_node': 234 # in GiB
},
},
{
Expand Down Expand Up @@ -91,7 +91,7 @@ def command(self, job):
'extras': {
# Make sure to round down, otherwise a job might ask for more mem than is available
# per node
'mem_per_node': 511.983 # in GiB
'mem_per_node': 473 # in GiB
},
},
{
Expand Down Expand Up @@ -123,7 +123,7 @@ def command(self, job):
'extras': {
# Make sure to round down, otherwise a job might ask for more mem than is available
# per node
'mem_per_node': 256.000 # in GiB (should be checked, its unclear from slurm.conf)
'mem_per_node': 234 # in GiB
},
},
{
Expand All @@ -150,7 +150,7 @@ def command(self, job):
GPU_VENDOR: GPU_VENDORS[NVIDIA],
# Make sure to round down, otherwise a job might ask for more mem than is available
# per node
'mem_per_node': 256.000 # in GiB
'mem_per_node': 236 # in GiB
},
'resources': [
{
Expand Down Expand Up @@ -194,7 +194,7 @@ def command(self, job):
GPU_VENDOR: GPU_VENDORS[NVIDIA],
# Make sure to round down, otherwise a job might ask for more mem than is available
# per node
'mem_per_node': 511.983 # in GiB
'mem_per_node': 475 # in GiB
},
'resources': [
{
Expand Down

0 comments on commit 06e0db9

Please sign in to comment.