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