Abs - 1 vs 6#
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.
- Abs1 → Abs6 +7 -10
Abs1 → Abs6
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Absolute takes one input data (Tensor<T>) and produces one output data
|
2
2
|
(Tensor<T>) where the absolute is, y = abs(x), is applied to
|
3
3
|
the tensor elementwise.
|
4
|
+
|
5
|
+
**Attributes**
|
6
|
+
|
7
|
+
* **consumed_inputs**:
|
8
|
+
legacy optimization attribute.
|
4
9
|
**Inputs**
|
5
10
|
* **X** (heterogeneous) - **T**:
|
6
11
|
Input tensor
|
7
12
|
**Outputs**
|
8
13
|
* **Y** (heterogeneous) - **T**:
|
9
14
|
Output tensor
|
10
15
|
**Type Constraints**
|
11
16
|
* **T** in (
|
12
17
|
tensor(double),
|
13
18
|
tensor(float),
|
14
|
-
tensor(float16)
|
19
|
+
tensor(float16)
|
15
|
-
tensor(int16),
|
16
|
-
tensor(int32),
|
17
|
-
tensor(int64),
|
18
|
-
tensor(int8),
|
19
|
-
tensor(uint16),
|
20
|
-
tensor(uint32),
|
21
|
-
tensor(uint64),
|
22
|
-
tensor(uint8)
|
23
20
|
):
|
24
|
-
Constrain input and output types to
|
21
|
+
Constrain input and output types to float tensors.? +++ ^
|