-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathDropLast.swift
245 lines (239 loc) · 6.7 KB
/
DropLast.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
243
244
245
//===--- DropLast.swift ---------------------------------------*- 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
//
//===----------------------------------------------------------------------===//
////////////////////////////////////////////////////////////////////////////////
// WARNING: This file is manually generated from .gyb template and should not
// be directly modified. Instead, make changes to DropLast.swift.gyb and run
// scripts/generate_harness/generate_harness.py to regenerate this file.
////////////////////////////////////////////////////////////////////////////////
import TestsUtils
let sequenceCount = 4096
let prefixCount = 1024
let dropCount = sequenceCount - prefixCount
let sumCount = prefixCount * (prefixCount - 1) / 2
let array: [Int] = Array(0..<sequenceCount)
public let benchmarks = [
BenchmarkInfo(
name: "DropLastCountableRange",
runFunction: run_DropLastCountableRange,
tags: [.validation, .api]),
BenchmarkInfo(
name: "DropLastSequence",
runFunction: run_DropLastSequence,
tags: [.validation, .api]),
BenchmarkInfo(
name: "DropLastAnySequence",
runFunction: run_DropLastAnySequence,
tags: [.validation, .api]),
BenchmarkInfo(
name: "DropLastAnySeqCntRange",
runFunction: run_DropLastAnySeqCntRange,
tags: [.validation, .api]),
BenchmarkInfo(
name: "DropLastAnySeqCRangeIter",
runFunction: run_DropLastAnySeqCRangeIter,
tags: [.validation, .api]),
BenchmarkInfo(
name: "DropLastAnyCollection",
runFunction: run_DropLastAnyCollection,
tags: [.validation, .api]),
BenchmarkInfo(
name: "DropLastArray",
runFunction: run_DropLastArray,
tags: [.validation, .api, .Array],
setUpFunction: { blackHole(array) }),
BenchmarkInfo(
name: "DropLastCountableRangeLazy",
runFunction: run_DropLastCountableRangeLazy,
tags: [.validation, .api]),
BenchmarkInfo(
name: "DropLastSequenceLazy",
runFunction: run_DropLastSequenceLazy,
tags: [.validation, .api]),
BenchmarkInfo(
name: "DropLastAnySequenceLazy",
runFunction: run_DropLastAnySequenceLazy,
tags: [.validation, .api]),
BenchmarkInfo(
name: "DropLastAnySeqCntRangeLazy",
runFunction: run_DropLastAnySeqCntRangeLazy,
tags: [.validation, .api]),
BenchmarkInfo(
name: "DropLastAnySeqCRangeIterLazy",
runFunction: run_DropLastAnySeqCRangeIterLazy,
tags: [.validation, .api]),
BenchmarkInfo(
name: "DropLastAnyCollectionLazy",
runFunction: run_DropLastAnyCollectionLazy,
tags: [.validation, .api]),
BenchmarkInfo(
name: "DropLastArrayLazy",
runFunction: run_DropLastArrayLazy,
tags: [.validation, .api, .Array],
setUpFunction: { blackHole(array) }),
]
@inline(never)
public func run_DropLastCountableRange(_ n: Int) {
let s = 0..<sequenceCount
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
@inline(never)
public func run_DropLastSequence(_ n: Int) {
let s = sequence(first: 0) { $0 < sequenceCount - 1 ? $0 &+ 1 : nil }
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
@inline(never)
public func run_DropLastAnySequence(_ n: Int) {
let s = AnySequence(sequence(first: 0) { $0 < sequenceCount - 1 ? $0 &+ 1 : nil })
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
@inline(never)
public func run_DropLastAnySeqCntRange(_ n: Int) {
let s = AnySequence(0..<sequenceCount)
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
@inline(never)
public func run_DropLastAnySeqCRangeIter(_ n: Int) {
let s = AnySequence((0..<sequenceCount).makeIterator())
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
@inline(never)
public func run_DropLastAnyCollection(_ n: Int) {
let s = AnyCollection(0..<sequenceCount)
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
@inline(never)
public func run_DropLastArray(_ n: Int) {
let s = array
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
@inline(never)
public func run_DropLastCountableRangeLazy(_ n: Int) {
let s = (0..<sequenceCount).lazy
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
@inline(never)
public func run_DropLastSequenceLazy(_ n: Int) {
let s = (sequence(first: 0) { $0 < sequenceCount - 1 ? $0 &+ 1 : nil }).lazy
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
@inline(never)
public func run_DropLastAnySequenceLazy(_ n: Int) {
let s = (AnySequence(sequence(first: 0) { $0 < sequenceCount - 1 ? $0 &+ 1 : nil })).lazy
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
@inline(never)
public func run_DropLastAnySeqCntRangeLazy(_ n: Int) {
let s = (AnySequence(0..<sequenceCount)).lazy
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
@inline(never)
public func run_DropLastAnySeqCRangeIterLazy(_ n: Int) {
let s = (AnySequence((0..<sequenceCount).makeIterator())).lazy
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
@inline(never)
public func run_DropLastAnyCollectionLazy(_ n: Int) {
let s = (AnyCollection(0..<sequenceCount)).lazy
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
@inline(never)
public func run_DropLastArrayLazy(_ n: Int) {
let s = (array).lazy
for _ in 1...20*n {
var result = 0
for element in s.dropLast(dropCount) {
result += element
}
check(result == sumCount)
}
}
// Local Variables:
// eval: (read-only-mode 1)
// End: