diff --git a/test/Hyperbee.Expressions.Benchmark/AsyncBenchmarks.cs b/test/Hyperbee.Expressions.Benchmark/AsyncBenchmarks.cs index 92f8577..67c876b 100644 --- a/test/Hyperbee.Expressions.Benchmark/AsyncBenchmarks.cs +++ b/test/Hyperbee.Expressions.Benchmark/AsyncBenchmarks.cs @@ -68,7 +68,6 @@ public void Setup() _preRunCompiled = _lambda.Compile(); _preRunFastCompiled = _lambda.CompileFast(); _preRunNextCompiled = _nextlambda.Compile(); - //_preRunFastNextCompiled = _nextlambda.CompileFast(); Warmup( _preRunCompiled, _preRunFastCompiled, _preRunNextCompiled ); @@ -96,7 +95,7 @@ public void Hyperbee_AsyncBlock_Compile() } [BenchmarkCategory( "Compile" )] - [Benchmark( Description = "Hyperbee Fast Compile" )] + [Benchmark( Description = "Hyperbee Fast Compile", Baseline = true )] public void Hyperbee_AsyncBlock_FastCompile() { _lambda.CompileFast(); @@ -112,7 +111,7 @@ public void DotNext_AsyncLambda_Compile() // Execute [BenchmarkCategory( "Execute" )] - [Benchmark( Description = "Native Execute" )] + [Benchmark( Description = "Native Execute", Baseline = true )] public async Task Native_Async_Execute() { await NativeTestAsync();