mindspore.ops.logaddexp2

mindspore.ops.logaddexp2(input, other)[源代码]

计算以2为底的输入的指数和的对数。

\[out_i = log_2(2^{input_i} + 2^{other_i})\]
参数:
  • input (Tensor) - 输入Tensor,其数据类型必须是float。

  • other (Tensor) - 输入Tensor,其数据类型必须是float。如果 input 的shape不等于 other 的shape,它们必须被广播成相同shape(输出的形状)。

返回:

Tensor。

异常:
  • TypeError - inputother 不是Tensor。

  • TypeError - inputother 的数据类型不是float。

支持平台:

Ascend GPU CPU

样例:

>>> x1 = Tensor(np.array([2, 4, 8]).astype(np.float16))
>>> x2 = Tensor(np.array([2]).astype(np.float16))
>>> output = ops.logaddexp2(x1, x2)
>>> print(output)
[3. 4.32 8.02]