Zé Carlos
Zé Carlos

Reputation: 3807

How to Profile the CPU Activity of a Visual Studio Program

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

Answers (2)

Xavier Nodet
Xavier Nodet

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

Andy West
Andy West

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

Related Questions