Skip to content

Commit

Permalink
Fixes rusty.json for mem requests
Browse files Browse the repository at this point in the history
Removing mem meant that we used the default, 10GB, which is far too
low. making it the empty string means that we don't request anything
and thus are not limited by slurm
  • Loading branch information
billbrod committed Oct 5, 2020
1 parent dfa56b2 commit 3c6e28a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rusty.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@
{
"gres": "gpu:{resources.gpu}",
"partition": "{params.rusty_partition}",
"mem": "",
"constraint": "{params.rusty_constraint}",
"time": "{params.time}"
},
"continue_metamers":
{
"gres": "gpu:{resources.gpu}",
"partition": "{params.rusty_partition}",
"mem": "",
"constraint": "{params.rusty_constraint}",
"time": "{params.time}"
},
Expand Down

0 comments on commit 3c6e28a

Please sign in to comment.