Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 398 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 398 Bytes

Benchtool - dotnet core

Simple benchmark, using:

  • dotnet 7

Example usage

For the loop bench

dotnet benchtool-dotnetcore.dll 1 99999

For the recursive bench ( Uses a loot of memory (~1GB))

dotnet benchtool-dotnetcore.dll 2 99999

Params:

  1. the bench type 1 = loop, 2 = recursive
  2. the fibonacci n number to calculate
  3. the exection count ( default 5 )