23 template <
typename OutTensor,
typename InTensor>
25 const InTensor& in_tensor)
29 static_assert(std::is_same_v<typename InTensor::DataType, typename OutTensor::DataType>,
30 "Data type for InTensor and OutTensor must be the same!");
32 using DataType =
typename InTensor::DataType;
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();
40 constexpr
auto get_rh_minor_to_y = [](
auto dstr_tensor) {
41 using DstrEncode =
typename decltype(dstr_tensor.get_tile_distribution())::DstrEncode;
46 constexpr
index_t rh_minor = DstrEncode::ys_to_rhs_minor_[i];
48 rh_minor_to_y_(rh_minor) = i;
51 return rh_minor_to_y_;
56 constexpr
auto rh_minor_to_y_in = get_rh_minor_to_y(InTensor{});
57 constexpr
auto rh_minor_to_y_out = get_rh_minor_to_y(OutTensor{});
60 constexpr
auto y_dim_out_to_in = [&] {
63 for(
const auto& [rh_minor, y_out] : rh_minor_to_y_out)
65 y_dim_out_to_in_(y_out) = rh_minor_to_y_in[rh_minor];
68 return y_dim_out_to_in_;
71 constexpr
index_t NDimY = InTensor::get_tile_distribution().get_num_of_dimension_y();
72 constexpr
auto y_lengths =
to_sequence(y_in_desc.get_lengths());
75 constexpr
index_t y_dim_vec_in = NDimY - 1;
76 constexpr
index_t y_dim_vec_out = y_dim_out_to_in[NDimY - 1];
79 constexpr
index_t vec_length_in = y_lengths[y_dim_vec_in];
80 constexpr
index_t vec_length_out = y_lengths[y_dim_vec_out];
83 constexpr
index_t num_vec_in = vec_length_out;
84 constexpr
index_t num_vec_out = vec_length_in;
91 [&](
auto i) {
return (i == y_dim_vec_in or i == y_dim_vec_out) ? y_lengths[i] : 1; },
94 constexpr
auto scalars_per_access =
TO_SEQUENCE(scalars_per_access_arr, NDimY);
98 decltype(scalars_per_access)>;
100 constexpr
index_t num_access = SFC_Y::get_num_of_access();
102 static_assert(num_access > 0,
"wrong! num_access should be larger than 0");
111 constexpr
auto idx_y_start = SFC_Y::get_index(iAccess);
117 return ii == y_dim_vec_out ? idx_y_start[ii] + i : idx_y_start[ii];
121 constexpr
index_t in_offset = y_in_desc.calculate_offset(idx_y_in);
122 static_assert(in_offset % vec_length_in == 0);
124 in_vectors(i).template get_as<InVec>()(I0) =
125 in_tensor.get_thread_buffer()
126 .template get_as<InVec>()[
number<in_offset / vec_length_in>{}];
135 [&](
auto ii) {
return ii == y_dim_vec_in ? idx_y_start[ii] + i : idx_y_start[ii]; },
138 constexpr
auto idx_y_out =
141 constexpr
index_t out_offset = y_out_desc.calculate_offset(idx_y_out);
142 static_assert(out_offset % vec_length_out == 0);
144 out_tensor.get_thread_buffer().template set_as<OutVec>(
146 out_vectors[i].template get_as<OutVec>()[I0]);
153 template <
typename OutTensor,
typename InTensor>
156 using InDataType =
typename InTensor::DataType;
157 using OutDataType =
typename OutTensor::DataType;
159 using InTileDistr =
typename InTensor::StaticTileDistribution;
160 using OutTileDistr =
typename OutTensor::StaticTileDistribution;
162 using InDstrEncode =
typename InTileDistr::DstrEncode;
163 using OutDstrEncode =
typename OutTileDistr::DstrEncode;
165 using InThreadTensorDesc =
typename InTensor::ThreadTensorDesc;
166 using OutThreadTensorDesc =
typename OutTensor::ThreadTensorDesc;
169 constexpr
auto in_thread_desc_lengths = InThreadTensorDesc{}.get_lengths();
170 constexpr
auto out_thread_desc_lengths = OutThreadTensorDesc{}.get_lengths();
173 const auto in_tmp = [&]() {
174 if constexpr(std::is_same_v<OutDataType, InDataType>)
186 if constexpr(InDstrEncode::rs_lengths_ == OutDstrEncode::rs_lengths_ &&
187 InDstrEncode::hs_lengthss_ ==
tuple_reverse(OutDstrEncode::hs_lengthss_) &&
188 InDstrEncode::NDimY == OutDstrEncode::NDimY && InDstrEncode::NDimY == 2 &&
189 in_thread_desc_lengths ==
tuple_reverse(out_thread_desc_lengths))
198 static_assert(
false,
"Provided tensors could not be transposed!");
#define CK_TILE_DEVICE
Definition: config.hpp:40
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
tuple_array< T, N > thread_buffer
Definition: thread_buffer.hpp:14
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:1106
int32_t index_t
Definition: integer.hpp:9
CK_TILE_DEVICE void transpose_tile2d(OutTensor &out, const InTensor &in)
Definition: transpose_tile.hpp:154
constexpr CK_TILE_HOST_DEVICE auto to_sequence(tuple< number< Is >... >)
Definition: sequence.hpp:1046
constexpr CK_TILE_HOST_DEVICE auto tuple_reverse(const tuple< Ts... > &t)
Definition: tuple.hpp:542
constexpr CK_TILE_HOST_DEVICE auto generate_tuple(F &&f, number< N >)
Definition: tuple.hpp:400
typename std::conditional< kHasContent, type0, type1 >::type type
Definition: sequence.hpp:293
Definition: integral_constant.hpp:13
Definition: space_filling_curve.hpp:20
Definition: functional.hpp:43
Definition: transpose_vectors.hpp:20
#define TO_SEQUENCE(a, n)
Definition: to_sequence.hpp:10