mindspore.ops.csr_acosh
- mindspore.ops.csr_acosh(x: CSRTensor)[source]
Computes inverse hyperbolic cosine of the inputs element-wise.
\[out_i = \cosh^{-1}(input_i)\]Warning
Given an input CSRTensor x, the function computes inverse hyperbolic cosine of every element. Input range is [1, inf].
- Parameters
x (CSRTensor) – The input CSRTensor of inverse hyperbolic cosine function, its rank must be in [0, 7] inclusive.
- Returns
CSRTensor, has the same shape and type as x.
- Raises
TypeError – If x is not a CSRTensor.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> 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_acosh(x) >>> print(output.values) [ nan 1.316958]