Skip to content

Commit

Permalink
Merge pull request #2 from laraPPr/QE_update_hortense_config
Browse files Browse the repository at this point in the history
update hortense config
  • Loading branch information
Crivella authored May 24, 2024
2 parents b66c627 + e4d8a51 commit 2bd12b1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions config/vsc_hortense.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ def command(self, job):
'features': [
FEATURES[CPU],
] + list(SCALES.keys()),
'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)
},
},
{
'name': 'cpu_rome_512gb',
Expand Down Expand Up @@ -81,6 +86,11 @@ def command(self, job):
'features': [
FEATURES[CPU],
] + list(SCALES.keys()),
'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
},
},
{
'name': 'cpu_milan',
Expand Down Expand Up @@ -108,6 +118,11 @@ def command(self, job):
'features': [
FEATURES[CPU],
] + list(SCALES.keys()),
'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)
},
},
{
'name': 'gpu_rome_a100_40gb',
Expand All @@ -131,6 +146,9 @@ def command(self, job):
] + list(SCALES.keys()),
'extras': {
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
},
'resources': [
{
Expand Down Expand Up @@ -172,6 +190,9 @@ def command(self, job):
] + list(SCALES.keys()),
'extras': {
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
},
'resources': [
{
Expand Down

0 comments on commit 2bd12b1

Please sign in to comment.