dpnp.random.random_integers
- dpnp.random.random_integers(low, high=None, size=None)[source]
Random integers between low and high, inclusive.
For full documentation refer to
numpy.random.random_integers.Limitations
Parameters
lowandhighare supported as scalar. Otherwise,numpy.random.random_integers(low, high, size)samples are drawn.See also