Reorganize the benchmark section.

Automate Linux kernel measures and move them into that new section.
This commit is contained in:
Ciro Santilli
2018-04-05 08:52:30 +01:00
parent f482f24f87
commit 330edbe8eb
6 changed files with 277 additions and 126 deletions

25
gem5-stat Executable file
View File

@@ -0,0 +1,25 @@
#!/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"