8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb8436 commit 7034390Copy full SHA for 7034390
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