* Merge with private repo * Update README * Update README * Update README * Add PyTorch requirements * Fix sync scopes for MQA logits (#256) * Update README
362 lines
19 KiB
C++
362 lines
19 KiB
C++
#pragma once
|
|
|
|
#include <torch/python.h>
|
|
|
|
#include "../../jit/compiler.hpp"
|
|
#include "../../jit/device_runtime.hpp"
|
|
#include "../../jit/kernel_runtime.hpp"
|
|
#include "../../utils/exception.hpp"
|
|
#include "../../utils/format.hpp"
|
|
#include "../heuristics/sm90.hpp"
|
|
|
|
#include "epilogue.hpp"
|
|
#include "runtime_utils.hpp"
|
|
|
|
namespace deep_gemm {
|
|
|
|
class SM90FP8Gemm1D2DRuntime final: public LaunchRuntime<SM90FP8Gemm1D2DRuntime> {
|
|
public:
|
|
struct Args {
|
|
GemmDesc gemm_desc;
|
|
GemmConfig gemm_config;
|
|
LaunchArgs launch_args;
|
|
// TODO: move this into `gemm_desc`
|
|
const std::optional<std::string>& epilogue_type;
|
|
|
|
cute::UMMA::Major major_sfb;
|
|
void *sfb, *grouped_layout;
|
|
CUtensorMap tensor_map_a;
|
|
CUtensorMap tensor_map_b;
|
|
CUtensorMap tensor_map_d;
|
|
CUtensorMap tensor_map_sfa;
|
|
};
|
|
|
|
static std::string generate_impl(const Args& args) {
|
|
return fmt::format(R"(
|
|
#include <deep_gemm/impls/sm90_fp8_gemm_1d2d.cuh>
|
|
|
|
using namespace deep_gemm;
|
|
|
|
static void __instantiate_kernel() {{
|
|
auto ptr = reinterpret_cast<void*>(&sm90_fp8_gemm_1d2d_impl<
|
|
{},
|
|
{}, {}, {},
|
|
{},
|
|
{}, {}, {},
|
|
{}, {}, {},
|
|
{},
|
|
{}, {},
|
|
{}, {},
|
|
{}, {},
|
|
{}
|
|
>);
|
|
}};
|
|
)",
|
|
// TODO: add CD dtype
|
|
to_string(args.major_sfb),
|
|
get_compiled_dim(args.gemm_desc.m, 'm', args.gemm_desc.compiled_dims),
|
|
get_compiled_dim(args.gemm_desc.n, 'n', args.gemm_desc.compiled_dims),
|
|
get_compiled_dim(args.gemm_desc.k, 'k', args.gemm_desc.compiled_dims),
|
|
args.gemm_desc.num_groups,
|
|
args.gemm_config.layout.block_m, args.gemm_config.layout.block_n, args.gemm_config.layout.block_k,
|
|
args.gemm_config.storage_config.swizzle_a_mode, args.gemm_config.storage_config.swizzle_b_mode, args.gemm_config.storage_config.swizzle_cd_mode,
|
|
args.gemm_config.pipeline_config.num_stages,
|
|
args.gemm_config.launch_config.num_tma_threads, args.gemm_config.launch_config.num_math_threads,
|
|
args.gemm_config.layout.get_cluster_size(), args.gemm_config.layout.cluster_n > 1,
|
|
args.gemm_config.launch_config.num_sms, to_string(args.gemm_desc.gemm_type),
|
|
get_default_epilogue_type(args.epilogue_type));
|
|
}
|
|
|
|
static void launch_impl(const KernelHandle& kernel, const LaunchConfigHandle& config, Args args) {
|
|
// TODO: optimize `args` copy
|
|
DG_CUDA_UNIFIED_CHECK(launch_kernel(kernel, config,
|
|
args.sfb, args.grouped_layout,
|
|
args.gemm_desc.m, args.gemm_desc.n, args.gemm_desc.k,
|
|
args.tensor_map_a, args.tensor_map_b,
|
|
args.tensor_map_d, args.tensor_map_sfa));
|
|
}
|
|
};
|
|
|
|
static void sm90_fp8_gemm_1d2d(const torch::Tensor& a, const torch::Tensor& sfa,
|
|
const torch::Tensor& b, const torch::Tensor& sfb,
|
|
const std::optional<torch::Tensor>& c,
|
|
const torch::Tensor& d,
|
|
const int& m, const int& n, const int& k,
|
|
const cute::UMMA::Major& major_a, const cute::UMMA::Major& major_b, const cute::UMMA::Major& major_sfb,
|
|
const std::string& compiled_dims,
|
|
const std::optional<std::string>& epilogue_type = std::nullopt) {
|
|
DG_HOST_ASSERT(not c.has_value() and d.scalar_type() == torch::kBFloat16);
|
|
DG_HOST_ASSERT(major_a == cute::UMMA::Major::K and major_b == cute::UMMA::Major::K);
|
|
|
|
const auto desc = GemmDesc {
|
|
.gemm_type = GemmType::Normal,
|
|
.kernel_type = KernelType::Kernel1D2D,
|
|
.m = m, .n = n, .k = k, .num_groups = 1,
|
|
.a_dtype = a.scalar_type(), .b_dtype = b.scalar_type(),
|
|
.cd_dtype = d.scalar_type(),
|
|
.major_a = major_a, .major_b = major_b,
|
|
.with_accumulation = c.has_value(),
|
|
.num_sms = device_runtime->get_num_sms(),
|
|
.tc_util = device_runtime->get_tc_util(), .compiled_dims = compiled_dims
|
|
};
|
|
const auto config = get_best_config<SM90ArchSpec>(desc);
|
|
|
|
// Requires no TMA splits
|
|
DG_HOST_ASSERT(config.storage_config.swizzle_a_mode == config.layout.block_k);
|
|
DG_HOST_ASSERT(config.storage_config.swizzle_b_mode == config.layout.block_k);
|
|
const auto tensor_map_a = make_tma_a_desc(major_a, a, m, k,
|
|
config.storage_config.load_block_m,
|
|
config.layout.block_k,
|
|
static_cast<int>(a.stride(get_non_contiguous_dim(major_a))), 1,
|
|
config.storage_config.swizzle_a_mode);
|
|
const auto tensor_map_b = make_tma_b_desc(major_b, b, n, k,
|
|
config.storage_config.load_block_n,
|
|
config.layout.block_k,
|
|
static_cast<int>(b.stride(get_non_contiguous_dim(major_b))), 1,
|
|
config.storage_config.swizzle_b_mode);
|
|
const auto tensor_map_d = make_tma_cd_desc(d, m, static_cast<int>(d.size(-1)),
|
|
config.storage_config.store_block_m,
|
|
config.storage_config.store_block_n,
|
|
static_cast<int>(d.stride(-2)), 1,
|
|
config.storage_config.swizzle_cd_mode);
|
|
const auto tensor_map_sfa = make_tma_sf_desc(cute::UMMA::Major::MN, sfa, m, k,
|
|
config.layout.block_m, config.layout.block_k, 1, 0);
|
|
|
|
// Launch
|
|
const SM90FP8Gemm1D2DRuntime::Args& args = {
|
|
.gemm_desc = desc,
|
|
.gemm_config = config,
|
|
.launch_args = LaunchArgs(config.launch_config.num_sms, config.launch_config.num_threads,
|
|
config.pipeline_config.smem_size,
|
|
config.layout.get_cluster_size()),
|
|
.epilogue_type = epilogue_type,
|
|
.major_sfb = major_sfb,
|
|
.sfb = sfb.data_ptr(),
|
|
.grouped_layout = nullptr,
|
|
.tensor_map_a = tensor_map_a,
|
|
.tensor_map_b = tensor_map_b,
|
|
.tensor_map_d = tensor_map_d,
|
|
.tensor_map_sfa = tensor_map_sfa,
|
|
};
|
|
const auto code = SM90FP8Gemm1D2DRuntime::generate(args);
|
|
const auto runtime = compiler->build("sm90_fp8_gemm_1d2d", code);
|
|
SM90FP8Gemm1D2DRuntime::launch(runtime, args);
|
|
}
|
|
|
|
static void sm90_m_grouped_fp8_gemm_contiguous_1d2d(const torch::Tensor& a, const torch::Tensor& sfa,
|
|
const torch::Tensor& b, const torch::Tensor& sfb,
|
|
const torch::Tensor& d,
|
|
const torch::Tensor& m_indices,
|
|
const int& num_groups, const int& m, const int& n, const int& k,
|
|
const cute::UMMA::Major& major_a, const cute::UMMA::Major& major_b, const cute::UMMA::Major& major_sfb,
|
|
const std::string& compiled_dims,
|
|
const bool& use_psum_layout,
|
|
const std::optional<int>& expected_m_for_psum_layout) {
|
|
DG_HOST_ASSERT(d.scalar_type() == torch::kBFloat16);
|
|
DG_HOST_ASSERT(major_a == cute::UMMA::Major::K and major_b == cute::UMMA::Major::K);
|
|
|
|
const auto gemm_type = use_psum_layout ?
|
|
GemmType::MGroupedContiguousWithPsumLayout : GemmType::MGroupedContiguous;
|
|
|
|
// Only psum layout can use expected m
|
|
if (expected_m_for_psum_layout)
|
|
DG_HOST_ASSERT(use_psum_layout);
|
|
|
|
const auto desc = GemmDesc {
|
|
.gemm_type = gemm_type,
|
|
.kernel_type = KernelType::Kernel1D2D,
|
|
.m = m, .n = n, .k = k, .num_groups = num_groups,
|
|
.a_dtype = a.scalar_type(), .b_dtype = b.scalar_type(),
|
|
.cd_dtype = d.scalar_type(),
|
|
.major_a = major_a, .major_b = major_b,
|
|
.with_accumulation = false,
|
|
.num_sms = device_runtime->get_num_sms(),
|
|
.tc_util = device_runtime->get_tc_util(), .compiled_dims = compiled_dims,
|
|
.expected_m = expected_m_for_psum_layout.value_or(m),
|
|
.expected_n = n, .expected_k = k,
|
|
.expected_num_groups = expected_m_for_psum_layout.has_value() ? num_groups : 1
|
|
};
|
|
const auto config = get_best_config<SM90ArchSpec>(desc);
|
|
|
|
// Requires no TMA splits
|
|
DG_HOST_ASSERT(config.storage_config.swizzle_a_mode == config.layout.block_k);
|
|
DG_HOST_ASSERT(config.storage_config.swizzle_b_mode == config.layout.block_k);
|
|
const auto tensor_map_a = make_tma_a_desc(major_a, a, m, k,
|
|
config.storage_config.load_block_m,
|
|
config.layout.block_k,
|
|
static_cast<int>(a.stride(get_non_contiguous_dim(major_a))), 1,
|
|
config.storage_config.swizzle_a_mode);
|
|
const auto tensor_map_b = make_tma_b_desc(major_b, b, n, k,
|
|
config.storage_config.load_block_n,
|
|
config.layout.block_k,
|
|
static_cast<int>(b.stride(get_non_contiguous_dim(major_b))), num_groups,
|
|
config.storage_config.swizzle_b_mode);
|
|
const auto tensor_map_d = make_tma_cd_desc(d, m, n,
|
|
config.storage_config.store_block_m,
|
|
config.storage_config.store_block_n,
|
|
static_cast<int>(d.stride(-2)), 1,
|
|
config.storage_config.swizzle_cd_mode);
|
|
const auto tensor_map_sfa = make_tma_sf_desc(cute::UMMA::Major::MN, sfa, m, k,
|
|
config.layout.block_m, config.layout.block_k, 1, 0);
|
|
|
|
// Launch
|
|
const SM90FP8Gemm1D2DRuntime::Args& args = {
|
|
.gemm_desc = desc,
|
|
.gemm_config = config,
|
|
.launch_args = LaunchArgs(config.launch_config.num_sms, config.launch_config.num_threads,
|
|
config.pipeline_config.smem_size,
|
|
config.layout.get_cluster_size()),
|
|
.epilogue_type = std::nullopt,
|
|
.major_sfb = major_sfb,
|
|
.sfb = sfb.data_ptr(),
|
|
.grouped_layout = m_indices.data_ptr(),
|
|
.tensor_map_a = tensor_map_a,
|
|
.tensor_map_b = tensor_map_b,
|
|
.tensor_map_d = tensor_map_d,
|
|
.tensor_map_sfa = tensor_map_sfa,
|
|
};
|
|
const auto code = SM90FP8Gemm1D2DRuntime::generate(args);
|
|
const auto runtime = compiler->build("sm90_m_grouped_fp8_gemm_contiguous_1d2d", code);
|
|
SM90FP8Gemm1D2DRuntime::launch(runtime, args);
|
|
}
|
|
|
|
static void sm90_m_grouped_fp8_gemm_masked_1d2d(const torch::Tensor& a, const torch::Tensor& sfa,
|
|
const torch::Tensor& b, const torch::Tensor& sfb,
|
|
const torch::Tensor& d,
|
|
const torch::Tensor& masked_m,
|
|
const int& num_groups, const int& m, const int& n, const int& k,
|
|
const int& expected_m,
|
|
const cute::UMMA::Major& major_a, const cute::UMMA::Major& major_b, const cute::UMMA::Major& major_sfb,
|
|
const std::string& compiled_dims) {
|
|
DG_HOST_ASSERT(d.scalar_type() == torch::kBFloat16);
|
|
DG_HOST_ASSERT(major_a == cute::UMMA::Major::K and major_b == cute::UMMA::Major::K);
|
|
|
|
const auto desc = GemmDesc {
|
|
.gemm_type = GemmType::MGroupedMasked,
|
|
.kernel_type = KernelType::Kernel1D2D,
|
|
.m = m, .n = n, .k = k, .num_groups = num_groups,
|
|
.a_dtype = a.scalar_type(), .b_dtype = b.scalar_type(),
|
|
.cd_dtype = d.scalar_type(),
|
|
.major_a = major_a, .major_b = major_b,
|
|
.with_accumulation = false,
|
|
.num_sms = device_runtime->get_num_sms(),
|
|
.tc_util = device_runtime->get_tc_util(), .compiled_dims = compiled_dims,
|
|
.expected_m = expected_m, .expected_n = n, .expected_k = k, .expected_num_groups = num_groups
|
|
};
|
|
const auto config = get_best_config<SM90ArchSpec>(desc);
|
|
|
|
// Requires no TMA splits
|
|
DG_HOST_ASSERT(config.storage_config.swizzle_a_mode == config.layout.block_k);
|
|
DG_HOST_ASSERT(config.storage_config.swizzle_b_mode == config.layout.block_k);
|
|
const auto tensor_map_a = make_tma_a_desc(major_a, a, m, k,
|
|
config.storage_config.load_block_m,
|
|
config.layout.block_k,
|
|
static_cast<int>(a.stride(get_non_contiguous_dim(major_a))), num_groups,
|
|
config.storage_config.swizzle_a_mode);
|
|
const auto tensor_map_b = make_tma_b_desc(major_b, b, n, k,
|
|
config.storage_config.load_block_n,
|
|
config.layout.block_k,
|
|
static_cast<int>(b.stride(get_non_contiguous_dim(major_b))), num_groups,
|
|
config.storage_config.swizzle_b_mode);
|
|
const auto tensor_map_d = make_tma_cd_desc(d, m, n,
|
|
config.storage_config.store_block_m,
|
|
config.storage_config.store_block_n,
|
|
static_cast<int>(d.stride(-2)), num_groups,
|
|
config.storage_config.swizzle_cd_mode);
|
|
const auto tensor_map_sfa = make_tma_sf_desc(cute::UMMA::Major::MN, sfa, m, k,
|
|
config.layout.block_m, config.layout.block_k, num_groups, 0);
|
|
|
|
// Launch
|
|
const SM90FP8Gemm1D2DRuntime::Args& args = {
|
|
.gemm_desc = desc,
|
|
.gemm_config = config,
|
|
.launch_args = LaunchArgs(config.launch_config.num_sms, config.launch_config.num_threads,
|
|
config.pipeline_config.smem_size,
|
|
config.layout.get_cluster_size()),
|
|
.epilogue_type = std::nullopt,
|
|
.major_sfb = major_sfb,
|
|
.sfb = sfb.data_ptr(),
|
|
.grouped_layout = masked_m.data_ptr(),
|
|
.tensor_map_a = tensor_map_a,
|
|
.tensor_map_b = tensor_map_b,
|
|
.tensor_map_d = tensor_map_d,
|
|
.tensor_map_sfa = tensor_map_sfa,
|
|
};
|
|
const auto code = SM90FP8Gemm1D2DRuntime::generate(args);
|
|
const auto runtime = compiler->build("sm90_fp8_m_grouped_gemm_masked_1d2d", code);
|
|
SM90FP8Gemm1D2DRuntime::launch(runtime, args);
|
|
}
|
|
|
|
static void sm90_fp8_bmm(const torch::Tensor& a, const torch::Tensor& sfa,
|
|
const torch::Tensor& b, const torch::Tensor& sfb,
|
|
const std::optional<torch::Tensor>& c,
|
|
const torch::Tensor& d,
|
|
const int& batch_size, const int& m, const int& n, const int& k,
|
|
const cute::UMMA::Major& major_a, const cute::UMMA::Major& major_b, const cute::UMMA::Major& major_sfb,
|
|
const std::string& compiled_dims) {
|
|
DG_HOST_ASSERT(d.scalar_type() == torch::kBFloat16);
|
|
DG_HOST_ASSERT(major_a == cute::UMMA::Major::K and major_b == cute::UMMA::Major::K);
|
|
|
|
const auto desc = GemmDesc {
|
|
.gemm_type = GemmType::Batched,
|
|
.kernel_type = KernelType::Kernel1D2D,
|
|
.m = m, .n = n, .k = k, .num_groups = batch_size,
|
|
.a_dtype = a.scalar_type(), .b_dtype = b.scalar_type(),
|
|
.cd_dtype = d.scalar_type(),
|
|
.major_a = major_a, .major_b = major_b,
|
|
.with_accumulation = c.has_value(),
|
|
.num_sms = device_runtime->get_num_sms(),
|
|
.tc_util = device_runtime->get_tc_util(), .compiled_dims = compiled_dims
|
|
};
|
|
const auto config = get_best_config<SM90ArchSpec>(desc);
|
|
|
|
// Requires no TMA splits
|
|
DG_HOST_ASSERT(config.storage_config.swizzle_a_mode == config.layout.block_k);
|
|
DG_HOST_ASSERT(config.storage_config.swizzle_b_mode == config.layout.block_k);
|
|
const int load_block_m = config.storage_config.load_block_m;
|
|
const auto tensor_map_a = make_tma_3d_desc(a, k, m, batch_size,
|
|
config.layout.block_k, load_block_m, 1,
|
|
a.stride(1),
|
|
a.stride(0),
|
|
config.storage_config.swizzle_a_mode);
|
|
|
|
const int load_block_n = config.storage_config.load_block_n;
|
|
const auto tensor_map_b = make_tma_3d_desc(b, k, n, batch_size,
|
|
config.layout.block_k, load_block_n, 1,
|
|
b.stride(1),
|
|
b.stride(0),
|
|
config.storage_config.swizzle_b_mode);
|
|
|
|
const int store_block_m = config.storage_config.store_block_m;
|
|
const int store_block_n = config.storage_config.store_block_n;
|
|
const auto tensor_map_d = make_tma_3d_desc(d, n, m, batch_size,
|
|
store_block_n, store_block_m, 1,
|
|
d.stride(1), d.stride(0),
|
|
config.storage_config.swizzle_cd_mode);
|
|
|
|
const auto tensor_map_sfa = make_tma_sf_desc(cute::UMMA::Major::MN, sfa, m, k,
|
|
config.layout.block_m, config.layout.block_k, batch_size, 0);
|
|
|
|
// Launch
|
|
const SM90FP8Gemm1D2DRuntime::Args& args = {
|
|
.gemm_desc = desc,
|
|
.gemm_config = config,
|
|
.launch_args = LaunchArgs(config.launch_config.num_sms, config.launch_config.num_threads,
|
|
config.pipeline_config.smem_size,
|
|
config.layout.get_cluster_size()),
|
|
.epilogue_type = std::nullopt,
|
|
.major_sfb = major_sfb,
|
|
.sfb = sfb.data_ptr(),
|
|
.grouped_layout = nullptr,
|
|
.tensor_map_a = tensor_map_a,
|
|
.tensor_map_b = tensor_map_b,
|
|
.tensor_map_d = tensor_map_d,
|
|
.tensor_map_sfa = tensor_map_sfa,
|
|
};
|
|
const auto code = SM90FP8Gemm1D2DRuntime::generate(args);
|
|
const auto runtime = compiler->build("sm90_fp8_gemm_1d2d", code);
|
|
SM90FP8Gemm1D2DRuntime::launch(runtime, args);
|
|
}
|
|
|
|
} // namespace deep_gemm
|