Erf - 9 vs 13¶
- Erf9 → Erf13 +1 -0
Erf9 → Erf13
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Computes the error function 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 error function of the input tensor computed element-wise. It has
|
8
8
|
the same shape and type of the input.
|
9
9
|
**Type Constraints**
|
10
10
|
* **T** in (
|
11
|
+
tensor(bfloat16),
|
11
12
|
tensor(double),
|
12
13
|
tensor(float),
|
13
14
|
tensor(float16),
|
14
15
|
tensor(int16),
|
15
16
|
tensor(int32),
|
16
17
|
tensor(int64),
|
17
18
|
tensor(int8),
|
18
19
|
tensor(uint16),
|
19
20
|
tensor(uint32),
|
20
21
|
tensor(uint64),
|
21
22
|
tensor(uint8)
|
22
23
|
):
|
23
24
|
Constrain input and output types to all numeric tensors.
|