We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 965c963 + bca183c commit dbd7258Copy full SHA for dbd7258
benchmark/single-source/BufferFind.swift
@@ -28,6 +28,21 @@ public var benchmarks: [BenchmarkInfo] = [
28
setUpFunction: buffer1000Setup,
29
tearDownFunction: bufferTeardown
30
),
31
+ // size 128, alignment 0
32
+ BenchmarkInfo(
33
+ name: "RawBuffer.128.findFirst",
34
+ runFunction: run_BufferFindFirst,
35
+ tags: [.validation, .api, .skip],
36
+ setUpFunction: buffer128Setup,
37
+ tearDownFunction: bufferTeardown
38
+ ),
39
40
+ name: "RawBuffer.128.findLast",
41
+ runFunction: run_BufferFindLast,
42
+ tags: [.validation, .api],
43
44
45
46
// size 39, alignment 0
47
BenchmarkInfo(
48
name: "RawBuffer.39.findFirst",
@@ -66,6 +81,10 @@ func buffer1000Setup() {
66
81
bufferSetup(size: 1000, alignment: 0)
67
82
}
68
83
84
+func buffer128Setup() {
85
+ bufferSetup(size: 128, alignment: 0)
86
+}
87
+
69
88
func buffer39Setup() {
70
89
bufferSetup(size: 39, alignment: 0)
71
90
0 commit comments