vote up 3 vote down star
2

I'm interested in learning the best practices for benchmarking in .NET. What are the guidelines for setting up a valid benchmark test? How does one determine that their test is good enough to extract meaningful data from to compare results?

I've searched and although there are some examples of benchmark tests, I haven't found anything as comprehensive as this question.

On the surface these questions might sound basic but what I'm after is a better understanding of how to approach benchmark testing beyond "use the Stopwatch class and run your test X times." I want to know what value of X is sufficient. In addition, what's an optimum (or minimum) number of collection items to use when benchmarking functionality that utilizes collections (ie. lists, arrays, etc.)?

For example, I see different values of X chosen:

  1. Rico Mariani: 20 list items, loops 50 times
  2. Jon Skeet
  3. Marc Gravell

Given these variations, one may deduce that the number of items or number of loops alone don't matter, so long as together they're contributing to extending the period of time for which the benchmark is run. Stated differently, running it "long enough" to yield meaningful results is the desired goal. Granted, "long enough" is ambiguious.

Misc. Considerations

Here are some miscellaneous benchmarking considerations I've gathered, with questions attached.

  1. IDE: run in release mode for optimized code -- is there any reason to favor the command prompt over the IDE that's not immediately apparent?

  2. Command prompt: compile using /o+ /debug- (enable optimizations, disable emission of debug info, respectively)

  3. Warming up the JIT: what is the correct way to achieve this? Is it done by running the benchmark application X times before the final run that you'll use to collect data? Or is the application run exactly once, with the warmup benchmarks (throw away trials) performed prior to actual runs? Marc did the latter (as mentioned earlier) and I believe keeping it all together is the correct approach.

  4. GC.Collect before each run. Necessary? Why or why not? I saw Jon Skeet do this here (although he doesn't always do this in other posts).

SQL Benchmarking:

Are there any considerations and pointers when trying CRUD operations against the database? For example, would you DELETE a bunch of records once and time that? How would you repeat the test? Would you pause the stopwatch while rolling back using a transaction or re-inserting records, then unpause, repeating for X iterations?

Unlike regular collections that can be looped over 50 times, certain DB operations might be trickier to setup, due to data modification.


I figured a CW would be best to allow people to address certain issues since there are multiple questions here. Feel free to address other related issues I didn't cover.

Thanks for reading and thanks in advance for responding! :)

EDIT: although this should apply to any .NET language, I updated the tags for better coverage.

flag
Something to keep in mind if you're planning on publishing results: msdn.microsoft.com/en-us/library/… – Richard Nienaber Oct 31 at 21:58
@damagednoob: good to know, thanks for the link! – Ahmad Mageed Nov 1 at 3:06

2 Answers

vote up 0 vote down

Responding to my own question... some common sense things to keep in mind:

  • Measure with consistency: use the same number of loops and items when comparing different techniques (unless the purpose of your test is to measure differences related to number of items).

  • LINQ: remember its deferred nature and ensure that query results are actually returned by calling ToList(), ToArray(), Single(), etc. otherwise the results will incorrectly appear to be lightning fast because the query was never executed.

link|flag
vote up 2 vote down

A few misc thoughts about .NET benchmarking:

  • A single execution should be enough to "warm up" the JIT.
  • GC.Collects should attempt to model real-life scenarios. After all, a benchmark which models artificial circumstances is not always relevant. If you're attempting to model 100,000 independent executions, consider a GC.Collect before them. If you're attempting to model 100,000 sequential executions, give the GC free will.
  • As well as executing a code-path X times, consider executing the code-path repeatedly over an N-length period of time - if it better models a real-life scenario. In other words, "How many times will this execute in five minutes."
link|flag
That's a good point on timed execution, depending on the scenario. – Ahmad Mageed Nov 1 at 3:10

Your Answer

Get an OpenID
or

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