Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update PSMN configuration to keep up with cluster changes #788

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
52 changes: 26 additions & 26 deletions conf/psmn.config
Original file line number Diff line number Diff line change
Expand Up @@ -18,47 +18,47 @@ process {
cpus: 32,
time: 96.h
]
executor = 'slurm'
clusterOptions = "--partition=E5,Lake,Lake-flix"
executor = 'slurm'
queue = "E5,Lake"

cpus = 1
memory = 32.GB
time = 24.h
cpus = 1
memory = 32.GB
time = 24.h

withLabel: 'process_single|process_single_thread|sc_tiny|sc_small|sc_medium' {
clusterOptions = "--partition=E5,Lake,Lake-flix"
cpus = 1
memory = 114.GB
time = 24.h
queue = "Lake"
cpus = 1
memory = 96.GB
time = 24.h
}
withLabel: 'process_low|mc_small|process_very_low' {
clusterOptions = "--partition=E5,Lake,Lake-flix"
cpus = 16
memory = 90.GB
time = 24.h
queue = "Lake"
cpus = 16
memory = 80.GB
time = 24.h
}
withLabel: 'process_medium|mc_medium' {
clusterOptions = "--partition=Lake,Lake-flix"
cpus = 32
memory = 180.GB
time = 48.h
queue = "Lake"
cpus = 32
memory = 180.GB
time = 48.h
}
withLabel: 'process_high|mc_large|mc_huge|process_high_cpus|cpus_max' {
clusterOptions = "--partition=Lake,Lake-flix"
cpus = 32
memory = 370.GB
time = 48.h
queue = "Lake"
cpus = 32
memory = 370.GB
time = 48.h
}
withLabel: 'process_long|process_maximum_time|process_long_parallelized' {
clusterOptions = "--partition=Lake"
time = 96.h
queue = "Lake"
time = 96.h
}
withLabel: 'process_high_memory|memory_max' {
clusterOptions = "--partition=Lake,Lake-flix"
memory = 370.GB
queue = "Epyc"
memory = 500.GB
}
withLabel: gpu {
clusterOptions = "--partition=E5-GPU"
queue = "E5-GPU"
}
}

Expand Down
Loading