Exp - 1 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.
- Exp1 → Exp13 +5 -1
Exp1 → Exp13
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Calculates the exponential of the given input tensor, element-wise.
|
2
|
+
|
3
|
+
**Attributes**
|
4
|
+
|
5
|
+
* **consumed_inputs**:
|
6
|
+
legacy optimization attribute.
|
2
7
|
**Inputs**
|
3
8
|
* **input** (heterogeneous) - **T**:
|
4
9
|
Input tensor
|
5
10
|
**Outputs**
|
6
11
|
* **output** (heterogeneous) - **T**:
|
7
12
|
The exponential of the input tensor computed element-wise
|
8
13
|
**Type Constraints**
|
9
14
|
* **T** in (
|
10
|
-
tensor(bfloat16),
|
11
15
|
tensor(double),
|
12
16
|
tensor(float),
|
13
17
|
tensor(float16)
|
14
18
|
):
|
15
19
|
Constrain input and output types to float tensors.
|