-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNBKCoreInteger+Words.swift
81 lines (62 loc) · 2.45 KB
/
NBKCoreInteger+Words.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
//=----------------------------------------------------------------------------=
// 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 Words
//*============================================================================*
final class NBKCoreIntegerBenchmarksOnWords: XCTestCase {
typealias T = Int
typealias M = UInt
//=------------------------------------------------------------------------=
// MARK: Tests
//=------------------------------------------------------------------------=
func testInt32FromWords() {
var x0 = NBK.blackHoleIdentity([1 ] as [UInt])
var x1 = NBK.blackHoleIdentity([1, 2] as [UInt])
for _ in 0 ..< 5_000_000 {
NBK.blackHole(Int32(words: x0))
NBK.blackHole(Int32(words: x1))
NBK.blackHoleInoutIdentity(&x0)
NBK.blackHoleInoutIdentity(&x1)
}
}
func testInt64FromWords() {
var x0 = NBK.blackHoleIdentity([1 ] as [UInt])
var x1 = NBK.blackHoleIdentity([1, 2] as [UInt])
for _ in 0 ..< 5_000_000 {
NBK.blackHole(Int64(words: x0))
NBK.blackHole(Int64(words: x1))
NBK.blackHoleInoutIdentity(&x0)
NBK.blackHoleInoutIdentity(&x1)
}
}
func testUInt32FromWords() {
var x0 = NBK.blackHoleIdentity([1 ] as [UInt])
var x1 = NBK.blackHoleIdentity([1, 2] as [UInt])
for _ in 0 ..< 5_000_000 {
NBK.blackHole(UInt32(words: x0))
NBK.blackHole(UInt32(words: x1))
NBK.blackHoleInoutIdentity(&x0)
NBK.blackHoleInoutIdentity(&x1)
}
}
func testUInt64FromWords() {
var x0 = NBK.blackHoleIdentity([1 ] as [UInt])
var x1 = NBK.blackHoleIdentity([1, 2] as [UInt])
for _ in 0 ..< 5_000_000 {
NBK.blackHole(UInt64(words: x0))
NBK.blackHole(UInt64(words: x1))
NBK.blackHoleInoutIdentity(&x0)
NBK.blackHoleInoutIdentity(&x1)
}
}
}
#endif