dpnp.true_divide

dpnp.true_divide(x1, x2, /, out=None, *, where=True, order='K', dtype=None, subok=True, **kwargs)

Divide arguments element-wise.

For full documentation refer to numpy.divide.

Returns:

out – The quotient x1/x2, element-wise.

Return type:

dpnp.ndarray

Limitations

Parameters x1 and x2 are supported as either scalar, dpnp.ndarray or dpctl.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 array data types are limited by supported DPNP Data types.

Notes

Equivalent to x1 / x2 in terms of array-broadcasting.

The true_divide(x1, x2) function is an alias for divide(x1, x2).

Examples

>>> import dpnp as np
>>> np.divide(dp.array([1, -2, 6, -9]), np.array([-2, -2, -2, -2]))
array([-0.5,  1. , -3. ,  4.5])
>>> x1 = np.arange(9.0).reshape((3, 3))
>>> x2 = np.arange(3.0)
>>> np.divide(x1, x2)
array([[nan, 1. , 1. ],
    [inf, 4. , 2.5],
    [inf, 7. , 4. ]])

The / operator can be used as a shorthand for divide on dpnp.ndarray.

>>> x1 = np.arange(9.0).reshape((3, 3))
>>> x2 = 2 * np.ones(3)
>>> x1/x2
array([[0. , 0.5, 1. ],
    [1.5, 2. , 2.5],
    [3. , 3.5, 4. ]])