mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-02 12:41:26 +00:00
* Test Copy kernel code for testing tile distribution logic * Fix the error * Solved the problem * Updated comments and document formatting * Removed unused tile distribution and code cleanup * Added README.md and formatting for CI/CD. --------- Co-authored-by: ThomasNing <thomas.ning@amd.com>
179 lines
7.3 KiB
C++
179 lines
7.3 KiB
C++
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2025, Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "ck_tile/core.hpp"
|
|
#include "ck_tile/ops/common.hpp"
|
|
#include "ck_tile/ops/common/tensor_layout.hpp"
|
|
#include "ck_tile/host.hpp"
|
|
#include "ck_tile/host/kernel_launch.hpp"
|
|
|
|
namespace ck_tile {
|
|
|
|
template <typename BlockWaves, // num warps along seq<M, N>
|
|
typename BlockTile, // block size, seq<M, N>
|
|
typename WaveTile, // warp size, seq<M, N>
|
|
typename Vector> // contiguous elements(vector size) along seq<M, N>
|
|
struct TileCopyShape
|
|
{
|
|
// We split Workgroup waves into two specialized groups.
|
|
// One for reading data from global -> LDS, the other is doing reduction
|
|
static constexpr index_t WaveGroups = 2;
|
|
static constexpr index_t MWarps = BlockWaves::at(number<0>{});
|
|
static constexpr index_t NWarps = BlockWaves::at(number<0>{});
|
|
|
|
static constexpr index_t Block_M = BlockTile::at(number<0>{});
|
|
static constexpr index_t Block_N = BlockTile::at(number<1>{});
|
|
|
|
static constexpr index_t Warp_M = WaveTile::at(number<0>{});
|
|
static constexpr index_t Warp_N = WaveTile::at(number<1>{});
|
|
|
|
static constexpr index_t Vector_M = Vector::at(number<0>{});
|
|
static constexpr index_t Vector_N = Vector::at(number<1>{});
|
|
|
|
static constexpr index_t ThreadPerWarp_M = Warp_M / Vector_M;
|
|
static constexpr index_t ThreadPerWarp_N = Warp_N / Vector_N;
|
|
|
|
static constexpr index_t WarpPerBlock_M =
|
|
integer_divide_ceil(BlockWaves::at(number<0>{}), WaveGroups);
|
|
static constexpr index_t WarpPerBlock_N =
|
|
integer_divide_ceil(BlockWaves::at(number<1>{}), WaveGroups);
|
|
|
|
static constexpr index_t Repeat_M = Block_M / (WarpPerBlock_M * Warp_M);
|
|
static constexpr index_t Repeat_N = Block_N / (WarpPerBlock_N * Warp_N);
|
|
|
|
static constexpr index_t WaveNum = reduce_on_sequence(BlockWaves{}, multiplies{}, number<1>{});
|
|
|
|
static constexpr index_t BlockSize = get_warp_size() * WaveNum;
|
|
static constexpr index_t WaveGroupSize = WaveNum / WaveGroups;
|
|
static_assert(WaveGroupSize == WarpPerBlock_M * WarpPerBlock_N, "Inconsisten wave group size!");
|
|
};
|
|
|
|
template <typename XDataType_, typename BlockShape_>
|
|
struct TileCopyProblem
|
|
{
|
|
using XDataType = remove_cvref_t<XDataType_>;
|
|
using BlockShape = remove_cvref_t<BlockShape_>;
|
|
};
|
|
|
|
template <typename Problem_>
|
|
struct TileCopy
|
|
{
|
|
using Problem = ck_tile::remove_cvref_t<Problem_>;
|
|
using XDataType = typename Problem::XDataType;
|
|
|
|
template <typename Problem>
|
|
CK_TILE_DEVICE static constexpr auto MakeDRAMDistribution()
|
|
{
|
|
using S = typename Problem::BlockShape;
|
|
|
|
constexpr index_t warp_size = get_warp_size();
|
|
constexpr index_t X0 = S::ThreadPerWarp_N; // threads needed along N dimension, fastest
|
|
// changing with given vector size.
|
|
constexpr index_t X1 =
|
|
S::Vector_N; // no. of elements along N dimensions to be read by each thread.
|
|
|
|
constexpr index_t Y0 =
|
|
S::WaveNum / S::WaveGroups; // no. of active warps working in this thread block.
|
|
constexpr index_t Y1 = warp_size / X0; // no. of threads in a warp needed along M dimension.
|
|
constexpr index_t Y2 =
|
|
S::Warp_M /
|
|
(Y1 *
|
|
Y0); // no. of iterations each warp needs to perform to cover the entire tile window.
|
|
|
|
constexpr auto outer_encoding =
|
|
tile_distribution_encoding<sequence<Y0>,
|
|
tuple<sequence<Y1, Y2>, sequence<X0, X1>>,
|
|
tuple<sequence<0>, sequence<1, 2>>,
|
|
tuple<sequence<0>, sequence<0, 0>>,
|
|
sequence<1, 2>,
|
|
sequence<1, 1>>{};
|
|
return make_static_tile_distribution(outer_encoding);
|
|
}
|
|
|
|
CK_TILE_DEVICE void
|
|
operator()(const XDataType* p_x, XDataType* p_y, index_t M, index_t N, index_t warp_id) const
|
|
{
|
|
using S = typename Problem::BlockShape;
|
|
|
|
// LDS Data.
|
|
__shared__ XDataType x_lds[number<S::Block_M>{} * number<S::Block_N>{}];
|
|
XDataType* __restrict__ p_x_lds = static_cast<XDataType*>(x_lds);
|
|
|
|
const auto x_lds_desc = make_naive_tensor_descriptor(
|
|
make_tuple(number<S::Block_M>{}, number<S::Block_N>{}, number<S::Vector_N>{}),
|
|
make_tuple(number<S::Block_N>{}, number<S::Vector_N>{}, 1),
|
|
number<S::Vector_N>{},
|
|
number<1>{});
|
|
|
|
auto x_lds_block_desc = transform_tensor_descriptor(
|
|
x_lds_desc,
|
|
make_tuple(make_pass_through_transform(number<S::Block_M>{}),
|
|
make_merge_transform(
|
|
make_tuple(number<S::Block_N>{} / S::Vector_N, number<S::Vector_N>{}))),
|
|
make_tuple(sequence<1>{}, sequence<0, 2>{}),
|
|
make_tuple(sequence<0>{}, sequence<1>{}));
|
|
|
|
auto x_lds_view = make_tensor_view<address_space_enum::lds>(p_x_lds, x_lds_block_desc);
|
|
|
|
auto x_block_lds_window =
|
|
make_tile_window(x_lds_view,
|
|
make_tuple(number<S::Block_M>{}, number<S::Block_N>{}),
|
|
{0, 0},
|
|
MakeDRAMDistribution<Problem>());
|
|
auto x_block_lds_window_no_dist = make_tile_window(
|
|
x_lds_view, make_tuple(number<S::Block_M>{}, number<S::Block_N>{}), {0, 0});
|
|
|
|
// Input tensor
|
|
const auto iM = get_block_id() * S::Block_M;
|
|
const auto x_m_n = make_naive_tensor_view<address_space_enum::global>(
|
|
p_x, make_tuple(M, N), make_tuple(N, 1), number<S::Vector_N>{}, number<1>{});
|
|
auto x_block_window =
|
|
make_tile_window(x_m_n,
|
|
make_tuple(number<S::Block_M>{}, number<S::Block_N>{}),
|
|
{iM, 0},
|
|
MakeDRAMDistribution<Problem>());
|
|
|
|
// Output tensor
|
|
const auto y_m = make_naive_tensor_view<address_space_enum::global>(
|
|
p_y, make_tuple(M, N), make_tuple(N, 1), number<S::Vector_N>{}, number<1>{});
|
|
|
|
auto y_block_window =
|
|
make_tile_window(y_m, make_tuple(number<S::Block_M>{}, number<S::Block_N>{}), {iM, 0});
|
|
|
|
// Programming logic
|
|
index_t num_n_tile_iteration =
|
|
__builtin_amdgcn_readfirstlane(integer_divide_ceil(N, S::Block_N));
|
|
auto my_id = get_warp_id();
|
|
|
|
auto DramTileDist = x_block_window.get_tile_distribution();
|
|
using dram_reg_tile = decltype(make_static_distributed_tensor<XDataType>(DramTileDist));
|
|
|
|
for(int iN = __builtin_amdgcn_readfirstlane(0); iN < num_n_tile_iteration; ++iN)
|
|
{
|
|
dram_reg_tile dram_tile;
|
|
|
|
if(my_id == warp_id)
|
|
{
|
|
// load from DRAM to registers
|
|
load_tile(dram_tile, x_block_window);
|
|
|
|
// store in lds
|
|
store_tile(x_block_lds_window_no_dist, dram_tile);
|
|
|
|
// read from lds to registers
|
|
load_tile(dram_tile, x_block_lds_window);
|
|
|
|
// store from registers to DRAM
|
|
store_tile(y_block_window, dram_tile);
|
|
}
|
|
__syncthreads();
|
|
move_tile_window(x_block_window, {0, S::Block_N});
|
|
move_tile_window(y_block_window, {0, S::Block_N});
|
|
}
|
|
}
|
|
};
|
|
|
|
} // namespace ck_tile
|