Skip to content

Commit

Permalink
Merge pull request #742 from nf-core/vsc_ugent/resourcelimits
Browse files Browse the repository at this point in the history
add resourceLimits directive to vsc_ugent config
  • Loading branch information
matthdsm authored Aug 28, 2024
2 parents 32b7186 + f118e1b commit 6fa2b08
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions conf/vsc_ugent.config
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@ switch(cluster) {
process {
executor = 'slurm'
queue = 'skitty'
resourceLimits = [
cpus: 36,
memory: 177.GB,
time: 72.h
]
}
break
case "kirlia":
Expand All @@ -114,6 +119,11 @@ switch(cluster) {
process {
executor = 'slurm'
queue = 'kirlia'
resourceLimits = [
cpus: 36,
memory: 738.GB,
time: 72.h
]
}
break
case "doduo":
Expand All @@ -126,6 +136,11 @@ switch(cluster) {
process {
executor = 'slurm'
queue = 'doduo'
resourceLimits = [
cpus: 96,
memory: 250.GB,
time: 72.h
]
}
break
case "shinx":
Expand All @@ -138,6 +153,11 @@ switch(cluster) {
process {
executor = 'slurm'
queue = 'shinx'
resourceLimits = [
cpus: 128,
memory: 256.GB,
time: 72.h
]
}
break
case "cpu_rome":
Expand All @@ -151,6 +171,11 @@ switch(cluster) {
executor = 'slurm'
queue = 'dodrio/cpu_rome'
clusterOptions = "-A ${tier1_project}"
resourceLimits = [
cpus: 128,
memory: 256.GB,
time: 72.h
]
}
break
case "cpu_rome_512":
Expand All @@ -164,6 +189,11 @@ switch(cluster) {
executor = 'slurm'
queue = 'dodrio/cpu_rome_512'
clusterOptions = "-A ${tier1_project}"
resourceLimits = [
cpus: 128,
memory: 256.GB,
time: 72.h
]
}
break
case "cpu_milan":
Expand All @@ -177,6 +207,11 @@ switch(cluster) {
executor = 'slurm'
queue = 'dodrio/cpu_milan'
clusterOptions = "-A ${tier1_project}"
resourceLimits = [
cpus: 128,
memory: 256.GB,
time: 72.h
]
}
break
case "gpu_rome_a100_40":
Expand All @@ -190,6 +225,11 @@ switch(cluster) {
executor = 'slurm'
queue = 'dodrio/gpu_rome_a100_40'
clusterOptions = "-A ${tier1_project}"
resourceLimits = [
cpus: 48,
memory: 256.GB,
time: 72.h
]
}
break
case "gpu_rome_a100_80":
Expand All @@ -203,6 +243,11 @@ switch(cluster) {
executor = 'slurm'
queue = 'dodrio/gpu_rome_a100_80'
clusterOptions = "-A ${tier1_project}"
resourceLimits = [
cpus: 48,
memory: 512.GB,
time: 72.h
]
}
break
case "debug_rome":
Expand All @@ -216,6 +261,11 @@ switch(cluster) {
executor = 'slurm'
queue = 'dodrio/debug_rome'
clusterOptions = "-A ${tier1_project}"
resourceLimits = [
cpus: 48,
memory: 256.GB,
time: 72.h
]
}
break
case "cpu_rome_all":
Expand All @@ -229,6 +279,11 @@ switch(cluster) {
executor = 'slurm'
queue = 'dodrio/cpu_rome_all'
clusterOptions = "-A ${tier1_project}"
resourceLimits = [
cpus: 128,
memory: 250.GB,
time: 72.h
]
}
break
case "gpu_rome_a100":
Expand All @@ -242,6 +297,11 @@ switch(cluster) {
executor = 'slurm'
queue = 'dodrio/gpu_rome_a100'
clusterOptions = "-A ${tier1_project}"
resourceLimits = [
cpus: 48,
memory: 384.GB,
time: 72.h
]
}
break
}
Expand Down

0 comments on commit 6fa2b08

Please sign in to comment.