Erf - 9 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.

Files changed (1) hide show
  1. Erf9 → Erf13 +0 -1
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),
12
11
  tensor(double),
13
12
  tensor(float),
14
13
  tensor(float16),
15
14
  tensor(int16),
16
15
  tensor(int32),
17
16
  tensor(int64),
18
17
  tensor(int8),
19
18
  tensor(uint16),
20
19
  tensor(uint32),
21
20
  tensor(uint64),
22
21
  tensor(uint8)
23
22
  ):
24
23
  Constrain input and output types to all numeric tensors.