Concat - 11 vs 13

Files changed (1) hide show
  1. Concat11 → Concat13 +1 -0
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),
15
16
  tensor(bool),
16
17
  tensor(complex128),
17
18
  tensor(complex64),
18
19
  tensor(double),
19
20
  tensor(float),
20
21
  tensor(float16),
21
22
  tensor(int16),
22
23
  tensor(int32),
23
24
  tensor(int64),
24
25
  tensor(int8),
25
26
  tensor(string),
26
27
  tensor(uint16),
27
28
  tensor(uint32),
28
29
  tensor(uint64),
29
30
  tensor(uint8)
30
31
  ):
31
32
  Constrain output types to any tensor type.