1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-21 16:16:04 +00:00

fix(ganymede): large => high

Co-authored-by: drpatelh <drpatelh@users.noreply.github.com>
This commit is contained in:
Edmund Miller 2021-03-22 12:42:56 -05:00
parent 34ccce9531
commit a6975cdd4e
No known key found for this signature in database
GPG key ID: BD387FF7BC10AA9D

View file

@ -37,9 +37,9 @@ process {
time = { check_max( 8.h * task.attempt, 'time' ) } time = { check_max( 8.h * task.attempt, 'time' ) }
} }
withLabel:process_large { withLabel:process_high {
cpus = { check_max( 12 * task.attempt, 'cpus' ) } cpus = { check_max( 12 * task.attempt, 'cpus' ) }
memory = { check_max( 1.GB * task.attempt, 'memory' ) } memory = { check_max( 120.GB * task.attempt, 'memory' ) }
time = { check_max( 16.h * task.attempt, 'time' ) } time = { check_max( 16.h * task.attempt, 'time' ) }
} }
} }