Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public static IConfig Create(
.WithIterationTime(TimeInterval.FromMilliseconds(250)) // the default is 0.5s per iteration, which is slighlty too much for us
.WithMinIterationCount(15)
.WithMaxIterationCount(20) // we don't want to run more that 20 iterations
.WithEvaluateOverhead(true) // BDN changed the default to false; re-enable to subtract method-call overhead from results
.DontEnforcePowerPlan(); // make sure BDN does not try to enforce High Performance power plan on Windows

// See https://github.com/dotnet/roslyn/issues/42393
Expand Down
Loading