Calculates the hyperbolic arccosine of the given input tensor element-wise. Args: x (Tensor): Input tensor Returns: Tensor, the output
(x)
| 2134 | |
| 2135 | |
| 2136 | def acosh(x): |
| 2137 | """ |
| 2138 | Calculates the hyperbolic arccosine of the given input tensor element-wise. |
| 2139 | Args: |
| 2140 | x (Tensor): Input tensor |
| 2141 | Returns: |
| 2142 | Tensor, the output |
| 2143 | """ |
| 2144 | return Acosh()(x)[0] |
| 2145 | |
| 2146 | |
| 2147 | class Sin(Operator): |