On Fri, Jan 10, 2014 at 9:00 PM, Jens Axboe <jaxboe@fusionio.com> wrote:


Jens Axboe (1):
      Add option to manually seed the random generators

Hi Jens:  Have you seen the work on counter-based random number generators?  They might be applicable here.

The basic idea is that if you encrypt the value of a a counter, you can get usefully random
bits. You can do something like use some of the bits for thread number, file number, etc.
and be able to generate the expected state without cycling through the RNG.

See for example:

http://www.deshawresearch.com/resources_random123.html