On Thu, 05 Mar 2015 02:10:18 -0000, Matt Turner <[email protected]> wrote:
What do you use to generate this?
I use the script below to munge the output of lowlevel-blt-bench into a CSV file, then feed it through the "perfcmp" Python script. The script was originally written for this purpose, but I've since found it useful when benchmarking loads of other things I've worked on. http://github.com/bavison/perfcmp Hope this helps, Ben #!/bin/bash if [ $# -lt 2 ]; then echo "Usage: $0 <test name> <iterations>" exit 1 fi echo "L1,L2,M,HT,VT,R,RT" i="0" while [ $i -lt $2 ]; do `dirname $0`/lowlevel-blt-bench $1 | grep Kops | sed -e 's/([^)]*)//g' -e 's/[A-Z0-9]*://g' | awk '{print $3 "," $4 "," $5 "," $6 "," $7 "," $8 "," $9 }' i=$[$i+1] done _______________________________________________ Pixman mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/pixman
