From ef97c3b5658130882cec1f5ed50c146e7bfde2e5 Mon Sep 17 00:00:00 2001 From: shahoian Date: Tue, 3 Jun 2025 18:11:33 +0200 Subject: [PATCH] Use 2 threads by default in ITS tracker and ITS-TPC matcher in async mode --- DATA/production/workflow-multiplicities.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/DATA/production/workflow-multiplicities.sh b/DATA/production/workflow-multiplicities.sh index 024f75dae..ffc36e467 100644 --- a/DATA/production/workflow-multiplicities.sh +++ b/DATA/production/workflow-multiplicities.sh @@ -13,8 +13,13 @@ SOURCE_GUARD_MULTIPLICITIES=1 : ${SVERTEX_THREADS:=2} +if [[ $SYNCMODE == 1 ]]; then : ${ITSTRK_THREADS:=1} : ${ITSTPC_THREADS:=1} +else +: ${ITSTRK_THREADS:=2} +: ${ITSTPC_THREADS:=2} +fi : ${TPCTIMESERIES_THREADS:=1}