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.
1 parent 5b88dc3 commit c4a9136Copy full SHA for c4a9136
benchmark/cxx-source/CxxVectorSum.swift
@@ -17,6 +17,10 @@ import TestsUtils
17
import CxxStdlibPerformance
18
import Cxx
19
20
+// FIXME: Linux needs fix for https://github.com/apple/swift/issues/61547.
21
+#if os(Linux)
22
+public let benchmarks: [BenchmarkInfo] = []
23
+#else
24
public let benchmarks = [
25
BenchmarkInfo(
26
name: "CxxVecU32.sum.Cxx.rangedForLoop",
@@ -122,3 +126,4 @@ public func run_CxxVectorOfU32_Sum_Swift_Reduce(_ n: Int) {
122
126
extension VectorOfU32.const_iterator : Equatable, UnsafeCxxInputIterator { }
123
127
124
128
extension VectorOfU32: CxxSequence {}
129
+#endif
0 commit comments