mkl_random.MKLRandomState.seed¶
- MKLRandomState.seed(seed=None, brng=None)¶
Seed the generator.
This method is called when MKLRandomState is initialized. It can be called again to re-seed the generator. For details, see MKLRandomState.
- Parameters:
- seedint or array_like, optional
Seed for MKLRandomState. Must be convertible to 32 bit unsigned integers.
- brngstr or None, optional
Name of the basic random number generation algorithm, or a non-deterministic hardware-based generator, provided by Intel MKL. One of ‘MT19937’, ‘SFMT19937’, ‘MT2203’, ‘R250’, ‘WH’, ‘MCG31’, ‘MCG59’, ‘MRG32K3A’, ‘PHILOX4X32X10’, ‘NONDETERM’, ‘ARS5’. Use
brng=Noneto keep the algorithm specified when this instance was constructed.
See also
References