Skip to content

Commit 377eb13

Browse files
committed
---
yaml --- r: 278521 b: refs/heads/swift-5.1-old-llvm-branch c: b7f6813 h: refs/heads/master i: 278519: f854f03
1 parent 32c8868 commit 377eb13

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1241,7 +1241,7 @@ refs/tags/swift-DEVELOPMENT-SNAPSHOT-2019-01-24-a: b6f62823aa5010b2ae53f15f72a57
12411241
refs/heads/marcrasi-astverifier-disable: 3fac766a23a77ebd0640296bfd7fc116ea60a4e0
12421242
refs/heads/revert-22227-a-tall-white-fountain-played: adfce60b2eaa54903ea189bed8a783bca609fa53
12431243
refs/heads/revert-22300-revert-22227-a-tall-white-fountain-played: 5f92040224df7dd4e618fdfb367349df64d8acad
1244-
refs/heads/swift-5.1-old-llvm-branch: 6195afcda0b0a8f26a7d795833dde3cf62ee8d36
1244+
refs/heads/swift-5.1-old-llvm-branch: b7f6813816ce50c8a17598c6b89171bcce7a1faa
12451245
refs/heads/swift-5.1-branch: 8060872acb4105d9655e020fe047e1ebcd77d0fb
12461246
refs/tags/swift-4.2.2-RELEASE: e429d1f1aaf59e69d38207a96e56265c7f6fccec
12471247
refs/tags/swift-5.0-DEVELOPMENT-SNAPSHOT-2019-02-02-a: 3e5a03d32ff3b1e9af90d6c1198c14f938379a6e

branches/swift-5.1-old-llvm-branch/benchmark/single-source/ArrayInClass.swift

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ public let ArrayInClass = [
1717
runFunction: run_ArrayInClass,
1818
tags: [.validation, .api, .Array],
1919
setUpFunction: { ac = ArrayContainer() },
20-
tearDownFunction: { ac = nil }),
20+
tearDownFunction: { ac = nil },
21+
legacyFactor: 5),
2122
BenchmarkInfo(name: "DistinctClassFieldAccesses",
2223
runFunction: run_DistinctClassFieldAccesses,
23-
tags: [.unstable, .api, .Array],
24-
setUpFunction: { workload = ClassWithArrs(N: 100_000) },
24+
tags: [.validation, .api, .Array],
25+
setUpFunction: { workload = ClassWithArrs(N: 10_000) },
2526
tearDownFunction: { workload = nil }),
2627
]
2728

@@ -31,7 +32,7 @@ class ArrayContainer {
3132
final var arr : [Int]
3233

3334
init() {
34-
arr = [Int] (repeating: 0, count: 100_000)
35+
arr = [Int] (repeating: 0, count: 20_000)
3536
}
3637

3738
func runLoop(_ N: Int) {

0 commit comments

Comments
 (0)