-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathMapReduce.swift
242 lines (207 loc) · 6.2 KB
/
MapReduce.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
//===--- MapReduce.swift --------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2021 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import TestsUtils
import Foundation
let t: [BenchmarkCategory] = [.validation, .algorithm]
let ts: [BenchmarkCategory] = [.validation, .algorithm, .String]
public let benchmarks = [
BenchmarkInfo(name: "MapReduce", runFunction: run_MapReduce, tags: t),
BenchmarkInfo(name: "MapReduceAnyCollection",
runFunction: run_MapReduceAnyCollection, tags: t),
BenchmarkInfo(name: "MapReduceAnyCollectionShort",
runFunction: run_MapReduceAnyCollectionShort, tags: t, legacyFactor: 10),
BenchmarkInfo(name: "MapReduceClass2",
runFunction: run_MapReduceClass, tags: t,
setUpFunction: { boxedNumbers(1000) }, tearDownFunction: releaseDecimals),
BenchmarkInfo(name: "MapReduceClassShort2",
runFunction: run_MapReduceClassShort, tags: t,
setUpFunction: { boxedNumbers(10) }, tearDownFunction: releaseDecimals),
BenchmarkInfo(name: "MapReduceNSDecimalNumber",
runFunction: run_MapReduceNSDecimalNumber, tags: t,
setUpFunction: { decimals(1000) }, tearDownFunction: releaseDecimals),
BenchmarkInfo(name: "MapReduceNSDecimalNumberShort",
runFunction: run_MapReduceNSDecimalNumberShort, tags: t,
setUpFunction: { decimals(10) }, tearDownFunction: releaseDecimals),
BenchmarkInfo(name: "MapReduceLazyCollection",
runFunction: run_MapReduceLazyCollection, tags: t),
BenchmarkInfo(name: "MapReduceLazyCollectionShort",
runFunction: run_MapReduceLazyCollectionShort, tags: t),
BenchmarkInfo(name: "MapReduceLazySequence",
runFunction: run_MapReduceLazySequence, tags: t),
BenchmarkInfo(name: "MapReduceSequence",
runFunction: run_MapReduceSequence, tags: t),
BenchmarkInfo(name: "MapReduceShort",
runFunction: run_MapReduceShort, tags: t, legacyFactor: 10),
BenchmarkInfo(name: "MapReduceShortString",
runFunction: run_MapReduceShortString, tags: ts),
BenchmarkInfo(name: "MapReduceString",
runFunction: run_MapReduceString, tags: ts),
]
#if _runtime(_ObjC)
var decimals : [NSDecimalNumber]!
func decimals(_ n: Int) {
decimals = (0..<n).map { NSDecimalNumber(value: $0) }
}
func releaseDecimals() { decimals = nil }
#else
func decimals(_ n: Int) {}
func releaseDecimals() {}
#endif
class Box {
var v: Int
init(_ v: Int) { self.v = v }
}
var boxedNumbers : [Box]!
func boxedNumbers(_ n: Int) { boxedNumbers = (0..<n).map { Box($0) } }
func releaseboxedNumbers() { boxedNumbers = nil }
@inline(never)
public func run_MapReduce(_ n: Int) {
var numbers = [Int](0..<1000)
var c = 0
for _ in 1...n*100 {
numbers = numbers.map { $0 &+ 5 }
c = c &+ numbers.reduce(0, &+)
}
check(c != 0)
}
@inline(never)
public func run_MapReduceAnyCollection(_ n: Int) {
let numbers = AnyCollection([Int](0..<1000))
var c = 0
for _ in 1...n*100 {
let mapped = numbers.map { $0 &+ 5 }
c = c &+ mapped.reduce(0, &+)
}
check(c != 0)
}
@inline(never)
public func run_MapReduceAnyCollectionShort(_ n: Int) {
let numbers = AnyCollection([Int](0..<10))
var c = 0
for _ in 1...n*1_000 {
let mapped = numbers.map { $0 &+ 5 }
c = c &+ mapped.reduce(0, &+)
}
check(c != 0)
}
@inline(never)
public func run_MapReduceShort(_ n: Int) {
var numbers = [Int](0..<10)
var c = 0
for _ in 1...n*1_000 {
numbers = numbers.map { $0 &+ 5 }
c = c &+ numbers.reduce(0, &+)
}
check(c != 0)
}
@inline(never)
public func run_MapReduceSequence(_ n: Int) {
let numbers = sequence(first: 0) { $0 < 1000 ? $0 &+ 1 : nil }
var c = 0
for _ in 1...n*100 {
let mapped = numbers.map { $0 &+ 5 }
c = c &+ mapped.reduce(0, &+)
}
check(c != 0)
}
@inline(never)
public func run_MapReduceLazySequence(_ n: Int) {
let numbers = sequence(first: 0) { $0 < 1000 ? $0 &+ 1 : nil }
var c = 0
for _ in 1...n*100 {
let mapped = numbers.lazy.map { $0 &+ 5 }
c = c &+ mapped.reduce(0, &+)
}
check(c != 0)
}
@inline(never)
public func run_MapReduceLazyCollection(_ n: Int) {
let numbers = [Int](0..<1000)
var c = 0
for _ in 1...n*100 {
let mapped = numbers.lazy.map { $0 &+ 5 }
c = c &+ mapped.reduce(0, &+)
}
check(c != 0)
}
@inline(never)
public func run_MapReduceLazyCollectionShort(_ n: Int) {
let numbers = [Int](0..<10)
var c = 0
for _ in 1...n*10000 {
let mapped = numbers.lazy.map { $0 &+ 5 }
c = c &+ mapped.reduce(0, &+)
}
check(c != 0)
}
@inline(never)
public func run_MapReduceString(_ n: Int) {
let s = "thequickbrownfoxjumpsoverthelazydogusingasmanycharacteraspossible123456789"
var c: UInt64 = 0
for _ in 1...n*100 {
c = c &+ s.utf8.map { UInt64($0 &+ 5) }.reduce(0, &+)
}
check(c != 0)
}
@inline(never)
public func run_MapReduceShortString(_ n: Int) {
let s = "12345"
var c: UInt64 = 0
for _ in 1...n*100 {
c = c &+ s.utf8.map { UInt64($0 &+ 5) }.reduce(0, &+)
}
check(c != 0)
}
@inline(never)
public func run_MapReduceNSDecimalNumber(_ n: Int) {
#if _runtime(_ObjC)
let numbers: [NSDecimalNumber] = decimals
var c = 0
for _ in 1...n*10 {
let mapped = numbers.map { $0.intValue &+ 5 }
c = c &+ mapped.reduce(0, &+)
}
check(c != 0)
#endif
}
@inline(never)
public func run_MapReduceNSDecimalNumberShort(_ n: Int) {
#if _runtime(_ObjC)
let numbers: [NSDecimalNumber] = decimals
var c = 0
for _ in 1...n*1_000 {
let mapped = numbers.map { $0.intValue &+ 5 }
c = c &+ mapped.reduce(0, &+)
}
check(c != 0)
#endif
}
@inline(never)
public func run_MapReduceClass(_ n: Int) {
let numbers: [Box] = boxedNumbers
var c = 0
for _ in 1...n*10 {
let mapped = numbers.map { $0.v &+ 5 }
c = c &+ mapped.reduce(0, &+)
}
check(c != 0)
}
@inline(never)
public func run_MapReduceClassShort(_ n: Int) {
let numbers: [Box] = boxedNumbers
var c = 0
for _ in 1...n*1_000 {
let mapped = numbers.map { $0.v &+ 5 }
c = c &+ mapped.reduce(0, &+)
}
check(c != 0)
}