Skip to content

Commit a3fffce

Browse files
committed
Increase Sorting invocations per iteration
Increase by 10x, since the benchmark currently runs each iteration in 10ms or so, and we'd prefer 100ms.
1 parent 8cf171a commit a3fffce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/benchmarks/micro/runtime/Span/Sorting.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Span
1616
[MinWarmupCount(6, forceAutoWarmup: true)] // when InvocationCount is set, BDN does not run Pilot Stage, so to get the code promoted to Tier 1 before Actual Workload, we enforce more Warmups
1717
public class Sorting
1818
{
19-
private const int InvocationsPerIteration = 1000;
19+
private const int InvocationsPerIteration = 10_000;
2020

2121
[Params(Utils.DefaultCollectionSize)]
2222
public int Size;

0 commit comments

Comments
 (0)