Skip to content

Commit 2f2096f

Browse files
committed
[benchmark] ProtocolDispatch resized & re-enabled
1 parent 9bfe208 commit 2f2096f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

benchmark/single-source/ProtocolDispatch.swift

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@ import TestsUtils
1515
public let ProtocolDispatch = BenchmarkInfo(
1616
name: "ProtocolDispatch",
1717
runFunction: run_ProtocolDispatch,
18-
tags: [.validation, .abstraction, .unstable])
18+
tags: [.validation, .abstraction])
1919

2020
@inline(never)
2121
public func run_ProtocolDispatch(_ N: Int) {
2222

2323
let x = someProtocolFactory()
2424

25-
for _ in 0...1000000 * N {
25+
for _ in 0...100_000 * N {
2626
_ = x.getValue()
2727
}
2828
}
29-

0 commit comments

Comments
 (0)