Lines Matching +full:1 +full:- +full:9 +full:a +full:- +full:e
2 # SPDX-License-Identifier: GPL-2.0+
4 # Analyze a given results directory for refscale performance measurements.
6 # Usage: kvm-recheck-refscale.sh resdir
10 # Authors: Paul E. McKenney <paulmck@linux.ibm.com>
12 i="$1"
13 if test -d "$i" -a -r "$i"
18 exit 1
23 configfile=`echo $i | sed -e 's/^.*\///'`
25 sed -e 's/^\[[^]]*]//' < $i/console.log | tr -d '\015' |
26 awk -v configfile="$configfile" '
29 dataphase = 1;
35 /[^ ]*[0-9][0-9]* [0-9][0-9]*\.[0-9][0-9]*$/ {
36 if (dataphase == 1) {
45 if (dataphase == 1)
59 medianvalue = (readertimes[medianidx - 1] + readertimes[medianidx]) / 2;
63 for (i = 1; i <= newNR; i++)
67 print "Minimum reader duration: " readertimes[1];