We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34c8278 commit 7e7fea8Copy full SHA for 7e7fea8
prodtests/full_system_test.sh
@@ -110,6 +110,10 @@ for STAGE in $STAGES; do
110
walltime=`grep "#walltime" ${logfile}_time | awk '//{print $2}'`
111
echo "walltime_${STAGE},${TAG} value=${walltime}" >> ${METRICFILE}
112
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
+
117
# memory
118
maxmem=`awk '/PROCESS MAX MEM/{print $5}' ${logfile}` # in MB
119
avgmem=`awk '/PROCESS AVG MEM/{print $5}' ${logfile}` # in MB
0 commit comments