-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNBKCoreInteger+Comparisons.swift
95 lines (72 loc) · 3 KB
/
NBKCoreInteger+Comparisons.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
//=----------------------------------------------------------------------------=
// This source file is part of the Numberick open source project.
//
// Copyright (c) 2023 Oscar Byström Ericsson
// Licensed under Apache License, Version 2.0
//
// See http://www.apache.org/licenses/LICENSE-2.0 for license information.
//=----------------------------------------------------------------------------=
#if !DEBUG
import NBKCoreKit
import XCTest
//*============================================================================*
// MARK: * NBK x Core Integer x Comparisons x Int
//*============================================================================*
final class NBKCoreIntegerBenchmarksOnComparisonsAsInt: XCTestCase {
typealias T = Int
typealias M = UInt
//=------------------------------------------------------------------------=
// MARK: Tests x Signum
//=------------------------------------------------------------------------=
func testSignumAsInt() {
var abc = NBK.blackHoleIdentity( T(123))
var xyz = NBK.blackHoleIdentity(~T(123))
for _ in 0 ..< 5_000_000 {
NBK.blackHole(abc.signum() as Int)
NBK.blackHole(xyz.signum() as Int)
NBK.blackHoleInoutIdentity(&abc)
NBK.blackHoleInoutIdentity(&xyz)
}
}
func testSignumAsSelf() {
var abc = NBK.blackHoleIdentity( T(123))
var xyz = NBK.blackHoleIdentity(~T(123))
for _ in 0 ..< 5_000_000 {
NBK.blackHole(abc.signum() as T)
NBK.blackHole(xyz.signum() as T)
NBK.blackHoleInoutIdentity(&abc)
NBK.blackHoleInoutIdentity(&xyz)
}
}
}
//*============================================================================*
// MARK: * NBK x Core Integer x Comparisons x UInt
//*============================================================================*
final class NBKCoreIntegerBenchmarksOnComparisonsAsUInt: XCTestCase {
typealias T = UInt
typealias M = UInt
//=------------------------------------------------------------------------=
// MARK: Tests x Signum
//=------------------------------------------------------------------------=
func testSignumAsInt() {
var abc = NBK.blackHoleIdentity( T(123))
var xyz = NBK.blackHoleIdentity(~T(123))
for _ in 0 ..< 5_000_000 {
NBK.blackHole(abc.signum() as Int)
NBK.blackHole(xyz.signum() as Int)
NBK.blackHoleInoutIdentity(&abc)
NBK.blackHoleInoutIdentity(&xyz)
}
}
func testSignumAsSelf() {
var abc = NBK.blackHoleIdentity( T(123))
var xyz = NBK.blackHoleIdentity(~T(123))
for _ in 0 ..< 5_000_000 {
NBK.blackHole(abc.signum() as T)
NBK.blackHole(xyz.signum() as T)
NBK.blackHoleInoutIdentity(&abc)
NBK.blackHoleInoutIdentity(&xyz)
}
}
}
#endif