forked from mindspore-Ecosystem/mindspore
19 lines
436 B
ReStructuredText
Executable File
19 lines
436 B
ReStructuredText
Executable File
mindspore.ops.csr_sinh
|
||
=======================
|
||
|
||
.. py:function:: mindspore.ops.csr_sinh(x: CSRTensor)
|
||
|
||
逐元素计算输入CSRTensor的双曲正弦。
|
||
|
||
.. math::
|
||
out_i = \csr_sinh(x_i)
|
||
|
||
参数:
|
||
- **x** (CSRTensor) - csr_sinh的输入CSRTensor,其秩范围必须在[0, 7]。
|
||
|
||
返回:
|
||
CSRTensor,shape与 `x` 相同。
|
||
|
||
异常:
|
||
- **TypeError** - 如果 `x` 不是CSRTensor。
|