You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#/bin/bash
|
|
|
|
# Don't forget to :
|
|
# sudo bash -c "echo 0 > /proc/sys/kernel/perf_event_paranoid"
|
|
|
|
perf record -F 20000 -g ./performance_measuring
|
|
perf script > out.perf
|
|
./FlameGraph/stackcollapse-perf.pl out.perf > out.folded
|
|
./FlameGraph/flamegraph.pl out.folded > flamegraph.svg
|