Transpose - 1 vs 13

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