mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
90 lines
2.0 KiB
Swift
90 lines
2.0 KiB
Swift
//===--- RangeAssignment.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
|
|
|
|
#if swift(>=4.2)
|
|
public let benchmarks = [
|
|
BenchmarkInfo(
|
|
name: "RangeIterationSigned",
|
|
runFunction: run_RangeIterationSigned,
|
|
tags: [.validation, .api]
|
|
),
|
|
BenchmarkInfo(
|
|
name: "RangeIterationSigned64",
|
|
runFunction: run_RangeIterationSigned64,
|
|
tags: [.validation, .api]
|
|
),
|
|
BenchmarkInfo(
|
|
name: "RangeIterationUnsigned",
|
|
runFunction: run_RangeIterationUnsigned,
|
|
tags: [.validation, .api]
|
|
),
|
|
]
|
|
#else
|
|
public let benchmarks = [
|
|
BenchmarkInfo(
|
|
name: "RangeIterationSigned",
|
|
runFunction: run_RangeIterationSigned,
|
|
tags: [.validation, .api]
|
|
)
|
|
]
|
|
#endif
|
|
|
|
@inline(never)
|
|
func sum(_ x: UInt64, _ y: UInt64) -> UInt64 {
|
|
return x &+ y
|
|
}
|
|
|
|
@inline(never)
|
|
public func run_RangeIterationSigned(_ n: Int) {
|
|
let range = 0..<100000
|
|
var checksum: UInt64 = 0
|
|
for _ in 1...n {
|
|
for e in range {
|
|
checksum = sum(checksum, UInt64(e))
|
|
}
|
|
}
|
|
|
|
check(checksum == 4999950000 * UInt64(n))
|
|
}
|
|
|
|
#if swift(>=4.2)
|
|
|
|
@inline(never)
|
|
public func run_RangeIterationSigned64(_ n: Int) {
|
|
let range: Range<Int64> = 0..<100000
|
|
var check: UInt64 = 0
|
|
for _ in 1...n {
|
|
for e in range {
|
|
check = sum(check, UInt64(e))
|
|
}
|
|
}
|
|
|
|
check(check == 4999950000 * UInt64(n))
|
|
}
|
|
|
|
@inline(never)
|
|
public func run_RangeIterationUnsigned(_ n: Int) {
|
|
let range: Range<UInt> = 0..<100000
|
|
var check: UInt64 = 0
|
|
for _ in 1...n {
|
|
for e in range {
|
|
check = sum(check, UInt64(e))
|
|
}
|
|
}
|
|
|
|
check(check == 4999950000 * UInt64(n))
|
|
}
|
|
|
|
#endif
|