Skip to content
Snippets Groups Projects
Commit 8ec76bb0 authored by Jeffrey Pullin's avatar Jeffrey Pullin
Browse files

Increase time limit for running the methods on real data

parent a7a50e61
No related branches found
No related tags found
No related merge requests found
Pipeline #9649 passed
......@@ -105,7 +105,7 @@ rule run_method_real_data:
log: config["logs_folder"] + "run_method_real_data-{data_id}-{method_id}.Rout"
resources:
mem_mb=lambda wildcards, attempt: (attempt ** 2) * 6000,
time_min=lambda wildcards, attempt: [20, 60, 600][attempt - 1]
time_min=lambda wildcards, attempt: [20, 60, 60 * 24][attempt - 1]
benchmark:
"benchmarks/{data_id}-{method_id}_benchmark.txt"
shell: '''R CMD BATCH --no-restore --no-save\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment