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:
parent
2b58a62a9b
commit
04d0b27e81
1 changed files with 1 additions and 1 deletions
|
@ -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' ) }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue