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