mindspore.ops.csr_isinf
- mindspore.ops.csr_isinf(x: CSRTensor)[源代码]
确定输入CSRTensor每个位置上的元素是否为无穷大或无穷小。
\[\begin{split}out_i = \begin{cases} & \text{ if } x_{i} = \text{Inf},\ \ True \\ & \text{ if } x_{i} \ne \text{Inf},\ \ False \end{cases}\end{split}\]其中 \(Inf\) 表示不是一个数字。
- 参数:
x (CSRTensor) - IsInf的输入。
- 返回:
CSRTensor,shape与相同的输入,数据的类型为bool。
- 异常:
TypeError - 如果 x 不是CSRTensor。
- 支持平台:
GPU
CPU
样例:
>>> from mindspore import dtype as mstype >>> from mindspore import Tensor, ops, CSRTensor >>> indptr = Tensor([0, 1, 2, 2], dtype=mstype.int32) >>> indices = Tensor([3, 0], dtype=mstype.int32) >>> values = Tensor([-1, 2], dtype=mstype.float32) >>> shape = (3, 4) >>> x = CSRTensor(indptr, indices, values, shape) >>> output = ops.csr_isinf(x) >>> print(output.values) [False False]