From 7346bffdc81c6ab1d1807d7cabc689d048dcd416 Mon Sep 17 00:00:00 2001 From: Daniel Straub <42973691+d4straub@users.noreply.github.com> Date: Tue, 28 Jan 2020 08:48:34 +0100 Subject: [PATCH] Update binac.config Processes that ask for 128 Gb are queuing forever when on short queue, but executed when send to smp queue. --- conf/binac.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/binac.config b/conf/binac.config index 8c3d493..62a07c6 100644 --- a/conf/binac.config +++ b/conf/binac.config @@ -14,7 +14,7 @@ process { beforeScript = 'module load devel/singularity/3.4.2' executor = 'pbs' queue = 'short' - process.queue = { task.memory > 128.GB ? 'smp': task.time <= 20.m ? 'tiny' : task.time <= 48.h ? 'short' : task.time <= 168.h ? 'short' : 'long'} + process.queue = { task.memory >= 128.GB ? 'smp': task.time <= 20.m ? 'tiny' : task.time <= 48.h ? 'short' : task.time <= 168.h ? 'short' : 'long'} } params {