-
Notifications
You must be signed in to change notification settings - Fork 2
/
test_parallel_numpy_rng.py
291 lines (227 loc) · 9.41 KB
/
test_parallel_numpy_rng.py
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
import os
import numpy as np
import pytest
# TODO: add PCG64DXSM test
# TODO: repeatedly testing N < Nthread isn't exercising anything new
maxthreads = len(os.sched_getaffinity(0))
all_Nthreads = [1,2,3,4,maxthreads] + \
list(range(5,maxthreads,12)) + \
list(range(5,maxthreads,11))
all_Nthreads = sorted(list(set(filter(lambda n: n <= maxthreads, all_Nthreads))))
@pytest.fixture(scope='module')
def allN(request):
'''~1000 values up to 10^5'''
_rng = np.random.default_rng(123)
Ntest = [1,2,3,10,100,1000]
Ntest += list((10**(_rng.random(size=1000)*5)).astype(int))
Ntest = sorted(list(set(Ntest)))
return Ntest
@pytest.fixture(scope='module')
def someN(request):
'''~100 values up to 10^4'''
_rng = np.random.default_rng(123)
Ntest = [1,2,3,10,100,1000]
Ntest += list((10**(_rng.random(size=100)*4)).astype(int))
Ntest = sorted(list(set(Ntest)))
return Ntest
@pytest.fixture(scope='module')
def shapedN(request):
'''5 dims'''
_rng = np.random.default_rng(123)
def _genlist(n):
return list((10**(_rng.random(size=n)*2)).astype(int))
return [tuple( _genlist(n) ) for n in range(1,6) ]
@pytest.fixture(scope='module', params=[123,0xDEADBEEF], ids=['seed1','seed2'])
def seed(request):
return request.param
@pytest.fixture(scope='module', params=all_Nthreads)
def nthread(request):
return request.param
@pytest.fixture(scope='module', params=[np.float32,np.float64])
def dtype(request):
return request.param
@pytest.fixture(scope='module', params=['random','standard_normal'])
def funcname(request):
return request.param
def test_threads(allN, seed, nthread, dtype, funcname):
'''do different nthreads give the same answer?
'''
from parallel_numpy_rng import MTGenerator
for N in allN:
if N < nthread-1:
# don't repeatedly test N < nthread
continue
pcg = np.random.PCG64(seed)
mtg = MTGenerator(pcg)
func = getattr(mtg,funcname)
s = func(size=N, nthread=1, dtype=dtype)
pcg = np.random.PCG64(seed)
mtg = MTGenerator(pcg)
func = getattr(mtg,funcname)
p = func(size=N, nthread=nthread, dtype=dtype)
# In theory, different numbers of threads will yield bit-wise identical answers
# But in practice, the last digit changes sometimes. This is probably because
# different code paths are taken based on alignment.
# We will use atol because our values are all O(unity)
if dtype == np.float32:
assert np.allclose(s, p, atol=1e-7, rtol=0.)
elif dtype == np.float64:
assert np.allclose(s, p, atol=1e-15, rtol=0.)
def test_threads_shape(shapedN, seed, nthread, dtype, funcname):
'''do different nthreads give the same answer?
'''
from parallel_numpy_rng import MTGenerator
for N in shapedN:
if np.prod(N, dtype=np.intp) < nthread-1:
# don't repeatedly test N < nthread
continue
pcg = np.random.PCG64(seed)
mtg = MTGenerator(pcg)
func = getattr(mtg,funcname)
s = func(size=N, nthread=1, dtype=dtype)
pcg = np.random.PCG64(seed)
mtg = MTGenerator(pcg)
func = getattr(mtg,funcname)
p = func(size=N, nthread=nthread, dtype=dtype)
# In theory, different numbers of threads will yield bit-wise identical answers
# But in practice, the last digit changes sometimes. This is probably because
# different code paths are taken based on alignment.
# We will use atol because our values are all O(unity)
if dtype == np.float32:
assert np.allclose(s, p, atol=1e-7, rtol=0.)
elif dtype == np.float64:
assert np.allclose(s, p, atol=1e-15, rtol=0.)
def test_resume(someN, seed, nthread, dtype, funcname):
'''Test that generating an array of randoms with one call
or several give the same answer
'''
from parallel_numpy_rng import MTGenerator
rng = np.random.default_rng(seed)
for N in someN:
if N < nthread-1:
# don't repeatedly test N < nthread
continue
pcg = np.random.PCG64(seed)
mtg = MTGenerator(pcg)
func = getattr(mtg,funcname)
a = func(size=N, nthread=nthread, dtype=dtype)
pcg = np.random.PCG64(seed)
mtg = MTGenerator(pcg)
func = getattr(mtg,funcname)
res = np.empty(N, dtype=dtype)
i = 0
while i < N:
n = rng.integers(low=1,high=N-i+1)
res[i:i+n] = func(size=n, nthread=nthread, dtype=dtype)
i += n
if dtype == np.float32:
assert np.allclose(a, res, atol=1e-7, rtol=0.)
elif dtype == np.float64:
assert np.allclose(a, res, atol=1e-15, rtol=0.)
def test_mixing_threads(someN, seed, nthread, dtype):
'''Test that changing the number of threads mid-stream
doesn't matter. Only standard normal holds any interesting
external state.
'''
funcname = 'standard_normal'
from parallel_numpy_rng import MTGenerator
rng = np.random.default_rng(seed)
maxthreads = nthread
del nthread
for N in someN:
if N < maxthreads-1:
# don't repeatedly test N < nthread
continue
pcg = np.random.PCG64(seed)
mtg = MTGenerator(pcg)
func = getattr(mtg,funcname)
a = func(size=N, nthread=maxthreads, dtype=dtype)
pcg = np.random.PCG64(seed)
mtg = MTGenerator(pcg)
func = getattr(mtg,funcname)
res = np.empty(N, dtype=dtype)
i = 0
tstart = np.linspace(0, N, maxthreads+1, endpoint=True, dtype=int)
# sweep from 1 to maxthreads
for t in range(maxthreads):
n = tstart[t+1]-tstart[t]
res[i:i+n] = func(size=n, nthread=t+1, dtype=dtype)
i += n
if dtype == np.float32:
assert np.allclose(a, res, atol=1e-7, rtol=0.)
elif dtype == np.float64:
assert np.allclose(a, res, atol=1e-15, rtol=0.)
def test_mixing_func(someN, seed, nthread, dtype):
'''Test interleaving random and standard_normal works for different N/thread
'''
from parallel_numpy_rng import MTGenerator
rng = np.random.default_rng(seed)
for N in someN:
if N < nthread-1:
# don't repeatedly test N < nthread
continue
pcg = np.random.PCG64(seed)
mtg = MTGenerator(pcg)
coin_seed = rng.integers(2**16)
coin_rng = np.random.default_rng(coin_seed)
nchunk = max(2,N//100)
serial = np.empty(N, dtype=dtype)
i = 0
tstart = np.linspace(0, N, nchunk+1, endpoint=True, dtype=int)
for t in range(nchunk):
n = tstart[t+1]-tstart[t]
# in each chunk, flip a coin to decide the function
func = mtg.random if coin_rng.integers(2) else mtg.standard_normal
serial[i:i+n] = func(size=n, nthread=1, dtype=dtype)
i += n
pcg = np.random.PCG64(seed)
mtg = MTGenerator(pcg)
coin_rng = np.random.default_rng(coin_seed)
parallel = np.empty(N, dtype=dtype)
i = 0
for t in range(nchunk):
n = tstart[t+1]-tstart[t]
func = mtg.random if coin_rng.integers(2) else mtg.standard_normal
parallel[i:i+n] = func(size=n, nthread=nthread, dtype=dtype)
i += n
if dtype == np.float32:
assert np.allclose(serial, parallel, atol=1e-7, rtol=0.)
elif dtype == np.float64:
assert np.allclose(serial, parallel, atol=1e-15, rtol=0.)
def test_uniform_matches_numpy(someN, seed, nthread, dtype):
'''Both Numpy and MTGenerator call the PCG uniform double generator, so
they actually produce identical streams. Floats are almost the same,
except we have to reimplement the uint32->float part. So it will be
close but not exact.
This isn't a property we guarantee or really need to preserve, but
it's a sign that everything is working as expected.
'''
from parallel_numpy_rng import MTGenerator
for N in someN:
if N < maxthreads-1:
# don't repeatedly test N < nthread
continue
pcg = np.random.PCG64(seed)
mtg = MTGenerator(pcg)
a = mtg.random(size=N, nthread=nthread, dtype=dtype)
rng = np.random.Generator(np.random.PCG64(seed))
b = rng.random(size=N, dtype=dtype)
if dtype == np.float64:
assert np.allclose(a, b, atol=1e-15, rtol=0.)
elif dtype == np.float32:
assert np.allclose(a, b, atol=1e-7)
else:
raise ValueError(dtype)
def test_finite_normals_float32():
'''
If the floats fed to Box-Muller can include 0, it will produce infinity.
We use the interval (0,1] to avoid this.
In theory, we ought to test float64 the same way. But it's hard to find
a PCG state that produces 53 zeros...
https://github.com/lgarrison/parallel-numpy-rng/issues/1
'''
from parallel_numpy_rng import MTGenerator
pcg = np.random.PCG64(1194)
mtg = MTGenerator(pcg)
a = mtg.standard_normal(size=20000, nthread=maxthreads, dtype=np.float32)
assert np.all(np.isfinite(a))