Identity - 13 vs 14#

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. Identity13 → Identity14 +4 -19
Identity13 → Identity14 RENAMED
@@ -1 +1 @@
1
1
  Identity operator
2
2
  **Inputs**
3
- * **input** (heterogeneous) - **V**:
3
+ * **input** (heterogeneous) - **T**:
4
4
  Input tensor
5
5
  **Outputs**
6
- * **output** (heterogeneous) - **V**:
6
+ * **output** (heterogeneous) - **T**:
7
7
  Tensor to copy input into.
8
8
  **Type Constraints**
9
- * **V** in (
9
+ * **T** in (
10
- seq(tensor(bool)),
11
- seq(tensor(complex128)),
12
- seq(tensor(complex64)),
13
- seq(tensor(double)),
14
- seq(tensor(float)),
15
- seq(tensor(float16)),
16
- seq(tensor(int16)),
17
- seq(tensor(int32)),
18
- seq(tensor(int64)),
19
- seq(tensor(int8)),
20
- seq(tensor(string)),
21
- seq(tensor(uint16)),
22
- seq(tensor(uint32)),
23
- seq(tensor(uint64)),
24
- seq(tensor(uint8)),
25
10
  tensor(bfloat16),
26
11
  tensor(bool),
27
12
  tensor(complex128),
28
13
  tensor(complex64),
29
14
  tensor(double),
30
15
  tensor(float),
31
16
  tensor(float16),
32
17
  tensor(int16),
33
18
  tensor(int32),
34
19
  tensor(int64),
35
20
  tensor(int8),
36
21
  tensor(string),
37
22
  tensor(uint16),
38
23
  tensor(uint32),
39
24
  tensor(uint64),
40
25
  tensor(uint8)
41
26
  ):
42
- Constrain input and output types to all tensor and sequence types.? -------------
27
+ Constrain input and output types to all tensor types.