2017-10-20 23:14:29 +05:30
|
|
|
# perf
|
|
|
|
|
|
|
|
> Framework for linux performance counter measurements.
|
|
|
|
|
2017-10-21 16:07:00 +05:30
|
|
|
- Display basic performance counter stats for a command `gcc -c -O3 hello.c`:
|
2017-10-20 23:14:29 +05:30
|
|
|
|
2017-10-21 16:07:00 +05:30
|
|
|
`perf stat {{gcc -c -O3 hello.c}}`
|
2017-10-20 23:14:29 +05:30
|
|
|
|
|
|
|
- Display system-wide real time performance counter profile:
|
|
|
|
|
|
|
|
`sudo perf top`
|
|
|
|
|
2017-10-21 16:07:00 +05:30
|
|
|
- Run a command and record its profile into "perf.data":
|
2017-10-20 23:14:29 +05:30
|
|
|
|
|
|
|
`sudo perf record {{command}}`
|
|
|
|
|
2017-10-21 16:07:00 +05:30
|
|
|
- Read "perf.data" (created by `perf record`) and display the profile:
|
2017-10-20 23:14:29 +05:30
|
|
|
|
|
|
|
`sudo perf report`
|