Skip to content

Commit fdcd28f

Browse files
committed
Do not use 4gpu for non-EPN sites
1 parent 72be788 commit fdcd28f

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

DATA/production/configurations/asyncReco/async_pass.sh

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,9 +445,17 @@ if [[ $ASYNC_PASS_NO_OPTIMIZED_DEFAULTS != 1 ]]; then
445445
fi
446446
else
447447
if [[ $BEAMTYPE == "pp" ]]; then
448-
export OPTIMIZED_PARALLEL_ASYNC=pp_4gpu_${ALIEN_JDL_SITEARCH_TMP} # (64 cores, 1 NUMA, 4 gpu per job, pp)
448+
if [[ $ALIEN_JDL_SITEARCH =~ ^EPN ]]; then
449+
export OPTIMIZED_PARALLEL_ASYNC=pp_4gpu_${ALIEN_JDL_SITEARCH_TMP} # (64 cores, 1 NUMA, 4 gpu per job, pp)
450+
else
451+
export OPTIMIZED_PARALLEL_ASYNC=pp_gpu_${ALIEN_JDL_SITEARCH_TMP} # (64 cores, 1 gpu per job, pp)
452+
fi
449453
else # PbPb
450-
export OPTIMIZED_PARALLEL_ASYNC=PbPb_4gpu_${ALIEN_JDL_SITEARCH_TMP} # (64 cores, 1 NUMA 4 gpu per job, PbPb)
454+
if [[ $ALIEN_JDL_SITEARCH =~ ^EPN ]]; then
455+
export OPTIMIZED_PARALLEL_ASYNC=PbPb_4gpu_${ALIEN_JDL_SITEARCH_TMP} # (64 cores, 1 NUMA 4 gpu per job, PbPb)
456+
else
457+
export OPTIMIZED_PARALLEL_ASYNC=PbPb_gpu_${ALIEN_JDL_SITEARCH_TMP} # (64 cores, 1 gpu per job, PbPb)
458+
fi
451459
fi
452460
fi
453461
else

0 commit comments

Comments
 (0)