dpnp.random.random_sample
- dpnp.random.random_sample(size=None, device=None, usm_type='device', sycl_queue=None)[source]
Return random floats in the half-open interval [0.0, 1.0).
Results are from the “continuous uniform” distribution over the interval.
For full documentation refer to
numpy.random.random_sample
.- Parameters:
device ({None, string, SyclDevice, SyclQueue}, optional) -- An array API concept of device where the output array is created. The device can be
None
(the default), an OneAPI filter selector string, an instance ofdpctl.SyclDevice
corresponding to a non-partitioned SYCL device, an instance ofdpctl.SyclQueue
, or a Device object returned bydpnp.dpnp_array.dpnp_array.device
property.usm_type ({"device", "shared", "host"}, optional) -- The type of SYCL USM allocation for the output array.
sycl_queue ({None, SyclQueue}, optional) -- A SYCL queue to use for output array allocation and copying. The sycl_queue can be passed as
None
(the default), which means to get the SYCL queue from device keyword if present or to use a default queue. Default:None
.
- Returns:
out -- Array of random floats of shape size (if
size=None
, zero dimension array with a single float is returned). Output array data type isdpnp.float64
if device supports it, ordpnp.float32
otherwise.- Return type:
dpnp.ndarray
Examples
>>> s = dpnp.random.random_sample((5,))