Concat - 1 vs 4

Files changed (1) hide show
  1. Concat1 → Concat4 +16 -4
Concat1 → Concat4 RENAMED
@@ -1 +1 @@
1
1
  Concatenate a list of tensors into a single tensor
2
2
  **Attributes**
3
- * **axis**:
3
+ * **axis** (required):
4
- Which axis to concat on. Default value is 1.
4
+ Which axis to concat on
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),
14
17
  tensor(double),
15
18
  tensor(float),
16
- tensor(float16)
19
+ 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)
17
29
  ):
18
- Constrain output types to float tensors.? --- ^ ^
30
+ Constrain output types to any tensor type.? ^^ ^^^^^