Skip to content

Commit 4c28be0

Browse files
davidrohrBenedikt Volkel
authored andcommitted
dpl-workflow: Limit number of nodes in multiplicity computation to 230 to avoid downscaling
1 parent 257ffa5 commit 4c28be0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

DATA/production/workflow-multiplicities.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ elif [[ $EPNPIPELINES != 0 ]]; then
134134
NTRDTRKTHREADS=2
135135
ITSTRK_THREADS=2
136136
ITSTPC_THREADS=2
137-
RECO_NUM_NODES_WORKFLOW_CMP=$((($RECO_NUM_NODES_WORKFLOW > 15 ? $RECO_NUM_NODES_WORKFLOW : 15) * ($NUMAGPUIDS != 0 ? 2 : 1))) # Limit the lower scaling factor, multiply by 2 if we have 2 NUMA domains
137+
RECO_NUM_NODES_WORKFLOW_CMP=$((($RECO_NUM_NODES_WORKFLOW > 15 ? ($RECO_NUM_NODES_WORKFLOW < 230 ? $RECO_NUM_NODES_WORKFLOW : 230) : 15) * ($NUMAGPUIDS != 0 ? 2 : 1))) # Limit the lower scaling factor, multiply by 2 if we have 2 NUMA domains
138138
# Tuned multiplicities for sync pp / Pb-Pb processing
139139
if [[ $BEAMTYPE == "pp" ]]; then
140140
N_ITSRAWDEC=$(math_max $((6 * $EPNPIPELINES * $NGPUS / 4)) 1)

0 commit comments

Comments
 (0)