mindspore.ops.exp2

mindspore.ops.exp2(input)[源代码]

逐元素计算Tensor input 以2为底的指数。

\[out_i = 2^{input_i}\]
参数:
  • input (Tensor) - 输入Tensor。

返回:

Tensor,具有与 input 相同的数据类型和shape。

异常:
  • TypeError - input 不是Tensor。

支持平台:

Ascend GPU CPU

样例:

>>> x = Tensor(np.array([2, 3, 4]), mindspore.float32)
>>> output = ops.exp2(x)
>>> print(output)
[ 4.  8. 16.]