Skip to content

Commit

Permalink
Update base.config
Browse files Browse the repository at this point in the history
  • Loading branch information
fmalmeida authored Feb 28, 2022
1 parent 9c05c78 commit eca1836
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ process {
// Assemblies will first try to adjust themselves to a parallel execution
// If it is not possible, then it waits to use all the resources allowed
withLabel:process_assembly {
cpus = { if (task.attempt == 1) { check_max( 6 * task.attempt, 'cpus' ) } else { params.max_cpus } }
cpus = { if (task.attempt == 1) { check_max( 4 * task.attempt, 'cpus' ) } else { params.max_cpus } }
memory = { if (task.attempt == 1) { check_max( 14.GB * task.attempt, 'memory' ) } else { params.max_memory } }
time = { if (task.attempt == 1) { check_max( 16.h * task.attempt, 'time' ) } else { params.max_time } }
}
Expand Down Expand Up @@ -69,4 +69,4 @@ def check_max(obj, type) {
return obj
}
}
}
}

0 comments on commit eca1836

Please sign in to comment.