Concat - 1 vs 4#
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.
- Concat1 → Concat4 +4 -16
Concat1 → Concat4
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Concatenate a list of tensors into a single tensor
|
2
2
|
**Attributes**
|
3
|
-
* **axis
|
3
|
+
* **axis**:
|
4
|
-
Which axis to concat on
|
4
|
+
Which axis to concat on. Default value is 1.
|
5
5
|
**Inputs**
|
6
6
|
Between 1 and 2147483647 inputs.
|
7
7
|
* **inputs** (variadic, heterogeneous) - **T**:
|
8
8
|
List of tensors for concatenation
|
9
9
|
**Outputs**
|
10
10
|
* **concat_result** (heterogeneous) - **T**:
|
11
11
|
Concatenated tensor
|
12
12
|
**Type Constraints**
|
13
13
|
* **T** in (
|
14
|
-
tensor(bool),
|
15
|
-
tensor(complex128),
|
16
|
-
tensor(complex64),
|
17
14
|
tensor(double),
|
18
15
|
tensor(float),
|
19
|
-
tensor(float16)
|
16
|
+
tensor(float16)
|
20
|
-
tensor(int16),
|
21
|
-
tensor(int32),
|
22
|
-
tensor(int64),
|
23
|
-
tensor(int8),
|
24
|
-
tensor(string),
|
25
|
-
tensor(uint16),
|
26
|
-
tensor(uint32),
|
27
|
-
tensor(uint64),
|
28
|
-
tensor(uint8)
|
29
17
|
):
|
30
|
-
Constrain output types to
|
18
|
+
Constrain output types to float tensors.? +++ ^ ^
|