Reputation: 3807
Imagine i have a program doing a lot of things wasting about 90% of CPU. I need a way to know (through visual studio) where the program are wasting CPU.
Upvotes: 1
Views: 175
Reputation: 5085
You can also use Rational Purify Plus: it includes a tool to analyze CPU utilization (it was previously sold separately as Rational Quantify).
Upvotes: 0
Reputation: 12499
Take a look at the Visual Studio Profiler.
You can get performance reports that show which functions are most expensive CPU-wise.
Upvotes: 1