/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-composable-kernel/checkouts/develop/include/ck_tile/core/tensor/transpose_tile.hpp Source File

/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-composable-kernel/checkouts/develop/include/ck_tile/core/tensor/transpose_tile.hpp Source File#

Composable Kernel: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-composable-kernel/checkouts/develop/include/ck_tile/core/tensor/transpose_tile.hpp Source File
transpose_tile.hpp
Go to the documentation of this file.
1 // Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
2 // SPDX-License-Identifier: MIT
3 
4 #pragma once
5 
19 
20 namespace ck_tile {
21 namespace detail {
22 
23 template <typename OutTensor, typename InTensor>
25  const InTensor& in_tensor)
26 {
27  constexpr auto I0 = number<0>{};
28 
29  static_assert(std::is_same_v<typename InTensor::DataType, typename OutTensor::DataType>,
30  "Data type for InTensor and OutTensor must be the same!");
31 
32  using DataType = typename InTensor::DataType;
33 
34  constexpr auto y_in_desc = InTensor::get_tile_distribution().get_ys_to_d_descriptor();
35  constexpr auto y_out_desc = OutTensor::get_tile_distribution().get_ys_to_d_descriptor();
36 
37  // In swapped Hs case <Y,X> -> <X,Y> tile
38  // we have same rh_major, but reversed rh_minor!
39  constexpr index_t NDimY = InTensor::get_tile_distribution().get_num_of_dimension_y();
40 
41  constexpr auto y_dim_out_to_in = [&] {
42  map<index_t, index_t> y_dim_out_to_in_;
43 
44  static_for<0, NDimY, 1>{}([&](auto i) { y_dim_out_to_in_(i) = NDimY - 1 - i; });
45 
46  return y_dim_out_to_in_;
47  }();
48 
49  constexpr auto y_lengths = to_sequence(y_in_desc.get_lengths());
50 
51  // input and output vector dim in the order of input Y dims
52  constexpr index_t y_dim_vec_in = NDimY - 1;
53  constexpr index_t y_dim_vec_out = 0;
54 
55  // vector lengths
56  constexpr index_t vec_length_in = y_lengths[y_dim_vec_in];
57  constexpr index_t vec_length_out = y_lengths[y_dim_vec_out];
58 
59  // # of vectors
60  constexpr index_t num_vec_in = vec_length_out;
61  constexpr index_t num_vec_out = vec_length_in;
62 
63  // SFC
64  constexpr auto scalars_per_access_arr = generate_array(
65  [&](auto i) {
66  if constexpr(vec_length_in == 1)
67  return 1;
68  else
69  return (i == y_dim_vec_in || i == y_dim_vec_out) ? y_lengths[i] : 1;
70  },
71  number<NDimY>{});
72 
73  constexpr auto scalars_per_access = TO_SEQUENCE(scalars_per_access_arr, NDimY);
74 
75  using SFC_Y = space_filling_curve<decltype(y_lengths),
77  decltype(scalars_per_access)>;
78 
79  constexpr index_t num_access = SFC_Y::get_num_of_access();
80 
81  static_assert(num_access > 0, "wrong! num_access should be larger than 0");
82 
83  if constexpr(num_vec_in == 1 || num_vec_out == 1)
84  {
85  // loop over SFC
86  static_for<0, num_access, 1>{}([&](auto iAccess) {
87  // data index [y0, y1, ...] in the order of input tensor
88  constexpr auto idx_y_start = SFC_Y::get_index(iAccess);
89  constexpr auto idx_y_in =
90  generate_tuple([&](auto ii) { return idx_y_start[ii].value; }, number<NDimY>{});
91  constexpr index_t in_offset = y_in_desc.calculate_offset(idx_y_in);
92  static_assert(in_offset % vec_length_in == 0);
93  constexpr auto idx_y_out_tmp =
94  generate_array([&](auto ii) { return idx_y_start[ii].value; }, number<NDimY>{});
95  constexpr auto idx_y_out =
96  container_reorder_given_new2old(idx_y_out_tmp, y_dim_out_to_in);
97  constexpr index_t out_offset = y_out_desc.calculate_offset(idx_y_out);
98  if constexpr(vec_length_in == 1)
99  {
100 
101  out_tensor.get_thread_buffer()[number<out_offset>{}] =
102  in_tensor.get_thread_buffer()[number<in_offset>{}];
103  }
104  else
105  {
106  using Vec = array<DataType, vec_length_in>;
107  out_tensor.get_thread_buffer().template get_as<Vec>(
109  in_tensor.get_thread_buffer().template get_as<Vec>(
111  }
112  });
113  }
114  else
115  {
116  using InVec = array<DataType, vec_length_in>;
117  using OutVec = array<DataType, vec_length_out>;
118 
119  // in/out vectors to be transposed
122 
123  // loop over SFC and do transpose
124  static_for<0, num_access, 1>{}([&](auto iAccess) {
125  // data index [y0, y1, ...] in the order of input tensor
126  constexpr auto idx_y_start = SFC_Y::get_index(iAccess);
127 
128  // get input vectors
129  static_for<0, num_vec_in, 1>{}([&](auto i) {
130  constexpr auto idx_y_in = generate_tuple(
131  [&](auto ii) {
132  return ii == y_dim_vec_out ? idx_y_start[ii] + i : idx_y_start[ii];
133  },
134  number<NDimY>{});
135 
136  constexpr index_t in_offset = y_in_desc.calculate_offset(idx_y_in);
137  static_assert(in_offset % vec_length_in == 0);
138 
139  in_vectors(i).template get_as<InVec>()(I0) =
140  in_tensor.get_thread_buffer()
141  .template get_as<InVec>()[number<in_offset / vec_length_in>{}];
142  });
143 
144  // transpose
145  transpose_vectors<DataType, num_vec_in, num_vec_out>{}(in_vectors, out_vectors);
146 
147  // set output vectors
148  static_for<0, num_vec_out, 1>{}([&](auto i) {
149  constexpr auto idx_y_out_tmp = generate_array(
150  [&](auto ii) {
151  return ii == y_dim_vec_in ? idx_y_start[ii] + i : idx_y_start[ii];
152  },
153  number<NDimY>{});
154 
155  constexpr auto idx_y_out =
156  container_reorder_given_new2old(idx_y_out_tmp, y_dim_out_to_in);
157 
158  constexpr index_t out_offset = y_out_desc.calculate_offset(idx_y_out);
159  static_assert(out_offset % vec_length_out == 0);
160 
161  out_tensor.get_thread_buffer().template set_as<OutVec>(
163  out_vectors[i].template get_as<OutVec>()[I0]);
164  });
165  });
166  }
167 }
168 
169 } // namespace detail
170 
171 template <typename OutTensor, typename InTensor>
172 CK_TILE_DEVICE void transpose_tile2d(OutTensor& out, const InTensor& in)
173 {
174  using InDataType = typename InTensor::DataType;
175  using OutDataType = typename OutTensor::DataType;
176 
177  using InTileDistr = typename InTensor::StaticTileDistribution;
178  using OutTileDistr = typename OutTensor::StaticTileDistribution;
179 
180  using InDstrEncode = typename InTileDistr::DstrEncode;
181  using OutDstrEncode = typename OutTileDistr::DstrEncode;
182 
183  using InThreadTensorDesc = typename InTensor::ThreadTensorDesc;
184  using OutThreadTensorDesc = typename OutTensor::ThreadTensorDesc;
185 
186  // Ys:
187  constexpr auto in_thread_desc_lengths = InThreadTensorDesc{}.get_lengths();
188  constexpr auto out_thread_desc_lengths = OutThreadTensorDesc{}.get_lengths();
189 
190  // type convert
191  const auto in_tmp = [&]() {
192  if constexpr(std::is_same_v<OutDataType, InDataType>)
193  {
194  return in;
195  }
196  else
197  {
198  return tile_elementwise_in(type_convert<OutDataType, InDataType>, in);
199  }
200  }();
201 
202  // Scenario where we switch from tile <Y, X> -> <X, Y> - only 2D tiles!
203  // we preserve Ps but swap Ys: <Y1, Y0> -> <Y0, Y1>
204  if constexpr(InDstrEncode::rs_lengths_ == OutDstrEncode::rs_lengths_ &&
205  InDstrEncode::hs_lengthss_ == tuple_reverse(OutDstrEncode::hs_lengthss_) &&
206  InDstrEncode::NDimY == OutDstrEncode::NDimY && InDstrEncode::NDimY == 2 &&
207  in_thread_desc_lengths == tuple_reverse(out_thread_desc_lengths))
208  // Any condition on Ps ??
209  // InDstrEncode::ps_to_rhss_major_ == OutDstrEncode::ps_to_rhss_major_ &&
210  // InDstrEncode::ps_to_rhss_minor_ == OutDstrEncode::ps_to_rhss_minor_ &&
211  {
213  }
214  else
215  {
216  static_assert(false, "Provided tensors could not be transposed!");
217  }
218 }
219 
220 } // namespace ck_tile
#define CK_TILE_DEVICE
Definition: config.hpp:45
CK_TILE_DEVICE void transpose_tile2d_impl_in_thread(OutTensor &out_tensor, const InTensor &in_tensor)
Definition: transpose_tile.hpp:24
Definition: cluster_descriptor.hpp:13
CK_TILE_DEVICE auto tile_elementwise_in(const InElementFunc &in_element_func, const InTensor &... in_dstr_tensors)
Definition: tile_elementwise.hpp:40
constexpr CK_TILE_HOST_DEVICE auto container_reorder_given_new2old(const array< TData, NSize > &old_array, sequence< IRs... >)
Definition: container_helper.hpp:39
constexpr CK_TILE_HOST_DEVICE auto generate_array(F &&f, number< N >)
Definition: sequence.hpp:1126
int32_t index_t
Definition: integer.hpp:9
CK_TILE_DEVICE void transpose_tile2d(OutTensor &out, const InTensor &in)
Definition: transpose_tile.hpp:172
constexpr CK_TILE_HOST_DEVICE auto to_sequence(tuple< number< Is >... >)
Definition: sequence.hpp:1066
constexpr CK_TILE_HOST_DEVICE auto tuple_reverse(const tuple< Ts... > &t)
Definition: tuple.hpp:583
constexpr CK_TILE_HOST_DEVICE auto generate_tuple(F &&f, number< N >)
Definition: tuple.hpp:429
typename std::conditional< kHasContent, type0, type1 >::type type
Definition: sequence.hpp:313
A fixed-size array container similar to std::array with additional utilities.
Definition: array.hpp:43
Definition: integral_constant.hpp:13
Definition: map.hpp:16
Definition: space_filling_curve.hpp:20
Definition: functional.hpp:43
Definition: debug.hpp:27
Definition: transpose_vectors.hpp:20
#define TO_SEQUENCE(a, n)
Definition: to_sequence.hpp:10