Transpose - 1 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.

Files changed (1) hide show
  1. Transpose1 → Transpose13 +0 -1
Transpose1 → Transpose13 RENAMED
@@ -1 +1 @@
1
1
  Transpose the input tensor similar to numpy.transpose. For example, when
2
2
  perm=(1, 0, 2), given an input tensor of shape (1, 2, 3), the output shape
3
3
  will be (2, 1, 3).
4
4
  **Attributes**
5
5
  * **perm**:
6
6
  A list of integers. By default, reverse the dimensions, otherwise
7
7
  permute the axes according to the values given.
8
8
  **Inputs**
9
9
  * **data** (heterogeneous) - **T**:
10
10
  An input tensor.
11
11
  **Outputs**
12
12
  * **transposed** (heterogeneous) - **T**:
13
13
  Transposed output.
14
14
  **Type Constraints**
15
15
  * **T** in (
16
- tensor(bfloat16),
17
16
  tensor(bool),
18
17
  tensor(complex128),
19
18
  tensor(complex64),
20
19
  tensor(double),
21
20
  tensor(float),
22
21
  tensor(float16),
23
22
  tensor(int16),
24
23
  tensor(int32),
25
24
  tensor(int64),
26
25
  tensor(int8),
27
26
  tensor(string),
28
27
  tensor(uint16),
29
28
  tensor(uint32),
30
29
  tensor(uint64),
31
30
  tensor(uint8)
32
31
  ):
33
32
  Constrain input and output types to all tensor types.