From eca18363a1b10925b9236424c723ac97ed7e290d Mon Sep 17 00:00:00 2001 From: Felipe Marques de Almeida Date: Mon, 28 Feb 2022 14:55:16 +0100 Subject: [PATCH] Update base.config --- conf/base.config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/base.config b/conf/base.config index bd3075db..9aeee9a1 100644 --- a/conf/base.config +++ b/conf/base.config @@ -31,7 +31,7 @@ process { // Assemblies will first try to adjust themselves to a parallel execution // If it is not possible, then it waits to use all the resources allowed withLabel:process_assembly { - cpus = { if (task.attempt == 1) { check_max( 6 * task.attempt, 'cpus' ) } else { params.max_cpus } } + cpus = { if (task.attempt == 1) { check_max( 4 * task.attempt, 'cpus' ) } else { params.max_cpus } } memory = { if (task.attempt == 1) { check_max( 14.GB * task.attempt, 'memory' ) } else { params.max_memory } } time = { if (task.attempt == 1) { check_max( 16.h * task.attempt, 'time' ) } else { params.max_time } } } @@ -69,4 +69,4 @@ def check_max(obj, type) { return obj } } -} \ No newline at end of file +}