Files
linux-kernel-module-cheat/gem5-stat
Ciro Santilli 330edbe8eb Reorganize the benchmark section.
Automate Linux kernel measures and move them into that new section.
2018-04-05 22:36:46 +01:00

26 lines
462 B
Bash
Executable File

#!/usr/bin/env bash
set -eu
. common
while getopts a:hs: OPT; do
case "$OPT" in
a)
arch="$OPTARG"
;;
h)
printf "\
usage: $0 [-a arch] [stat=system.cpu.numCycles]
Get the value for a gem5 stat from the stats.txt file.
" 1>&2
exit
;;
esac
done
shift "$(($OPTIND - 1))"
if [ $# -gt 0 ]; then
stat="$1"
else
stat=system.cpu.numCycles
fi
set_common_vars "$arch" true
awk "/^$stat /{ print \$2 }" "${m5out_dir}/stats.txt"