-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNBKDoubleWidth+Strides.swift
89 lines (69 loc) · 2.97 KB
/
NBKDoubleWidth+Strides.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
//=----------------------------------------------------------------------------=
// 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 NBKDoubleWidthKit
import XCTest
private typealias X64 = NBK.U256X64
private typealias X32 = NBK.U256X32
//*============================================================================*
// MARK: * NBK x Double Width x Strides x Int256
//*============================================================================*
final class NBKDoubleWidthBenchmarksOnStridesAsInt256: XCTestCase {
typealias T = Int256
//=------------------------------------------------------------------------=
// MARK: Tests
//=------------------------------------------------------------------------=
func testAdvancedBy() {
var lhs = NBK.blackHoleIdentity(T(x64: X64(~1, ~2, ~3, ~4)))
var rhs = NBK.blackHoleIdentity(Int.max)
for _ in 0 ..< 5_000_000 {
NBK.blackHole(lhs.advanced(by: rhs))
NBK.blackHoleInoutIdentity(&lhs)
NBK.blackHoleInoutIdentity(&rhs)
}
}
func testDistanceTo() {
var lhs = NBK.blackHoleIdentity(T(x64: X64(~1, ~2, ~3, ~4)))
var rhs = NBK.blackHoleIdentity(T(x64: X64(~1, ~2, ~3, ~4)).advanced(by: Int.max))
for _ in 0 ..< 5_000_000 {
NBK.blackHole(lhs.distance(to: rhs))
NBK.blackHoleInoutIdentity(&lhs)
NBK.blackHoleInoutIdentity(&rhs)
}
}
}
//*============================================================================*
// MARK: * NBK x Double Width x Strides x UInt256
//*============================================================================*
final class NBKDoubleWidthBenchmarksOnStridesAsUInt256: XCTestCase {
typealias T = UInt256
//=------------------------------------------------------------------------=
// MARK: Tests
//=------------------------------------------------------------------------=
func testAdvancedBy() {
var lhs = NBK.blackHoleIdentity(T(x64: X64(~1, ~2, ~3, ~4)))
var rhs = NBK.blackHoleIdentity(Int.max)
for _ in 0 ..< 5_000_000 {
NBK.blackHole(lhs.advanced(by: rhs))
NBK.blackHoleInoutIdentity(&lhs)
NBK.blackHoleInoutIdentity(&rhs)
}
}
func testDistanceTo() {
var lhs = NBK.blackHoleIdentity(T(x64: X64(~1, ~2, ~3, ~4)))
var rhs = NBK.blackHoleIdentity(T(x64: X64(~1, ~2, ~3, ~4)).advanced(by: Int.max))
for _ in 0 ..< 5_000_000 {
NBK.blackHole(lhs.distance(to: rhs))
NBK.blackHoleInoutIdentity(&lhs)
NBK.blackHoleInoutIdentity(&rhs)
}
}
}
#endif