/Benchmarks

Different Benchmarks I've made for perf testing

Primary LanguageC#MIT LicenseMIT

Benchmark app template

This template creates a BenchmarkDotNet solution, along with a console project with unit tests.

The point of this is so that you can easily create a benchmark project to test out different algorithms, or to test out different ways of doing things.

Startup

  • To run the benchmarks, run dotnet run -c Release in the BenchmarkApp folder.

Template

Create a new app in your current directory by running.

 dotnet new bmichaelis.quickstart.benchmarkconsole

Parameters

Default template options

Key Features

  • Should just work out of the box. Not meant to be the perfect project setup to start with, but rather a quick way to get started with benchmarking and testing out different algorithms or such.