Tanh - 6 vs 13¶
Next section compares an older to a newer version of the same operator after both definition are converted into markdown text. Green means an addition to the newer version, red means a deletion. Anything else is unchanged.
- Tanh6 → Tanh13 +1 -1
Tanh6 → Tanh13
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Calculates the hyperbolic tangent of the given input tensor element-wise.
|
2
2
|
### Inputs
|
3
3
|
- **input** (heterogeneous) - **T**:
|
4
4
|
Input tensor
|
5
5
|
### Outputs
|
6
6
|
- **output** (heterogeneous) - **T**:
|
7
7
|
The hyperbolic tangent values of the input tensor computed element-wise
|
8
8
|
### Type Constraints
|
9
|
-
* **T** in ( tensor(double), tensor(float), tensor(float16) ):
|
9
|
+
* **T** in ( tensor(bfloat16), tensor(double), tensor(float), tensor(float16) ):
|
10
10
|
Constrain input and output types to float tensors.
|