From aacf0527a5ed4ef76be02243e011fb9c8bdcf319 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Tue, 7 Jan 2025 16:50:03 +0100 Subject: BS, GEMV, TRNS, TS, VA: Add basic perf stats To Do: Right now, the stats include benchmark setup. They should not. --- TS/baselines/cpu/run-perf.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 TS/baselines/cpu/run-perf.sh (limited to 'TS/baselines/cpu') diff --git a/TS/baselines/cpu/run-perf.sh b/TS/baselines/cpu/run-perf.sh new file mode 100755 index 0000000..453b64b --- /dev/null +++ b/TS/baselines/cpu/run-perf.sh @@ -0,0 +1,8 @@ +#!/bin/zsh + +make -B NUMA=1 + +for i in $(seq 1 20); do + OMP_NUM_THREADS=1 perf stat record -o t1.${i}.perf -e ${(j:,:):-$(grep -v '^#' ../../../perf-events.txt | cut -d ' ' -f 1)} ./streamp_openmp inputs/randomlist10M.txt 256 4 4 + OMP_NUM_THREADS=4 perf stat record -o t4.${i}.perf -e ${(j:,:):-$(grep -v '^#' ../../../perf-events.txt | cut -d ' ' -f 1)} ./streamp_openmp inputs/randomlist10M.txt 256 4 4 +done -- cgit v1.2.3