Added CPU metrics {Cache, FLOPS, L2, L3}, restructured resource folders

This commit is contained in:
Maximilian Gaul 2022-01-05 12:31:47 +01:00
parent 8c131a7699
commit 4690542db5
2 changed files with 11 additions and 5 deletions

View File

@ -1,8 +1,8 @@
#!/bin/bash END=32
for i in $(seq 1 32); do for ((i=1;i<=END;i++)); do
echo "$i" output=$(eval "likwid-mpirun -np 1 -t $i -m -g FLOPS_DP -omp gnu ./MDBench-GCC -n 50")
export "OMP_NUM_THREADS=$i" echo -n "$i,"
./MDBench-GCC -n 50 | grep "Performance" echo "$output" > "FLOPS_DP/thread_$i.txt"
done done
## likwid perf measurements on testfront1: ## likwid perf measurements on testfront1:

6
evaluate_cpu_runtime.sh Normal file
View File

@ -0,0 +1,6 @@
#!/bin/bash
for i in $(seq 1 32); do
echo "$i"
export "OMP_NUM_THREADS=$i"
./MDBench-GCC -n 50 | grep "Performance"
done