I am using Perf tool for profiling. I need to compare multiple reports generated from perf record command. I couldn't find any option in perf to do so, is there a way for it or manual interpretation is the only way?
Asked
Active
Viewed 1,072 times
0
-
I could use that but I meant is there any perf-feature/tool available for it ? – niteshnarayanlal Mar 18 '15 at 04:33
-
(above is the answer of: Can you use a bash script. That question is deleted: it had an ugly typo) – Walter A Mar 18 '15 at 07:14
-
I am doing that, but I am looking for something else. – niteshnarayanlal Mar 18 '15 at 10:41
1 Answers
1
You can use perf diff for this purpose: perf diff [oldfile] [newfile]
Link to man page: https://linux.die.net/man/1/perf-diff

Artur Gainullin
- 11
- 1