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
|
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
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