dpnp.where
- dpnp.where(condition, x=None, y=None, /)[source]
Return elements chosen from x or y depending on condition.
When only condition is provided, this function is a shorthand for
dpnp.nonzero(condition)
.For full documentation refer to
numpy.where
.- Returns:
y – An array with elements from x where condition is True, and elements from y elsewhere.
- Return type:
dpnp.ndarray
Limitations
Parameter condition is supported as either
dpnp.ndarray
ordpctl.tensor.usm_ndarray
. Parameters x and y are supported as either scalar,dpnp.ndarray
ordpctl.tensor.usm_ndarray
Otherwise the function will be executed sequentially on CPU. Input array data types of x and y are limited by supported DPNP Data types.Examples
>>> import dpnp as dp >>> a = dp.arange(10) >>> d array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) >>> dp.where(a < 5, a, 10*a) array([ 0, 1, 2, 3, 4, 50, 60, 70, 80, 90])