// Copyright (c) Advanced Micro Devices, Inc., or its affiliates. // SPDX-License-Identifier: MIT #include #include #include #include #include #include #include #include "ck_tile/host.hpp" #include "mx_flatmm.hpp" template static constexpr inline auto is_row_major(Layout layout_) { return ck_tile::bool_constant, ck_tile::tensor_layout::gemm::RowMajor>>{}; } template float invoke_mx_flatmm(ck_tile::DeviceMem& a_dev_buf, ck_tile::DeviceMem& b_shuffle_dev_buf, ck_tile::DeviceMem& c_dev_buf, ck_tile::index_t M, ck_tile::index_t N, ck_tile::index_t K, ck_tile::index_t stride_A, ck_tile::index_t stride_B, ck_tile::index_t stride_C, ScaleA scale_a, ScaleB scale_b, int n_warmup, int n_repeat) { using FlatmmConfig = typename MXFlatmmArchTraits::Config; ck_tile::ScaleFlatmmHostArgs args = {a_dev_buf.GetDeviceBuffer(), b_shuffle_dev_buf.GetDeviceBuffer(), {}, c_dev_buf.GetDeviceBuffer(), 1, M, N, K, stride_A, stride_B, {}, stride_C, scale_a, scale_b}; using FlatmmShape = ck_tile::TileGemmShape< ck_tile::sequence, ck_tile::sequence, ck_tile::sequence>; using TilePartitioner = ck_tile::GemmSpatiallyLocalTilePartitioner; using Traits = ck_tile::TileGemmTraits; using GemmPipelineProblem = ck_tile::GemmPipelineProblem; using BaseFlatmmPipeline = ck_tile::BaseFlatmmPipelineAGmemBGmemCRegV1; const ck_tile::index_t k_grain = FlatmmConfig::K_Tile; const ck_tile::index_t k_split = (K + k_grain - 1) / k_grain * k_grain; const ck_tile::index_t num_loop = TilePartitioner::GetLoopNum(k_split); const bool has_hot_loop = BaseFlatmmPipeline::BlockHasHotloop(num_loop); const ck_tile::TailNumber tail_num = BaseFlatmmPipeline::GetBlockLoopTailNum(num_loop); float ave_time = BaseFlatmmPipeline::template TailHandler( [&](auto has_hot_loop_, auto tail_num_) { constexpr auto has_hot_loop_v = has_hot_loop_.value; constexpr auto tail_num_v = tail_num_.value; return mx_flatmm_calc( args, ck_tile::stream_config{nullptr, true, 1, n_warmup, n_repeat, true, true, 50}); }, has_hot_loop, tail_num); constexpr int APackedSize = ck_tile::numeric_traits::PackedSize; constexpr int BPackedSize = ck_tile::numeric_traits::PackedSize; std::size_t flop = std::size_t(2) * M * N * K + std::size_t(2) * M * N * K / 32; std::size_t num_byte = sizeof(ADataType) * M * K / APackedSize + sizeof(BDataType) * N * K / BPackedSize + sizeof(CDataType) * M * N + sizeof(ck_tile::e8m0_t) * M * K / 32 + sizeof(ck_tile::e8m0_t) * N * K / 32; float tflops = static_cast(flop) / 1.E9 / ave_time; float gb_per_sec = num_byte / 1.E6 / ave_time; std::cout << "Run " << ck_tile::gemm_prec_str() << " Flatmm kernel " // << " M = " << M << " N = " << N << " K = " << K << " StrideA = " << stride_A << " StrideB = " << stride_B << " StrideC = " << stride_C << " : " << ave_time << " ms, " << tflops << " TFlops, " << gb_per_sec << " GB/s, " << std::endl; return ave_time; } auto create_args(int argc, char* argv[]) { ck_tile::ArgParser arg_parser; arg_parser.insert("m", "32", "m dimension") .insert("n", "512", "n dimension") .insert("k", "256", "k dimension") .insert("a_layout", "R", "A tensor data layout - Row by default") .insert("b_layout", "C", "B tensor data layout - Row by default") .insert("c_layout", "R", "C tensor data layout - Row by default") .insert("stride_a", "0", "Tensor A stride") .insert("stride_b", "0", "Tensor B stride") .insert("stride_c", "0", "Tensor C stride") .insert("v", "1", "0. No validation, 1. Validation on CPU, 2. Validation on GPU") .insert("mx_prec", "fp4xfp4", "data type for activation and weight, support: fp4xfp4, fp6xfp6, fp8xfp8, fp8xfp4 " "and fp4xfp8") .insert("warmup", "50", "number of iterations before benchmark the kernel") .insert("repeat", "100", "number of iterations to benchmark the kernel") .insert("timer", "gpu", "gpu:gpu timer, cpu:cpu timer") .insert("init", "0", "0:random, 1:constant(1)") .insert("persistent", "0", "0: no persistent, 1: persistent kernel") .insert("warp_tile", "0", "0: 16x16x128 on gfx950."); bool result = arg_parser.parse(argc, argv); return std::make_tuple(result, arg_parser); } #include "run_mx_flatmm.inc" int run_mx_flatmm_example(const ck_tile::ArgParser& arg_parser) { using Row = ck_tile::tensor_layout::gemm::RowMajor; using Col = ck_tile::tensor_layout::gemm::ColumnMajor; std::string mx_prec = arg_parser.get_str("mx_prec"); std::string a_layout = arg_parser.get_str("a_layout"); std::string b_layout = arg_parser.get_str("b_layout"); int persistent_opt = arg_parser.get_int("persistent"); std::cout << "Using default warptile of 16x16x128." << std::endl; if(a_layout == "R" && b_layout == "C") { if(mx_prec == "fp4" || mx_prec == "fp4xfp4") { if(persistent_opt == 0) return run_mx_flatmm_with_layouts(arg_parser, Row{}, Col{}, Row{}); else throw std::runtime_error("Only non-persistent kernels are supported currently!"); } else if(mx_prec == "fp6" || mx_prec == "fp6xfp6") { if(persistent_opt == 0) return run_mx_flatmm_with_layouts(arg_parser, Row{}, Col{}, Row{}); else throw std::runtime_error("Only support non-persistent kernel now!"); } else if(mx_prec == "fp8" || mx_prec == "fp8xfp8") { if(persistent_opt == 0) return run_mx_flatmm_with_layouts(arg_parser, Row{}, Col{}, Row{}); else throw std::runtime_error("Only support non-persistent kernel now!"); } else if(mx_prec == "fp8xfp4") { if(persistent_opt == 0) return run_mx_flatmm_with_layouts(arg_parser, Row{}, Col{}, Row{}); else throw std::runtime_error("Only support non-persistent kernel now!"); } else if(mx_prec == "fp4xfp8") { if(persistent_opt == 0) return run_mx_flatmm_with_layouts(arg_parser, Row{}, Col{}, Row{}); else throw std::runtime_error("Only support non-persistent kernel now!"); } else { throw std::runtime_error("Unsupported data_type!"); } } else { throw std::runtime_error("Unsupported data layout configuration for A,B and C tensors!"); } } int main(int argc, char* argv[]) { auto [result, arg_parser] = create_args(argc, argv); if(!result) return EXIT_FAILURE; try { int warp_tile = arg_parser.get_int("warp_tile"); if(warp_tile == 0) { return run_mx_flatmm_example(arg_parser); } else if(warp_tile == 1) { throw std::runtime_error("Only support MFMA_16x16x128 now!"); } else { throw std::runtime_error("Unsupported warp_tile!"); } } catch(const std::runtime_error& e) { std::cerr << "Runtime error: " << e.what() << '\n'; return EXIT_FAILURE; } }