Skip to content

Commit 7e7fea8

Browse files
davidrohrsawenzel
authored andcommitted
Add gpu reconstruction processing time metric to alibi benchmark
1 parent 34c8278 commit 7e7fea8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

prodtests/full_system_test.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ for STAGE in $STAGES; do
110110
walltime=`grep "#walltime" ${logfile}_time | awk '//{print $2}'`
111111
echo "walltime_${STAGE},${TAG} value=${walltime}" >> ${METRICFILE}
112112

113+
# GPU reconstruction (also in CPU version) processing time
114+
gpurecotime=`grep "tpc-tracker" reco_NOGPU.log | grep -e "Total Wall Time:" | awk '//{printf "%f", $6/1000000}'`
115+
echo "gpurecotime_${STAGE},${TAG} value=${gpurecotime}" >> ${METRICFILE}
116+
113117
# memory
114118
maxmem=`awk '/PROCESS MAX MEM/{print $5}' ${logfile}` # in MB
115119
avgmem=`awk '/PROCESS AVG MEM/{print $5}' ${logfile}` # in MB

0 commit comments

Comments
 (0)