https://github.com/benjaminmichaelis/benchmarks
Different Benchmarks I've made for perf testing
https://github.com/benjaminmichaelis/benchmarks
Last synced: about 2 months ago
JSON representation
Different Benchmarks I've made for perf testing
- Host: GitHub
- URL: https://github.com/benjaminmichaelis/benchmarks
- Owner: BenjaminMichaelis
- License: mit
- Created: 2023-11-28T06:46:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-06T01:23:11.000Z (8 months ago)
- Last Synced: 2025-01-20T11:26:17.214Z (4 months ago)
- Language: C#
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Benchmark app template
This template creates a [BenchmarkDotNet](https://github.com/dotnet/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.
```cli
dotnet new bmichaelis.quickstart.benchmarkconsole
```### Parameters
[Default template options](https://learn.microsoft.com/dotnet/core/tools/dotnet-new#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.