mindspore.ops.csr_asinh
- mindspore.ops.csr_asinh(x: CSRTensor)[source]
Computes inverse hyperbolic sine of the input element-wise.
\[out_i = \sinh^{-1}(input_i)\]- Parameters
x (CSRTensor) – The input CSRTensor of inverse hyperbolic sine function, i.e. \(input_i\).
- Returns
CSRTensor, has the same shape and type as x.
- Raises
TypeError – If x is not a CSRTensor.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> 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_asinh(x) >>> print(output.values) [-0.8813736 1.4436355]