mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
27 lines
1.1 KiB
Bash
Executable File
27 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# https://github.com/cirosantilli/linux-kernel-module-cheat/tree/58de3f7243016c052ad080f82dd757d61878219b#gem5-run-benchmark
|
|
|
|
set -eu
|
|
root_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
|
|
outfile="${root_dir}/out/gem5-bench-dhrystone.txt"
|
|
arch=aarch64
|
|
cmd="./run -a '$arch' --gem5 --eval-busybox '/gem5.sh'"
|
|
|
|
# These cache sizes roughly match the ARM Cortex A75
|
|
# https://en.wikipedia.org/wiki/ARM_Cortex-A75
|
|
restore='-l 1 -- --cpu-type=HPI --restore-with-cpu=HPI --caches --l2cache --l1d_size=128kB --l1i_size=1024kB --l2_size=256kB'
|
|
|
|
# Generate a checkpoint after Linux boots, using the faster and less detailed CPU.
|
|
# The boot takes a while, be patient young Padawan.
|
|
eval "$cmd"
|
|
|
|
printf 'n cycles\n' > "$outfile"
|
|
for n in 1000 10000 100000; do
|
|
# Restore the most recent checkpoint taken with the more detailed and slower HPI CPU,
|
|
# and run the benchmark with different parameters. We skip the boot completely, saving time!
|
|
eval "${cmd} --gem5-readfile 'dhrystone ${n}' ${restore}" &>/dev/null
|
|
printf "${n} " >> "$outfile"
|
|
./gem5-stat -a "$arch" >> "$outfile"
|
|
done
|