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:
- Rico Mariani: 20 list items, loops 50 times
- Jon Skeet
- Question link - 10,000,000 items, loops 50 times
- BenchmarkHelper Demo - 5 array items, loops scaled behind the scenes for best results etc.
- Another question link - 1,000,000 items, loops 10,000 times
- Marc Gravell
- Question link - 6,000,000 items, loops 100 times
- Another question link - JIT warmup 5 times, loops 100,000,000 times
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.
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?
Command prompt: compile using /o+ /debug- (enable optimizations, disable emission of debug info, respectively)
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.
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.
