dpnp.multiply
- dpnp.multiply(x1, x2, /, out=None, *, where=True, order='K', dtype=None, subok=True, **kwargs)[source]
Multiply arguments element-wise.
For full documentation refer to
numpy.multiply
.- Returns:
out – The product of x1 and x2, element-wise.
- Return type:
{dpnp.ndarray, scalar}
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 array data types are limited by supported DPNP Data types.Notes
Equivalent to x1 * x2 in terms of array broadcasting.
Examples
>>> import dpnp as np >>> a = np.array([1, 2, 3, 4, 5]) >>> np.multiply(a, a) array([ 1, 4, 9, 16, 25])]
>>> x1 = np.arange(9.0).reshape((3, 3)) >>> x2 = np.arange(3.0) >>> np.multiply(x1, x2) array([[ 0., 1., 4.], [ 0., 4., 10.], [ 0., 7., 16.]])
The
*
operator can be used as a shorthand formultiply
ondpnp.ndarray
.>>> x1 * x2 array([[ 0., 1., 4.], [ 0., 4., 10.], [ 0., 7., 16.]])