-
It's nice that stmhal port has hw random generator, but we really should implement port-independent reproducible PRNG. I can think of following choices:
1. Implement exact same algo as in CPython. Thi…
-
Arduino API has several functions exposing PRNG functionality: `randomSeed`, `random(howbig)`, and `random(howsmall, howbig)`. Normally these functions call software PRNG provided by libc.
Recently w…
-
It would be great to be able to use the numpy.random distribution functions for random walks and other behaviours, but I believe they are not yet supported in the JIT code generator. In particular ran…
-
It has been discussed if we should consider [this](http://xorshift.di.unimi.it/) RNG alongside or instead of dSFMT.
The RNG we are using now is a Mersenne Twister implementation adapted to use SIMD,…
-
(I tried to post this as a comment to your blog post, but it didn't post, and there was no message telling me it was going into a moderation queue. So I apologize if this is redundant.)
You might wan…
-
I think we should expand the unit testing to cover more test cases. Currently we only run a couple of tests per function, which may not be sufficient to test for accuracy for some functions.
This li…
tab58 updated
8 years ago
-
I want to generate a full range of integer numbers in random order (that is, from int32.MinValue to int32.MaxValue inclusive, with everything in-between) using `MersenneTwister`, however the following…
-
Some operations output results that depend on the random seed, and thus running the same operation on the same time series can produce different results if run multiple times.
A solution to this is re…
-
http://php.net/manual/de/function.random-int.php
This function is based on Andrew Moore's UUID generation function on the uniqid function; it has been updated to use random_int() on PHP 7.0 or later …
-
Alpaka provides an abstraction for random number generation, but does not support the mersenne twister we use yet. Nevertheless, we need to create random number generation object. Because currently a …