mindspore.ops.isposinf
- mindspore.ops.isposinf(input)[源代码]
逐元素判断是否是正inf。
- 参数:
input (Tensor) - 输入Tensor。
- 返回:
Tensor,对应 input 元素为正inf的位置是
true
,反之为false
。- 异常:
TypeError - input 不是Tensor。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> from mindspore import ops, Tensor >>> from mindspore import dtype as mstype >>> output = ops.isposinf(Tensor([[-float("inf"), float("inf")], [1, float("inf")]], mstype.float32)) >>> print(output) [[False True] [False True]]