NumPy

Previous topic

numpy.random.PCG64.advance

Next topic

numpy.random.PCG64.cffi

This is documentation for an old release of NumPy (version 1.19). Read this page in the documentation of the latest stable release (version 2.2).

numpy.random.PCG64.jumped

method

PCG64.jumped(jumps=1)

Returns a new bit generator with the state jumped.

Jumps the state as-if jumps * 210306068529402873165736369884012333109 random numbers have been generated.

Parameters
jumpsinteger, positive

Number of times to jump the state of the bit generator returned

Returns
bit_generatorPCG64

New instance of generator jumped iter times

Notes

The step size is phi-1 when multiplied by 2**128 where phi is the golden ratio.