Skip to content
Snippets Groups Projects

Resolve BMK-1325: Calculates the workload score based on the timestamps of the...

Merged Resolve BMK-1325: Calculates the workload score based on the timestamps of the...
All threads resolved!
Merged Domenico Giordano requested to merge BMK-1322 into qa-build-alice-digi-reco-core-run3-ma
All threads resolved!
@@ -53,9 +53,9 @@ function doOne(){
export ALICEO2_CCDB_LOCALCACHE=${PWD}/.ccdb
# ----------- START ACTUAL JOB -----------------------------
NSIGEVENTS=3
NBKGEVENTS=3
NTIMEFRAMES=$(($NEVENTS_THREAD * $NTHREADS))
NSIGEVENTS=12
NBKGEVENTS=12
NTIMEFRAMES=$NEVENTS_THREAD
SIMENGINE=TGeant4
NWORKERS=$NTHREADS
CPULIMIT=$NTHREADS
@@ -132,6 +132,16 @@ function validateInputArguments(){
# Number of events per thread
if [ "$USER_NEVENTS_THREAD" != "" ]; then NEVENTS_THREAD=$USER_NEVENTS_THREAD; fi
if [ $NTHREADS != 4 ]; then
echo "Invalid number of threads requested; Alice workload requires four threads processing a single timeframe. Each timeframe contains 12 events in total."
return 1
fi
if (( $NEVENTS_THREAD > 5 )); then
echo "Invalid number of timeframes requested; maximum number of timeframes for Alice workload is five. Each timeframe contains 12 events."
return 1
fi
USETASKSET=0
for arg in $EXTRA_ARGS; do
[ "${arg}" == "--taskset" ] && USETASKSET=1
Loading