From df37bd98968ad0bb9accadae59c44bee01a38ad9 Mon Sep 17 00:00:00 2001 From: Laurent Modolo Date: Wed, 6 Nov 2024 09:05:11 +0100 Subject: [PATCH] psmn.config: change clusterOption --parition to queue --- conf/psmn.config | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/conf/psmn.config b/conf/psmn.config index d0972f87..725fff20 100644 --- a/conf/psmn.config +++ b/conf/psmn.config @@ -19,46 +19,46 @@ process { time: 96.h ] executor = 'slurm' - clusterOptions = "--partition=E5,Lake" + queue = "E5,Lake" cpus = 1 memory = 32.GB time = 24.h withLabel: 'process_single|process_single_thread|sc_tiny|sc_small|sc_medium' { - clusterOptions = "--partition=Lake" + queue = "Lake" cpus = 1 memory = 96.GB time = 24.h } - withLabel:'process_low|mc_small|process_very_low' { - clusterOptions = "--partition=Lake" + withLabel: 'process_low|mc_small|process_very_low' { + queue = "Lake" cpus = 16 memory = 80.GB time = 24.h } - withLabel:'process_medium|mc_medium' { - clusterOptions = "--partition=Lake" + withLabel: 'process_medium|mc_medium' { + 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" + withLabel: 'process_high|mc_large|mc_huge|process_high_cpus|cpus_max' { + queue = "Lake" cpus = 32 memory = 370.GB time = 48.h } withLabel: 'process_long|process_maximum_time|process_long_parallelized' { - clusterOptions = "--partition=Lake" + queue = "Lake" time = 96.h } withLabel: 'process_high_memory|memory_max' { - clusterOptions = "--partition=Epyc" + queue = "Epyc" memory = 500.GB } withLabel: gpu { - clusterOptions = "--partition=E5-GPU" + queue = "E5-GPU" } }