Skip to content

Commit

Permalink
update runner sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexboden committed Dec 3, 2024
1 parent 33ad132 commit 7ac1db1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runner_size_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ def get_runner_resources(runner_label):
if runner_label == "slurm-runner-small":
return {"cpu" : 1, "mem-per-cpu" : "2G", "tmpdisk" : 4096, "time" : "00:15:00"}
elif runner_label == "slurm-runner-medium":
return {"cpu" : 2, "mem-per-cpu" : "2G", "tmpdisk" : 16384, "time" : "00:20:00"}
return {"cpu" : 2, "mem-per-cpu" : "3G", "tmpdisk" : 16384, "time" : "00:20:00"}
elif runner_label == "slurm-runner-large":
return {"cpu" : 4, "mem-per-cpu" : "3G", "tmpdisk" : 16384, "time" : "00:25:00"}
return {"cpu" : 4, "mem-per-cpu" : "2G", "tmpdisk" : 16384, "time" : "00:25:00"}
elif runner_label == "slurm-runner-xlarge":
return {"cpu" : 16, "mem-per-cpu" : "2G", "tmpdisk" : 16384, "time" : "00:30:00"}
else:
Expand Down

1 comment on commit 7ac1db1

@smchase
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm, thanks for right-sizing

Please sign in to comment.