mindspore.ops.isneginf
- mindspore.ops.isneginf(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.isneginf(Tensor([[-float("inf"), float("inf")], [1, -float("inf")]], mstype.float32)) >>> print(output) [[ True False] [False True]]