1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-24 17:19:54 +00:00

fix(sysbio): Reduce memory on high processes

This commit is contained in:
Edmund Miller 2021-06-16 21:17:40 -05:00
parent 2b58a62a9b
commit 04d0b27e81
No known key found for this signature in database
GPG key ID: BD387FF7BC10AA9D

View file

@ -25,7 +25,7 @@ process {
withLabel:process_high { withLabel:process_high {
cpus = { check_max( 16 * task.attempt, 'cpus' ) } cpus = { check_max( 16 * task.attempt, 'cpus' ) }
memory = { check_max( 62.GB * task.attempt, 'memory' ) } memory = { check_max( 60.GB * task.attempt, 'memory' ) }
time = { check_max( 16.h * task.attempt, 'time' ) } time = { check_max( 16.h * task.attempt, 'time' ) }
} }
} }