mindspore.ops.isposinf

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

逐元素判断是否是正inf。

参数:
  • input (Tensor) - 输入Tensor。

返回:

Tensor,对应 input 元素为正inf的位置是true,反之为false。

异常:
  • TypeError - input 不是Tensor。

支持平台:

Ascend GPU CPU

样例:

>>> output = ops.isposinf(Tensor([[-float("inf"), float("inf")], [1, float("inf")]], mstype.float32))
>>> print(output)
[[False  True]
 [False  True]]