Skip to content

Commit 271f741

Browse files
authored
Increase Sorting invocations per iteration by 10x, since the benchmark currently runs each iteration in 10ms or so.
1 parent 2a7df65 commit 271f741

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Span
1414
[InvocationCount(InvocationsPerIteration)]
1515
public class Sorting
1616
{
17-
private const int InvocationsPerIteration = 1000;
17+
private const int InvocationsPerIteration = 10_000;
1818

1919
[Params(Utils.DefaultCollectionSize)]
2020
public int Size;

0 commit comments

Comments
 (0)