This project contains performance benchmarks.
Pre-requisite: In order to fetch dependencies which come through Git submodules the following command needs to be run before building:
git submodule update --init
Pre-requisite: On a clean repo with initalized submodules, build.cmd at the root installs the right version of dotnet.exe and builds the solution. You need to build the solution in Release with native dependencies.
build.cmd -release -buildNative
Moreover, to run some of the benchmarks you have to download external dependencies.
build.cmd -- /t:DownloadExternalTestFiles /p:IncludeBenchmarkData=true
-
Navigate to the benchmarks directory (machinelearning\test\Microsoft.ML.Benchmarks)
-
Run the benchmarks in Release, choose one of the benchmarks when prompted
dotnet run -c Release
- To run specific tests only, pass in the filter to the harness:
dotnet run -c Release -- --filter namespace*
dotnet run -c Release -- --filter *typeName*
dotnet run -c Release -- --filter *.methodName
dotnet run -c Release -- --filter namespace.typeName.methodName
- GC Statistics
To get the total number of allocated managed memory please pass additional console argument: --memory or just -m. This feature is disabled by default because it requires an additional iteration (which is expensive for time consuming benchmarks).
| Gen 0 | Gen 1 | Gen 2 | Allocated |
|---|---|---|---|
| 175000.0000 | 33000.0000 | 7000.0000 | 238.26 MB |
- To find out more about supported command line arguments run
dotnet run -c Release -- --help
Pre-requisite: Follow the netcoreapp3.0 instructions.
Pre-requisite: To use dotnet cli from the root directory remember to set DOTNET_MULTILEVEL_LOOKUP environment variable to 0!
$env:DOTNET_MULTILEVEL_LOOKUP=0
-
Navigate to the benchmarks directory (machinelearning\test\Microsoft.ML.Benchmarks)
-
Run the benchmarks in
Release-Intrinsicsconfiguration, choose one of the benchmarks when prompted
..\..\Tools\dotnetcli\dotnet.exe run -c Release-Intrinsics
- The type which contains benchmark(s) has to be a public, non-sealed, non-static class.
- Put the initialization logic into a separate public method with
[GlobalSetup]attribute. You can useTargetproperty to make it specific for selected benchmark. Example:[GlobalSetup(Target = nameof(MakeIrisPredictions))]. - Put the benchmarked code into a separate public method with
[Benchmark]attribute. If the benchmark method computes some result, please return it from the benchmark. Harness will consume it to avoid dead code elimination. - If given benchmark is a Training benchmark, please apply
[Config(typeof(TrainConfig))]to the class. It will tell BenchmarkDotNet to run the benchmark only once in a dedicated process to mimic the real-world scenario for training.
Examples:
public class NonTrainingBenchmark
{
[GlobalSetup(Target = nameof(TheBenchmark))]
public void Setup() { /* setup logic goes here */ }
[Benchmark]
public SomeResult TheBenchmark() { /* benchmarked code goes here */ }
}
[Config(typeof(TrainConfig))]
public class TrainingBenchmark