You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using numpy.random_intel with the Intel Anaconda distribution. We need to avoid all uses of Mersenne Twister (which frighteningly is included in random_intel) and rely exclusively on the RDRAND instruction as the randomness source. We then want a random float from the double-tailed geometric distribution.
Unfortunately, the documentation, while including lots of information about distributions, is opaque for how to configure numpy to only use RDRAND as the randomness source. Can you provide me with this information and update the documentation?
The text was updated successfully, but these errors were encountered:
We are using
numpy.random_intel
with the Intel Anaconda distribution. We need to avoid all uses of Mersenne Twister (which frighteningly is included in random_intel) and rely exclusively on the RDRAND instruction as the randomness source. We then want a random float from the double-tailed geometric distribution.Unfortunately, the documentation, while including lots of information about distributions, is opaque for how to configure numpy to only use RDRAND as the randomness source. Can you provide me with this information and update the documentation?
The text was updated successfully, but these errors were encountered: