Concat - 4 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.

Files changed (1) hide show
  1. Concat4 → Concat11 +2 -3
Concat4 → Concat11 RENAMED
@@ -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.
1
+ Concatenate a list of tensors into a single tensor
2
2
  **Attributes**
3
3
  * **axis** (required):
4
+ Which axis to concat on
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
14
  tensor(bool),
16
15
  tensor(complex128),
17
16
  tensor(complex64),
18
17
  tensor(double),
19
18
  tensor(float),
20
19
  tensor(float16),
21
20
  tensor(int16),
22
21
  tensor(int32),
23
22
  tensor(int64),
24
23
  tensor(int8),
25
24
  tensor(string),
26
25
  tensor(uint16),
27
26
  tensor(uint32),
28
27
  tensor(uint64),
29
28
  tensor(uint8)
30
29
  ):
31
30
  Constrain output types to any tensor type.