Added CPU metrics {Cache, FLOPS, L2, L3}, restructured resource folders
This commit is contained in:
parent
8c131a7699
commit
4690542db5
@ -1,8 +1,8 @@
|
||||
#!/bin/bash
|
||||
for i in $(seq 1 32); do
|
||||
echo "$i"
|
||||
export "OMP_NUM_THREADS=$i"
|
||||
./MDBench-GCC -n 50 | grep "Performance"
|
||||
END=32
|
||||
for ((i=1;i<=END;i++)); do
|
||||
output=$(eval "likwid-mpirun -np 1 -t $i -m -g FLOPS_DP -omp gnu ./MDBench-GCC -n 50")
|
||||
echo -n "$i,"
|
||||
echo "$output" > "FLOPS_DP/thread_$i.txt"
|
||||
done
|
||||
|
||||
## likwid perf measurements on testfront1:
|
6
evaluate_cpu_runtime.sh
Normal file
6
evaluate_cpu_runtime.sh
Normal 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
|
Loading…
Reference in New Issue
Block a user