dpnp.logsumexp
- dpnp.logsumexp(x, axis=None, out=None, dtype=None, keepdims=False)[source]
Calculates the logarithm of the sum of exponentials of elements in the input array.
- Parameters:
x ({dpnp.ndarray, usm_ndarray}) – Input array, expected to have a real-valued data type.
axis (int or tuple of ints, optional) – Axis or axes along which values must be computed. If a tuple of unique integers, values are computed over multiple axes. If
None
, the result is computed over the entire array. Default:None
.out ({None, dpnp.ndarray, usm_ndarray}, optional) – If provided, the result will be inserted into this array. It should be of the appropriate shape and dtype.
dtype (data type, optional) –
Data type of the returned array. If
None
, the default data type is inferred from the “kind” of the input array data type.- If x has a real-valued floating-point data type,
the returned array will have the default real-valued floating-point data type for the device where input array x is allocated.
- If x has a boolean or integral data type, the returned array
will have the default floating point data type for the device where input array x is allocated.
- If x has a complex-valued floating-point data type,
an error is raised.
If the data type (either specified or resolved) differs from the data type of x, the input array elements are cast to the specified data type before computing the result. Default:
None
.keepdims (bool) – If
True
, the reduced axes (dimensions) are included in the result as singleton dimensions, so that the returned array remains compatible with the input arrays according to Array Broadcasting rules. Otherwise, ifFalse
, the reduced axes are not included in the returned array. Default:False
.
- Returns:
out – An array containing the results. If the result was computed over the entire array, a zero-dimensional array is returned. The returned array has the data type as described in the dtype parameter description above.
- Return type:
dpnp.ndarray
Note
This function is equivalent of numpy.logaddexp.reduce.
See also
dpnp.log
Natural logarithm, element-wise.
dpnp.exp
Exponential, element-wise.
dpnp.logaddexp
Logarithm of the sum of exponentiations of the inputs, element-wise.
Examples
>>> import dpnp as np >>> a = np.ones(10) >>> np.logsumexp(a) array(3.30258509) >>> np.log(np.sum(np.exp(a))) array(3.30258509)