Abs - 6 vs 13

Files changed (1) hide show
  1. Abs6 → Abs13 +1 -0
Abs6 → Abs13 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
4
  **Inputs**
5
5
  * **X** (heterogeneous) - **T**:
6
6
  Input tensor
7
7
  **Outputs**
8
8
  * **Y** (heterogeneous) - **T**:
9
9
  Output tensor
10
10
  **Type Constraints**
11
11
  * **T** in (
12
+ tensor(bfloat16),
12
13
  tensor(double),
13
14
  tensor(float),
14
15
  tensor(float16),
15
16
  tensor(int16),
16
17
  tensor(int32),
17
18
  tensor(int64),
18
19
  tensor(int8),
19
20
  tensor(uint16),
20
21
  tensor(uint32),
21
22
  tensor(uint64),
22
23
  tensor(uint8)
23
24
  ):
24
25
  Constrain input and output types to all numeric tensors.