Replies: 2 comments 5 replies
-
@sastru thanks for the report, looks like a bug. I filed an issue: #2591 |
Beta Was this translation helpful? Give feedback.
4 replies
-
If you refactor like this, you should get the expected groupings (though you will lose all the arguments in the summary table). [Benchmark(Baseline = true)]
public Task Baseline() => Impl(1028, 1028, false, OutsideQueryVariation.Default, false, null, 30);
[Benchmark]
public Task Alt1() => Impl(1028, 1028, false, OutsideQueryVariation.Default, false, 192, 30);
[Benchmark]
public Task Alt2() => Impl(1028, 1030, true, OutsideQueryVariation.Default, false, null, 30);
private async Task Impl(int limit, int totalCount, bool includeOutsidePoints, OutsideQueryVariation useOutsideQueryVariation, bool useMaxOutsideInterval, int? status, int timeSpanInMin)
{ ... } |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I get the warning
I suspect it is because somehow all my benchmarks are separated by a line, why? how can I fix that?
Program.cs
Benchmarks.cs
Beta Was this translation helpful? Give feedback.
All reactions