Skip to content

Commit 531ff38

Browse files
committed
[benchmark] SortLargeExistentials Legacy Factor
1 parent 44b4f0d commit 531ff38

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

benchmark/single-source/SortLargeExistentials.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ import TestsUtils
1717
public let SortLargeExistentials = BenchmarkInfo(
1818
name: "SortLargeExistentials",
1919
runFunction: run_SortLargeExistentials,
20-
tags: [.validation, .api, .algorithm])
20+
tags: [.validation, .api, .algorithm],
21+
legacyFactor: 100)
2122

2223
protocol LetterKind {
2324
var value: String { get }
@@ -74,7 +75,7 @@ let lettersTemplate : [LetterKind] = [
7475

7576
@inline(never)
7677
public func run_SortLargeExistentials(_ N: Int) {
77-
for _ in 1...100*N {
78+
for _ in 1...N {
7879
var letters = lettersTemplate
7980

8081
letters.sort {

0 commit comments

Comments
 (0)