|
26 | 26 |
|
27 | 27 | **BenchmarkDotNet** helps you to transform methods into benchmarks, track their performance, and share reproducible measurement experiments.
|
28 | 28 | It's no harder than writing unit tests!
|
29 |
| -Under the hood, it performs a lot of [magic](#Automation) that guarantees [reliable and precise](#Reliability) results. |
| 29 | +Under the hood, it performs a lot of [magic](#Automation) that guarantees [reliable and precise](#Reliability) results thanks to the [perfolizer](https://github.com/AndreyAkinshin/perfolizer) statistical engine. |
30 | 30 | BenchmarkDotNet protects you from popular benchmarking mistakes and warns you if something is wrong with your benchmark design or obtained measurements.
|
31 | 31 | The results are presented in a [user-friendly](#Friendliness) form that highlights all the important facts about your experiment.
|
32 |
| -The library is adopted by [3500+ projects](#who-use-benchmarkdotnet) including .NET Core and supported by the [.NET Foundation](https://dotnetfoundation.org). |
| 32 | +The library is adopted by [3800+ projects](#who-use-benchmarkdotnet) including .NET Runtime and supported by the [.NET Foundation](https://dotnetfoundation.org). |
33 | 33 |
|
34 | 34 | It's [easy](#Simplicity) to start writing benchmarks, check out an example
|
35 | 35 | (copy-pastable version is [here](https://benchmarkdotnet.org/articles/guides/getting-started.html)):
|
@@ -107,7 +107,7 @@ The measured data can be exported to different formats (md, html, csv, xml, json
|
107 | 107 |
|
108 | 108 | 
|
109 | 109 |
|
110 |
| -*Supported runtimes:* .NET Framework 4.6.1+, .NET Core 2.0+, Mono, CoreRT |
| 110 | +*Supported runtimes:* .NET 5+, .NET Framework 4.6.1+, .NET Core 2.0+, Mono, CoreRT |
111 | 111 | *Supported languages:* C#, F#, Visual Basic
|
112 | 112 | *Supported OS:* Windows, Linux, macOS
|
113 | 113 |
|
@@ -236,7 +236,7 @@ If you don't customize the summary view,
|
236 | 236 | ## Who use BenchmarkDotNet?
|
237 | 237 |
|
238 | 238 | Everyone!
|
239 |
| -BenchmarkDotNet is already adopted by more than [3500+](https://github.com/dotnet/BenchmarkDotNet/network/dependents?package_id=UGFja2FnZS0xNTY3MzExMzE%3D) projects including |
| 239 | +BenchmarkDotNet is already adopted by more than [3800+](https://github.com/dotnet/BenchmarkDotNet/network/dependents?package_id=UGFja2FnZS0xNTY3MzExMzE%3D) projects including |
240 | 240 | [dotnet/performance](https://github.com/dotnet/performance) (reference benchmarks for all .NET Runtimes),
|
241 | 241 | [dotnet/runtime](https://github.com/dotnet/runtime/issues?utf8=%E2%9C%93&q=BenchmarkDotNet) (.NET Core runtime and libraries),
|
242 | 242 | [Roslyn](https://github.com/dotnet/roslyn/search?q=BenchmarkDotNet&type=Issues&utf8=✓) (C# and Visual Basic compiler),
|
@@ -266,11 +266,12 @@ BenchmarkDotNet is already adopted by more than [3500+](https://github.com/dotne
|
266 | 266 | [LiteDB](https://github.com/mbdavid/LiteDB/tree/master/LiteDB.Benchmarks),
|
267 | 267 | [GraphQL for .NET](https://github.com/graphql-dotnet/graphql-dotnet/tree/master/src/GraphQL.Benchmarks),
|
268 | 268 | [MediatR](https://github.com/jbogard/MediatR/tree/master/test/MediatR.Benchmarks),
|
269 |
| - [TensorFlow.NET](https://github.com/SciSharp/TensorFlow.NET/tree/master/src/TensorFlowNet.Benchmarks). |
| 269 | + [TensorFlow.NET](https://github.com/SciSharp/TensorFlow.NET/tree/master/src/TensorFlowNet.Benchmarks), |
| 270 | + [Apache Thrift](https://github.com/apache/thrift/tree/master/lib/netstd/Benchmarks/Thrift.Benchmarks). |
270 | 271 | On GitHub, you can find
|
271 |
| - 2500+ [issues](https://github.com/search?o=desc&q=BenchmarkDotNet+-repo:dotnet%2FBenchmarkDotNet&s=created&type=Issues&utf8=✓), |
272 |
| - 1500+ [commits](https://github.com/search?o=desc&q=BenchmarkDotNet+-repo:dotnet%2FBenchmarkDotNet&s=committer-date&type=Commits&utf8=✓), and |
273 |
| - 450,000+ [files](https://github.com/search?o=desc&q=BenchmarkDotNet+-repo:dotnet%2FBenchmarkDotNet&s=indexed&type=Code&utf8=✓) |
| 272 | + 3000+ [issues](https://github.com/search?o=desc&q=BenchmarkDotNet+-repo:dotnet%2FBenchmarkDotNet&s=created&type=Issues&utf8=✓), |
| 273 | + 1800+ [commits](https://github.com/search?o=desc&q=BenchmarkDotNet+-repo:dotnet%2FBenchmarkDotNet&s=committer-date&type=Commits&utf8=✓), and |
| 274 | + 500,000+ [files](https://github.com/search?o=desc&q=BenchmarkDotNet+-repo:dotnet%2FBenchmarkDotNet&s=indexed&type=Code&utf8=✓) |
274 | 275 | that involve BenchmarkDotNet.
|
275 | 276 |
|
276 | 277 | ## Learn more about benchmarking
|
|
0 commit comments