vote up 3 vote down star
2

I need to do some performance benchmarks on .NET programs (C#) in Windows, but I haven't done benchmarking much in the Windows world. I've looked into using the Windows 2000/XP Performance monitor with custom counters for this, but I don't think this is quite what I want.

Are there any good system facilities for this in Windows XP, or do I need to just use System.Diagnostics.Stopwatch [edit] and write text logs for manual interpretation, or is there something else?

Edit: is there anything beyond System.Diagnostics.Stopwatch?

flag

70% accept rate
So that other people can benefit from additional answers, I think it would be better for you to reopen the question. – crosstalk Sep 28 '08 at 3:26
Aggh, another lesson in parallelism gone wrong... – crosstalk Sep 28 '08 at 3:26
@Michael Ratanapintha: care to elaborate? – Ben Collins Sep 28 '08 at 3:30
When I started writing my first comment, the question was still closed, but when I posted it, you had reopened it. – crosstalk Sep 28 '08 at 3:32
Oh, ok. I just closed it so I could make a quick edit to prevent a flood of "use Stopwatch!" comments. I already knew about Stopwatch. – Ben Collins Sep 28 '08 at 3:37

5 Answers

vote up 2 vote down check

For micro-benchmarking I really like MeasureIt (can be downloaded from http://msdn.microsoft.com/en-us/magazine/cc500596.aspx). It is a test project written by Vance Morrison a Performance Architect on the CLR. It currently has a good set of benchmarks for a number of .Net/CLR core methods. The best part of it is that it is trivial to tweak and add new benchmarks for whatever you would like to test. Simply run "MeasureIt /edit" and it will launch VS with the project for itself so that you can view how those benchmarks are written and add new ones in a similar fashion if you like.

As already been stated StopWatch is probably the easiest way to do this and MeasureIt uses StopWatch underneath for its timings but it also does some other things like running a block of code X times and then providing you stats for the runs and what not.

link|flag
vote up 1 vote down

If you want just some quick numbers, you can use Powershell to time overall execution. Use the measure-command cmdlet. It's roughly equivalent to "time" in Unix.

> measure-command { your.exe arg1 }

Days              : 0
Hours             : 0
Minutes           : 0
Seconds           : 4
Milliseconds      : 996
Ticks             : 49963029
TotalDays         : 5.78275798611111E-05
TotalHours        : 0.00138786191666667
TotalMinutes      : 0.083271715
TotalSeconds      : 4.9963029
TotalMilliseconds : 4996.3029
link|flag
vote up 2 vote down

There are quite a few profilers out there. Here are some of the ones I know of:

Red Gate's ANTS (http://www.red-gate.com/products/ants_profiler/index.htm)
Yourkit's .Net Profiler (http://www.yourkit.com/dotnet/download/index.jsp)
JetBrains dotTrace 9http://www.jetbrains.net/confluence/display/NetProf/Home)

If you go on with using System.Diagnostics.Stopwatch, you will be able to instrument and measure only particular points of your code, where you explicitly put the Start/Stop around. This is good enough for measuring specific pieces, like a tight loop or things like that, but it's not going to give you a complete picture of where your program spends most of its time.

link|flag
vote up 3 vote down

This may not be what you want, but dotTrace offers many useful diagnostics and is integrated into Visual Studio.

link|flag
vote up 2 vote down
using System.Diagnostics;
....

Stopwatch sw = new Stopwatch();

sw.Start();

// Stuff you want to time...

sw.Stop();

Console.WriteLine("Took " + sw.ElapsedTicks + " Ticks");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.