We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9fb8436 + 7034390 commit 6236806Copy full SHA for 6236806
src/perf_tests/BaselineComparisonConfig.cs
@@ -5,6 +5,7 @@
5
6
using BenchmarkDotNet.Configs;
7
using BenchmarkDotNet.Jobs;
8
+using BenchmarkDotNet.Horology;
9
10
namespace Python.PerformanceTests
11
{
@@ -18,7 +19,11 @@ public BaselineComparisonConfig()
18
19
20
string deploymentRoot = BenchmarkTests.DeploymentRoot;
21
- var baseJob = Job.Default;
22
+ var baseJob = Job.Default
23
+ .WithLaunchCount(1)
24
+ .WithWarmupCount(3)
25
+ .WithMaxIterationCount(100)
26
+ .WithIterationTime(TimeInterval.FromMilliseconds(100));
27
this.Add(baseJob
28
.WithId("baseline")
29
.WithEnvironmentVariable(EnvironmentVariableName,
0 commit comments