BenchmarkDotNet icon indicating copy to clipboard operation
BenchmarkDotNet copied to clipboard

Powerful .NET library for benchmarking

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

Hello! Looking to get my feet wet contributing to open source. I've made changes here that should fix #1839. This will escape the pipe `` | `` character in markdown...

Hi. I'm trying to benchmark two simple functions, where "Global_Var" strings with ~30 characters each. ``` Public Function SB1() As String Public_StringBuilder.Clear() Public_StringBuilder.Append(Global_Var1) Public_StringBuilder.Append(Global_Var2) Public_StringBuilder.Append(Global_Var3) Public_StringBuilder.Append("apeas um teste de troca...

In my benchmark project I developed a small framework to improve fluent configuration of benchmarks. With this improvements I can configure benchmark like this ```c# var pointHitTestJob = CreateJob(); var...

Hello, I would like to add additional data to the existing JSON BenchmarkDotNet report, but there is currently no possibility to enrich the report. That's why I separated `ExportToLog` into...

We use BenchmarkDotNet in an FDA-regulated environment to design and develop a medical device. We have to account for all of the off-the-shelf (OTS) components. We are responsible for understanding...

question

When benchmarking multiple types with `--join` option, the resulting table does not group by types, and `Ratio` is completely messed up. ``` | Type | Method | Pending | Mean...

Some may wonder how to solve for the thread priority exception when optimizations validator is enabled. If you run with `sudo` or as a privileged user, it obviously solves this,...

Requested [here](https://github.com/dotnet/BenchmarkDotNet/issues/2026#issuecomment-1169003153).

With all the data that any benchmark gets as results and the amount of times operations tend to be executed, its not a bad idea to also allow outputting this...

enhancement
up-for-grabs
Area:Exporters
help wanted
good first issue

hi, I want to compare some EDM lib's performance (i.e. automapper.data and dapper). So I created a quite simple test: using (var conn = new SqlConnection(@"xxxx")) { conn.Open(); using (var...

question