summaryrefslogtreecommitdiff
path: root/GEMV/baselines/cpu
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2025-01-07 16:50:03 +0100
committerBirte Kristina Friesel <birte.friesel@uos.de>2025-01-07 16:50:14 +0100
commitaacf0527a5ed4ef76be02243e011fb9c8bdcf319 (patch)
tree26c7d62d8a0d3aba907749b4df3f24c13f041afb /GEMV/baselines/cpu
parent9ea6d50bc151c04a299abf2a3d50ece29a7535da (diff)
BS, GEMV, TRNS, TS, VA: Add basic perf statsHEADmain
To Do: Right now, the stats include benchmark setup. They should not.
Diffstat (limited to 'GEMV/baselines/cpu')
-rwxr-xr-xGEMV/baselines/cpu/run-perf.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/GEMV/baselines/cpu/run-perf.sh b/GEMV/baselines/cpu/run-perf.sh
new file mode 100755
index 0000000..c4274c0
--- /dev/null
+++ b/GEMV/baselines/cpu/run-perf.sh
@@ -0,0 +1,6 @@
+#!/bin/zsh
+
+make -B NUMA=1
+
+OMP_NUM_THREADS=1 perf stat record -o t1.perf -e ${(j:,:):-$(grep -v '^#' ../../../perf-events.txt | cut -d ' ' -f 1)} ./gemv 4 4 4
+OMP_NUM_THREADS=4 perf stat record -o t4.perf -e ${(j:,:):-$(grep -v '^#' ../../../perf-events.txt | cut -d ' ' -f 1)} ./gemv 4 4 4