Skip to content

Commit

Permalink
adds time to rusty, updates default mem estimate
Browse files Browse the repository at this point in the history
  • Loading branch information
billbrod committed Sep 30, 2020
1 parent 0b69cb5 commit f283f2f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 17 deletions.
2 changes: 1 addition & 1 deletion prince.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"nodes": 1,
"tasks_per_node": 1,
"mem": "48GB",
"mem": "10GB",
"time": "1:00:00",
"job_name": "{rule}.{wildcards}",
"cpus_per_task": 1,
Expand Down
34 changes: 18 additions & 16 deletions rusty.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,32 @@
{
"__default__":
{
"nodes": 1,
"tasks_per_node": 1,
"mem": "48GB",
"time": "140:00:00",
"job_name": "{rule}.{wildcards}",
"cpus_per_task": 1,
"output": "{log}-%j",
"error": "{log}-%j",
"partition": "gen"
"nodes": 1,
"tasks_per_node": 1,
"mem": "10GB",
"time": "1:00:00",
"job_name": "{rule}.{wildcards}",
"cpus_per_task": 1,
"output": "{log}-%j",
"error": "{log}-%j",
"partition": "gen"
},
"create_metamers":
{
"gres": "gpu:v100-32gb:{resources.gpu}",
"mem": "{resources.mem}GB",
"partition": "{params.partition}"
"gres": "gpu:v100-32gb:{resources.gpu}",
"mem": "{resources.mem}GB",
"partition": "{params.partition}",
"time": "{params.time}"
},
"continue_metamers":
{
"gres": "gpu:v100-32gb:{resources.gpu}",
"mem": "{resources.mem}GB",
"partition": "{params.partition}"
"gres": "gpu:v100-32gb:{resources.gpu}",
"mem": "{resources.mem}GB",
"partition": "{params.partition}",
"time": "{params.time}"
},
"cache_windows":
{
"mem": "{resources.mem}GB"
"mem": "{resources.mem}GB"
}
}

0 comments on commit f283f2f

Please sign in to comment.