-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathX256PP.hh
164 lines (115 loc) · 4.08 KB
/
X256PP.hh
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
////////////////////////////////////////////////////////////////////////////////
//
// X256PP.hh : xoshiro256++ (std::uniform_random_bit_generator)
//
// Copyright (c) 2024 Brett Hale.
// SPDX-License-Identifier: BSD-2-Clause
//
////////////////////////////////////////////////////////////////////////////////
#ifndef X256PP_HH_
#define X256PP_HH_
#include <cstdint>
#include <array>
#include <random>
////////////////////////////////////////////////////////////////////////////////
//
// X256PP class:
class X256PP
{
public:
// xoshiro256++ PRNG (satisfies: UniformRandomBitGenerator)
// based on the 'xoshiro256plusplus.c' implementation by
// David Blackman and Sebastiano Vigna: prng.di.unimi.it
using result_type = std::uint_fast64_t;
static constexpr result_type result_max =
static_cast<result_type>(UINT64_C(0xffffffffffffffff));
static constexpr result_type min () { return (0); }
static constexpr result_type max () { return result_max; }
std::array<result_type, 4> state;
static constexpr auto clamp (result_type u) {
return (u & result_max); }
static constexpr auto rol (result_type u, unsigned k) {
u = clamp(u), k %= 64; // idiomatic rotate:
return (k ? clamp((u << k) | (u >> (64 - k))) : (u));
}
// xoshiro256++ generator function:
constexpr result_type operator () () noexcept {
auto r = rol(state[0] + state[3], (23)) + state[0];
auto t = clamp(state[1] << (17));
state[2] ^= state[0], state[3] ^= state[1];
state[1] ^= state[2], state[0] ^= state[3];
state[2] ^= t, state[3] = rol(state[3], (45));
return clamp(r);
}
// equivalent to (2^128) generator function calls:
constexpr void jump () noexcept;
// equivalent to (2^192) generator function calls:
constexpr void long_jump () noexcept;
// Stafford's Mix13 variant:
static constexpr auto mix (result_type u) {
u = clamp(u); u ^= (u >> 30);
u *= UINT64_C(0xbf58476d1ce4e5b9);
u = clamp(u); u ^= (u >> 27);
u *= UINT64_C(0x94d049bb133111eb);
u = clamp(u); u ^= (u >> 31);
return u;
}
// (re)initialize the PRNG with a 64 bit seed:
constexpr X256PP (result_type seed = 0) noexcept
: state {} { init(seed); }
constexpr void init (result_type seed) noexcept {
for (auto & si : state) // splitmix:
si = mix(seed += UINT64_C(0x9e3779b97f4a7c15));
}
// (re)initialize the PRNG with a 256 bit state, generated
// using a std::random_device:
X256PP (std::random_device & rdev)
: state {} { init(rdev); }
void init (std::random_device & rdev) {
decltype(state) rbuf;
std::uniform_int_distribution<result_type> d {0, max()};
for (auto & ri : rbuf) ri = d(rdev);
state = rbuf;
}
};
////////////////////////////////////////////////////////////////////////////////
//
// X256PP jump function implementations:
constexpr void X256PP::jump () noexcept
{
decltype(state) jbuf {};
constexpr decltype(state) jtab {
UINT64_C(0x180ec6d33cfd0aba), UINT64_C(0xd5a61266f0c9392c),
UINT64_C(0xa9582618e03fc9aa), UINT64_C(0x39abdc4529b1661c)
};
for (auto j : jtab)
{
for (int b = 0; b < 64; operator () (), b++)
{
if (j & (UINT64_C(1) << b))
for (unsigned i = 0; i < jbuf.size(); i++)
jbuf[i] ^= state[i];
}
}
state = jbuf;
}
constexpr void X256PP::long_jump () noexcept
{
decltype(state) jbuf {};
constexpr decltype(state) jtab {
UINT64_C(0x76e15d3efefdcbbf), UINT64_C(0xc5004e441c522fb3),
UINT64_C(0x77710069854ee241), UINT64_C(0x39109bb02acbe635)
};
for (auto j : jtab)
{
for (int b = 0; b < 64; operator () (), b++)
{
if (j & (UINT64_C(1) << b))
for (unsigned i = 0; i < jbuf.size(); i++)
jbuf[i] ^= state[i];
}
}
state = jbuf;
}
////////////////////////////////////////////////////////////////////////////////
#endif // X256PP_HH_