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