Powerful .NET library for benchmarking
Перейти к файлу
Andrey Akinshin a9403a9693 Fix warnings 2016-08-13 02:22:44 +03:00
.nuget
build spliting BenchmarkDotNet.dll to few dlls to avoid mandatory Roslyn dependency, fixes #225 2016-07-18 02:25:28 +02:00
docs docs improvements 2016-08-11 19:17:23 +03:00
samples Add support of Cleanup attribute, fix #215 2016-07-23 16:04:51 +02:00
src Fix warnings 2016-08-13 02:22:44 +03:00
tests Fix warnings 2016-08-13 02:22:44 +03:00
.gitignore Added Api docs generation directives 2016-08-11 14:30:49 +02:00
BenchmarkDotNet.sln spliting BenchmarkDotNet.dll to few dlls to avoid mandatory Roslyn dependency, fixes #225 2016-07-18 02:25:28 +02:00
BenchmarkDotNet.sln.DotSettings minor cleanup: rename LLVM => Llvm, remove [Obsolete] things 2016-07-18 19:29:50 +02:00
LICENSE.md Update year in LICENSE.md 2016-05-29 12:29:07 +03:00
NuGet.Config
README.md Update README.md 2016-08-11 17:04:38 +03:00
appveyor.yml spliting BenchmarkDotNet.dll to few dlls to avoid mandatory Roslyn dependency, fixes #225 2016-07-18 02:25:28 +02:00
global.json Suggestion: clean up the root folder, fixes #228 2016-07-13 00:32:22 +02:00
runClassicTests.cmd Suggestion: clean up the root folder, fixes #228 2016-07-13 00:32:22 +02:00
runCoreTests.cmd Suggestion: clean up the root folder, fixes #228 2016-07-13 00:32:22 +02:00
strongNameKey.snk

README.md

BenchmarkDotNet is a powerful .NET library for benchmarking.

NuGet Gitter Build status License Documentation ChangeLog

Summary

  • Standard benchmarking routine: generating an isolated project per each benchmark method; auto-selection of iteration amount; warmup; overhead evaluation; statistics calculation; and so on.
  • Easy way to compare different environments (x86 vs x64, LegacyJit vs RyuJit, and so on; see: Jobs)
  • Reports: markdown (default, github, stackoverflow), csv, html, plain text; png plots.
  • Advanced features: Baseline, Params
  • Powerful diagnostics based on ETW events (see BenchmarkDotNet.Diagnostics.Windows)
  • Supported runtimes: Full .NET Framework, .NET Core (RTM), Mono
  • Supported languages: C#, F# (also on .NET Core) and Visual Basic
  • Supported OS: Windows, Linux, MacOS

Quick start