diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2023-05-30 16:32:47 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2023-05-30 16:32:47 +0200 |
commit | ecf6521037c5a9340b137e3bf5df87790c33c58a (patch) | |
tree | 778fa7b9069e10aa6050f7bd896f606d4cfa9293 /VA/baselines/cpu/run-opti.sh | |
parent | f167444c7acf9d0a558b076681c821915f6781b4 (diff) |
VA: new dfatool format; -O and reproduction benchmarks
Diffstat (limited to 'VA/baselines/cpu/run-opti.sh')
-rwxr-xr-x | VA/baselines/cpu/run-opti.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/VA/baselines/cpu/run-opti.sh b/VA/baselines/cpu/run-opti.sh new file mode 100755 index 0000000..0a3a4a3 --- /dev/null +++ b/VA/baselines/cpu/run-opti.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +HOST="$(hostname)" + +echo $HOST + +make clean + +make run_O0 | sed 's/CPU/CPU O0/' | tee "${HOST}-O0.txt" + +make run_O2 | sed 's/CPU/CPU O2/' | tee "${HOST}-O2.txt" |