Page MenuHomec4science

run_15_times.sh
No OneTemporary

File Metadata

Created
Fri, Jul 26, 19:49

run_15_times.sh

#!/bin/bash
mkdir results_4_CPU
mkdir perf_4_CPU
for n in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
do
perf stat -e L1-dcache-load-misses,L1-dcache-loads,L1-dcache-stores,LLC-load-misses,LLC-loads,LLC-store-misses,LLC-stores,instructions,branches,branch-misses,task-clock,cache-misses,fp_arith_inst_retired.double,fp_arith_inst_retired.packed,fp_arith_inst_retired.scalar,fp_arith_inst_retired.scalar_double,fp_arith_inst_retired.scalar_single,fp_arith_inst_retired.single,fp_assist.any,other_assists.avx_to_sse,other_assists.sse_to_avx -o perf_4_CPU/perf_stats_$n.log taskset --cpu-list 15-18 python model_basic_lopo.py > results_4_CPU/out_$n.txt
done

Event Timeline