mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-10 21:24:06 -05:00
11 lines
204 B
Bash
Executable file
11 lines
204 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [ -z "$FREQ" ] ; then FREQ=300 ; fi
|
|
|
|
perf record -F "$FREQ" --call-graph=dwarf $@
|
|
|
|
perf script \
|
|
| stackcollapse-perf --kernel \
|
|
| sed 's/caml//g' \
|
|
| flamegraph > perf.svg
|
|
|