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