BenchmarkDotNet icon indicating copy to clipboard operation
BenchmarkDotNet copied to clipboard

Powerful .NET library for benchmarking

Results 309 BenchmarkDotNet issues
Sort by recently updated
recently updated
newest added

Let's say I have a `Library` project that targets `net5.0` and `netstandard2.0`, and a `Benchmarks` project that references it. I could use the following configuration to benchmark the two TFMs:...

Today in order to compare runtimes, I need to build against a single runtime (the lowest common denominator) with -f and then I can execute against multiple runtimes with --runtimes....

Adding the EventPipeProfiler diagnoser to a benchmark and executing benchmarks in-process causes the diagnoser to never finish, appearing as the entire benchmark session has hung. This can be reproduced with...

Area:Diagnosers

Hello, We have recently started exploring BenchmarkDotNet and we would like to set it up in our CI workflow (JetBrains TeamCity). We are mainly interested in CPU and memory consumption...

I am trying benchmark the difference between two different versions(x86 and x64) of the same library. I have tried to do it with the WithCustomBuildConfiguration like explained [here.](https://github.com/abelbraaksma/StringLength-Optimization/pull/2). I have...

Various characters (e.g. `|`) if used in a Params will end up invalidating the generated markdown, causing it to render incorrectly. It'd be helpful if benchmarkdotnet could escape the markdown...

bug
up-for-grabs
Area:Exporters
good first issue

It's a tiny thing, and while I don't know about the whole TA of BDN, but in my opinion, when benching locally it's more convenient to open html than markdown...

For sharing simple results, in a blog post or the like, I don't want to show error, standard deviation, ratio standard deviation, median, nor do I want to show job...

The `Job` and `Toolchain` columns are redundant, `Runtime` is all we need: ![obraz](https://user-images.githubusercontent.com/6011991/99952390-defab180-2d7f-11eb-851c-ffef6fbb0647.png) I see this very often when our users are presenting BDN results at conferences|meetups etc The `Job`...

up-for-grabs
good first issue

Hi. I try to benchmark some collection operation like Add on List. For example, I want to benchmark List.Add on different size of pre-populated collection to show difference in Capacity...