up vote 8 down vote favorite
2
share [g+] share [fb]

Does anyone know if the HiPerfTimer or the StopWatch class is better for benchmarking, and why?

link|improve this question

feedback

3 Answers

up vote 9 down vote accepted

Stopwatch is based on High resolution timer (where available), you can check that with IsHighResolution

link|improve this answer
feedback

They are the same when it comes to high resolution timing.

Both use this:

[DllImport("Kernel32.dll")]
private static extern bool QueryPerformanceCounter(out long PerformanceCount);

and this:

[DllImport("Kernel32.dll")]
private static extern bool QueryPerformanceFrequency(out long Frequency);

to do the underlying timing. (You can verify this with Reflector.NET). I'd use StopWatch because it's part of the framework already (no need to link another dll) and it had better features than HiPerfTimer.

link|improve this answer
3  
Yes- however the StopWatch is actually superior because it has a fallback option. The HiPerfTimer throws an Win32Exception if a high performance counter is not supported. – RichardOD Sep 28 '09 at 7:46
1  
Yes I eventually gave up on HiPerfTimer. The article on CodeProject is a little flimsy (but the idea was good). I also recommended StopWatch, it's more robust and will has a default when QueryPerformanceFrequency fails, which is linked to the IsHighResolution mentioned by Shay. – ParmesanCodice Sep 28 '09 at 7:50
feedback

StopWatch- it also works on systems that don't support a high resolution performance counter and you don't need any external libraries to use it.

The other one throws an Win32Exception if there is no support for a high resolution counter.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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