I just downloaded and built the libraries/executables of Google Performance Tools. Before I run the CPU profiler on the application that I want to investigate, I want to learn how to use the tools properly perhaps on a sample application. What would be a good example to run the Google CPU profiler on? Thanks in advance.
|
|
The following paragraph appears in the README.windows file distributed with perftools 1.3:
|
|||
|
|
In my experience, for performance tuning, stack-sampling is the method of choice. Google perftools contains a stack-sampler, and I believe its visual analyzer can be made to show the cost of individual statements, not just functions. What you need to know is the percent of time the stack contains that statement, because that is how much time would be saved if the statement were removed. |
|||
|
|