Antoine Pitrou added the comment:

The use case is quite clear here.  The specific need to re-seed the Numpy PRNG 
has already come up in two different projects I work on: Numba and Dask.  I 
wouldn't be surprised if other libraries have similar needs.

If you want a reproducible RNG sequence, you should actually use a specific, 
explicit seed (and possibly instantiate a dedicated random state instead of 
using the default one).  When not using an explicit seed, people expect 
different random numbers regardless of whether a function is executed in one or 
several processes.

Note that multiprocessing *already* re-seeds the stdlib PRNG after fork, so 
re-seeding the Numpy PRNG is consistent with current behaviour.

About it being rarely used: the aim is not use by application developers but by 
library authors; e.g. Numpy itself could register the re-seeding callback, 
which would free users from doing it themselves.  It doesn't have to be used a 
lot to be useful.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue29828>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to