mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 00:26:03 +00:00
Update imperial.config
Multiple process level updates reflecting the latest job sizing guidelines for the Imperial HPC
This commit is contained in:
parent
81a273c730
commit
fe5474a029
1 changed files with 50 additions and 21 deletions
|
@ -3,13 +3,12 @@
|
|||
params {
|
||||
// Config Params
|
||||
config_profile_description = 'Imperial College London - HPC Profile -- provided by nf-core/configs.'
|
||||
config_profile_contact = 'NA'
|
||||
config_profile_url = 'https://www.imperial.ac.uk/admin-services/ict/self-service/research-support/rcs/'
|
||||
|
||||
// Resources
|
||||
max_memory = 256.GB
|
||||
max_cpus = 32
|
||||
max_time = 72.h
|
||||
max_memory = 480.GB
|
||||
max_cpus = 40
|
||||
max_time = 1000.h
|
||||
}
|
||||
|
||||
executor {
|
||||
|
@ -20,7 +19,7 @@ executor {
|
|||
$local {
|
||||
cpus = 2
|
||||
queueSize = 1
|
||||
memory = '32 GB'
|
||||
memory = '6 GB'
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -31,7 +30,37 @@ singularity {
|
|||
}
|
||||
|
||||
process {
|
||||
|
||||
executor = 'pbspro'
|
||||
|
||||
// Process-specific resource requirements
|
||||
withLabel:process_low {
|
||||
// TARGET QUEUE: throughput
|
||||
cpus = { check_max( 2 * task.attempt, 'cpus' ) }
|
||||
memory = { check_max( 12.GB * task.attempt, 'memory' ) }
|
||||
time = { check_max( 4.h * task.attempt, 'time' ) }
|
||||
}
|
||||
withLabel:process_medium {
|
||||
// TARGET QUEUE: throughput
|
||||
cpus = { check_max( 8, 'cpus' ) }
|
||||
memory = { check_max( 32.GB * task.attempt, 'memory' ) }
|
||||
time = { check_max( 8.h * task.attempt, 'time' ) }
|
||||
}
|
||||
withLabel:process_high {
|
||||
// TARGET QUEUE: general
|
||||
cpus = { check_max( 32, 'cpus' ) }
|
||||
memory = { check_max( 62.GB * task.attempt, 'memory' ) }
|
||||
time = { check_max( 16.h * task.attempt, 'time' ) }
|
||||
}
|
||||
withLabel:process_long {
|
||||
// TARGET QUEUE: long
|
||||
cpus = { check_max( 8, 'cpus' ) }
|
||||
memory = { check_max( 96.GB, 'memory' ) }
|
||||
time = { check_max( 72.h * task.attempt, 'time' ) }
|
||||
}
|
||||
withLabel:process_high_memory {
|
||||
// TARGET QUEUE: large memory
|
||||
cpus = { check_max( 10 * task.attempt, 'cpus' ) }
|
||||
memory = { check_max( 120.GB * task.attempt, 'memory' ) }
|
||||
time = { check_max( 12.h * task.attempt, 'time' ) }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue