Split - 2 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.
- Split2 → Split11 +2 -4
Split2 → Split11
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Split a tensor into a list of tensors, along the specified
|
2
2
|
'axis'. Lengths of the parts can be specified using argument 'split'.
|
3
3
|
Otherwise, the tensor is split to equal sized parts.
|
4
4
|
**Attributes**
|
5
5
|
* **axis**:
|
6
|
+
Which axis to split on.
|
6
|
-
Which axis to split on. A negative value means counting dimensions
|
7
|
-
from the back. Accepted range is [-rank, rank-1] where r =
|
8
|
-
rank(input).
|
9
7
|
* **split**:
|
10
|
-
length of each output
|
8
|
+
length of each output
|
11
9
|
**Inputs**
|
12
10
|
* **input** (heterogeneous) - **T**:
|
13
11
|
The tensor to split
|
14
12
|
**Outputs**
|
15
13
|
Between 1 and 2147483647 outputs.
|
16
14
|
* **outputs** (variadic, heterogeneous) - **T**:
|
17
15
|
One or more outputs forming list of tensors after splitting
|
18
16
|
**Type Constraints**
|
19
17
|
* **T** in (
|
20
18
|
tensor(bool),
|
21
19
|
tensor(complex128),
|
22
20
|
tensor(complex64),
|
23
21
|
tensor(double),
|
24
22
|
tensor(float),
|
25
23
|
tensor(float16),
|
26
24
|
tensor(int16),
|
27
25
|
tensor(int32),
|
28
26
|
tensor(int64),
|
29
27
|
tensor(int8),
|
30
28
|
tensor(string),
|
31
29
|
tensor(uint16),
|
32
30
|
tensor(uint32),
|
33
31
|
tensor(uint64),
|
34
32
|
tensor(uint8)
|
35
33
|
):
|
36
34
|
Constrain input and output types to all tensor types.
|