dpnp.right_shift
- dpnp.right_shift(x1, x2, /, out=None, *, order='K', where=True, dtype=None, subok=True, **kwargs)[source]
Shift the bits of an integer to the right.
For full documentation refer to
numpy.right_shift
.- Returns:
out – An array containing the element-wise results.
- Return type:
dpnp.ndarray
Limitations
Parameters x1 and x2 are supported as either scalar,
dpnp.ndarray
ordpctl.tensor.usm_ndarray
, but both x1 and x2 can not be scalars at the same time. Parameters where, dtype and subok are supported with their default values. Keyword argument kwargs is currently unsupported. Otherwise the function will be executed sequentially on CPU. Input data is supported as integer only.See also
dpnp.left_shift
Shift the bits of an integer to the left.
Examples
>>> import dpnp as np >>> x1 = np.array([10]) >>> x2 = np.array([1, 2, 3]) >>> np.right_shift(x1, x2) array([5, 2, 1])
The
>>
operator can be used as a shorthand forright_shift
ondpnp.ndarray
.>>> x1 >> x2 array([5, 2, 1])