Difference between revisions of "Profiling"

From Vlsiwiki
Jump to: navigation, search
(Created page with " To gather statistics of foo perf record -g ./foo If the benchmark is too fast and you do not have enough samples. perf record -g -A ./foo perf record -g -A ./foo ....")
 
(No difference)

Latest revision as of 00:05, 11 June 2013

To gather statistics of foo

 perf record -g ./foo

If the benchmark is too fast and you do not have enough samples.

 perf record -g -A ./foo
 perf record -g -A ./foo
 ...
 perf record -g -A ./foo
 perf record -g -A ./foo

To see the performance results

 perf report