mindspore.mint.logaddexp2

View Source On Gitee
mindspore.mint.logaddexp2(input, other)[source]

Logarithm of the sum of exponentiations of the inputs in base of 2.

\[out_i = \log_2(2^{input_i} + 2^{other_i})\]
Parameters
  • input (Tensor) – Input Tensor. The dtype of input must be float.

  • other (Tensor) – Input Tensor. The dtype of other must be float. If the shape of input is not equal to the shape of other, they must be broadcastable to a common shape (which becomes the shape of the output).

Returns

Tensor, with the same dtype as input and other.

Raises
  • TypeError – If input or other is not a Tensor.

  • TypeError – The dtype of input or other is not float.

Supported Platforms:

Ascend

Examples

>>> import numpy as np
>>> from mindspore import Tensor, mint
>>> x1 = Tensor(np.array([1, 2, 3]).astype(np.float16))
>>> x2 = Tensor(np.array(2).astype(np.float16))
>>> output = mint.logaddexp2(x1, x2)
>>> print(output)
[2.312 2.693 3.312]