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

Update shh.config

This commit is contained in:
James A. Fellows Yates 2020-07-08 09:25:21 +02:00 committed by GitHub
parent b360ce26bc
commit c6905b609e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,13 +23,13 @@ process {
withLabel:'sc_tiny'{ withLabel:'sc_tiny'{
cpus = { check_max( 1, 'cpus' ) } cpus = { check_max( 1, 'cpus' ) }
memory = { check_max( 1.GB * task.attempt, 'memory' ) } memory = { check_max( 1.GB * task.attempt, 'memory' ) }
time = { task.attempt == 3 ? 1440.h : task.attempt == 2 ? 48.h : task.attempt == 1 ? 2.h } time = { task.attempt == 3 ? 1440.h : task.attempt == 2 ? 48.h : 2.h }
} }
withLabel:'sc_small'{ withLabel:'sc_small'{
cpus = { check_max( 1, 'cpus' ) } cpus = { check_max( 1, 'cpus' ) }
memory = { check_max( 4.GB * task.attempt, 'memory' ) } memory = { check_max( 4.GB * task.attempt, 'memory' ) }
time = { task.attempt == 3 ? 1440.h : task.attempt == 2 ? 48.h : task.attempt == 1 ? 2.h } time = { task.attempt == 3 ? 1440.h : task.attempt == 2 ? 48.h : 2.h }
} }
withLabel:'sc_medium'{ withLabel:'sc_medium'{