7 lines
221 B
Bash
7 lines
221 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
rm perf.data; perf record -e L1-dcache-load-misses:u -c 1000 -g -- ./ypsu.out
|
||
|
|
perf script | FlameGraph/stackcollapse-perf.pl > out.perf-folded
|
||
|
|
FlameGraph/flamegraph.pl out.perf-folded > perf.svg
|
||
|
|
brave perf.svg
|