mirror of
https://github.com/apple/swift.git
synced 2026-02-27 18:26:24 +01:00
47 lines
1.4 KiB
Swift
47 lines
1.4 KiB
Swift
//===--- ArrayTests.swift -------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2025 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
|
|
|
|
public let benchmarks = [
|
|
BenchmarkInfo(name: "ArrayEqualUnique", runFunction: run_ArrayEqualUnique, tags: [.validation, .api, .Array]),
|
|
BenchmarkInfo(name: "ArrayEqualShared", runFunction: run_ArrayEqualShared, tags: [.validation, .api, .Array]),
|
|
BenchmarkInfo(name: "ArrayIdentical", runFunction: run_ArrayIdentical, tags: [.validation, .api, .Array]),
|
|
]
|
|
|
|
@inline(never)
|
|
public func run_ArrayEqualUnique(_ n: Int) {
|
|
let a1 = Array(0 ..< n)
|
|
let a2 = Array(0 ..< n)
|
|
for _ in 0 ..< 100_000 {
|
|
check(a1 == a2)
|
|
}
|
|
}
|
|
|
|
@inline(never)
|
|
public func run_ArrayEqualShared(_ n: Int) {
|
|
let a1 = Array(0 ..< n)
|
|
let a2 = a1
|
|
for _ in 0 ..< 100_000 {
|
|
check(a1 == a2)
|
|
}
|
|
}
|
|
|
|
@inline(never)
|
|
public func run_ArrayIdentical(_ n: Int) {
|
|
let a1 = Array(0 ..< n)
|
|
let a2 = a1
|
|
for _ in 0 ..< 100_000 {
|
|
check(a1.isTriviallyIdentical(to: a2))
|
|
}
|
|
}
|