mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-29 19:28:33 +00:00
[CK] [CK_Tile] Add FMHA scaffolding to CK kernel dispatcher (#5260) ## Motivation The CK Tile dispatcher currently supports GEMM and Grouped Convolution but has no support for Fused Multi-Head Attention (FMHA). The example/ck_tile/01_fmha folder contains a comprehensive FMHA implementation with forward, backward, split-KV, paged-KV, append-KV, and batch-prefill kernels across multiple GPU architectures — but there is no unified dispatch layer for it. This PR ports the FMHA stack into the dispatcher, following the same architectural patterns established by GEMM and Grouped Convolution, enabling runtime kernel selection, JIT compilation from Python, and a declarative C++ example flow. Autotuning heuristics to follow. ## Technical Details This PR adds FMHA scaffolding to the CK dispatcher framework, mirroring GEMM's layered architecture. Seven new C++ runtime headers provide type definitions (coexisting with upstream headers via __has_include, requiring zero modifications to example/ck_tile/01_fmha/), a problem builder with 18+ setters, Signature + Algorithm kernel key matching, a virtual kernel instance, a DECL_FMHA_KERNEL_SET macro with wildcard support and named tile/wave/warp setters, arch-aware registry with JSON export, and a dispatcher with seqtune-aware selection, configurable timing, and multi-stage execution plans for split-KV (two-stage) and backward (three-stage). The codegen pipeline is driven by a fmha_arch_specs.json capturing per-arch tile tables and pipeline constraints for five architectures (gfx90a/942/950/1100/1201), migrated from hardcoded logic in 01_fmha/codegen/, with supporting modules for C++ symbol mappings, validation rules, and named receipt profiles (ck_default, flash, pytorch, aiter, fp32, fp8). Python integration (fmha_utils.py) mirrors the C++ layer with JIT compilation, parallel multi-kernel builds, HIP memory management via ctypes, tolerance-based validation, and a NumPy CPU reference with GQA support. Twenty-seven C++ and thirty-two Python examples cover the full feature surface — forward, split-KV, masks, bias, dropout, GQA, backward, append-KV, batch prefill, fp8, logits soft cap, sink tokens, and parameter sweeps — all JIT-compiled on the fly. ## Test Plan Seven test files cover the runtime types, codegen, and end-to-end correctness. C++ unit tests validate the problem builder, dispatcher planning (single-stage for forward/paged-KV/append-KV; multi-stage for split-KV and backward), registry operations, and the kernel-set declaration macro. Python unit tests verify codegen emission, profile filtering, and 15 validation rules for masks, hdim constraints, and pipeline requirements. GPU execution validation in 01_basic_fmha --validate reports zero errors across 65,536 elements with max absolute error of 7.29e-05. A gold-standard parity suite (test_fmha_parity.py) runs 14 configurations through both the upstream tile_example_fmha_fwd and the dispatcher, comparing exit codes to confirm behavioral parity — all 14 match. ## Test Result The C++ smoke test builds and passes all 9 compiled examples, and a Python JIT sweep (29_sweep_seqlen.py) passes 7/7 configurations reaching up to 375 TFLOPS at seqlen 2048. ## Submission Checklist - [x] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests. --------- Co-authored-by: Yaswanth Raparti <113389104+yraparti@users.noreply.github.com> Co-authored-by: Mohsen Saffari <mohsen.saffari@amd.com> Co-authored-by: Maksim (Max) Podkorytov <Maksim.Podkorytov@amd.com> Co-authored-by: yashagar <yashagar@amd.com>
596 lines
23 KiB
C++
596 lines
23 KiB
C++
// Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
// SPDX-License-Identifier: MIT
|
|
//
|
|
// Example 23: Multiple Registries for Different Frameworks
|
|
//
|
|
// Demonstrates:
|
|
// 1. Three separate FmhaRegistry instances (pytorch, flash, aiter)
|
|
// 2. Each with its own DECL_FMHA_KERNEL_SET using different configs
|
|
// 3. Registry introspection: size(), filter(), export_json()
|
|
// 4. Planning the same problem from each registry
|
|
// 5. GPU execution from the basic kernel registry
|
|
//
|
|
// Key idea: separate registries let each framework recipient own its
|
|
// kernel population independently.
|
|
|
|
#include <hip/hip_runtime.h>
|
|
#include <cmath>
|
|
#include <iomanip>
|
|
#include <iostream>
|
|
#include <random>
|
|
#include <vector>
|
|
|
|
#include "ck_tile/dispatcher.hpp"
|
|
#include "ck_tile/dispatcher/example_args.hpp"
|
|
|
|
using namespace ck_tile::dispatcher;
|
|
using namespace ck_tile::dispatcher::utils;
|
|
|
|
// Three DECL_FMHA_KERNEL_SETs with distinct names and configurations.
|
|
// All register into the global FmhaKernelSetRegistry at static init time.
|
|
|
|
DECL_FMHA_KERNEL_SET(pytorch_reg_kernels,
|
|
// PyTorch: basic fp16, elementwise bias
|
|
.add(FmhaSignature()
|
|
.family("fwd")
|
|
.dtype("fp16")
|
|
.mode("batch")
|
|
.vlayout("r")
|
|
.hdim(128)
|
|
.mask("no")
|
|
.bias("bias")
|
|
.lse(false)
|
|
.dropout(false)
|
|
.qscale("no")
|
|
.profile("pytorch"),
|
|
FmhaAlgorithm()
|
|
// Stage 0 (Q*K^T): m0=seqlen_q, n0=seqlen_k, k0=hdim_q
|
|
.tile_m0(128)
|
|
.tile_n0(128)
|
|
.tile_k0(32)
|
|
// Stage 1 (Attn*V): n1=hdim_v, k1=seqlen_k, k0max=alignment
|
|
.tile_n1(128)
|
|
.tile_k1(32)
|
|
.tile_k0max(128)
|
|
.wave_m0(4)
|
|
.wave_n0(1)
|
|
.wave_k0(1)
|
|
.wave_m1(4)
|
|
.wave_n1(1)
|
|
.wave_k1(1)
|
|
.warp_m0(32)
|
|
.warp_n0(32)
|
|
.warp_k0(16)
|
|
.warp_m1(32)
|
|
.warp_n1(32)
|
|
.warp_k1(16)
|
|
.pipeline("qr_async")
|
|
.padding(true, true, true, true)
|
|
.alignments(128, 128)
|
|
.selection_rank(0),
|
|
"gfx950"));
|
|
|
|
DECL_FMHA_KERNEL_SET(flash_reg_kernels,
|
|
// Flash: fp16, alibi bias
|
|
.add(FmhaSignature()
|
|
.family("fwd")
|
|
.dtype("fp16")
|
|
.mode("batch")
|
|
.vlayout("r")
|
|
.hdim(128)
|
|
.mask("no")
|
|
.bias("alibi")
|
|
.lse(false)
|
|
.dropout(false)
|
|
.qscale("no")
|
|
.profile("flash_fwd"),
|
|
FmhaAlgorithm()
|
|
.tile_m0(128)
|
|
.tile_n0(128)
|
|
.tile_k0(32)
|
|
.tile_n1(128)
|
|
.tile_k1(32)
|
|
.tile_k0max(128)
|
|
.wave_m0(4)
|
|
.wave_n0(1)
|
|
.wave_k0(1)
|
|
.wave_m1(4)
|
|
.wave_n1(1)
|
|
.wave_k1(1)
|
|
.warp_m0(32)
|
|
.warp_n0(32)
|
|
.warp_k0(16)
|
|
.warp_m1(32)
|
|
.warp_n1(32)
|
|
.warp_k1(16)
|
|
.pipeline("qr_async")
|
|
.padding(true, true, true, true)
|
|
.alignments(128, 128)
|
|
.selection_rank(0),
|
|
"gfx950"));
|
|
|
|
DECL_FMHA_KERNEL_SET(aiter_reg_kernels,
|
|
// AITER: batch mode basic
|
|
.add(FmhaSignature()
|
|
.family("fwd")
|
|
.dtype("fp16")
|
|
.mode("batch")
|
|
.vlayout("r")
|
|
.hdim(128)
|
|
.mask("no")
|
|
.bias("no")
|
|
.lse(false)
|
|
.dropout(false)
|
|
.qscale("no")
|
|
.profile("aiter_batch"),
|
|
FmhaAlgorithm()
|
|
.tile_m0(128)
|
|
.tile_n0(128)
|
|
.tile_k0(32)
|
|
.tile_n1(128)
|
|
.tile_k1(32)
|
|
.tile_k0max(128)
|
|
.wave_m0(4)
|
|
.wave_n0(1)
|
|
.wave_k0(1)
|
|
.wave_m1(4)
|
|
.wave_n1(1)
|
|
.wave_k1(1)
|
|
.warp_m0(32)
|
|
.warp_n0(32)
|
|
.warp_k0(16)
|
|
.warp_m1(32)
|
|
.warp_n1(32)
|
|
.warp_k1(16)
|
|
.pipeline("qr_async")
|
|
.padding(true, true, true, true)
|
|
.alignments(128, 128)
|
|
.selection_rank(0),
|
|
"gfx950")
|
|
// AITER: group mode
|
|
.add(FmhaSignature()
|
|
.family("fwd")
|
|
.dtype("fp16")
|
|
.mode("group")
|
|
.vlayout("r")
|
|
.hdim(128)
|
|
.mask("no")
|
|
.bias("no")
|
|
.lse(false)
|
|
.dropout(false)
|
|
.qscale("no")
|
|
.profile("aiter_group"),
|
|
FmhaAlgorithm()
|
|
.tile_m0(128)
|
|
.tile_n0(128)
|
|
.tile_k0(32)
|
|
.tile_n1(128)
|
|
.tile_k1(32)
|
|
.tile_k0max(128)
|
|
.wave_m0(4)
|
|
.wave_n0(1)
|
|
.wave_k0(1)
|
|
.wave_m1(4)
|
|
.wave_n1(1)
|
|
.wave_k1(1)
|
|
.warp_m0(32)
|
|
.warp_n0(32)
|
|
.warp_k0(16)
|
|
.warp_m1(32)
|
|
.warp_n1(32)
|
|
.warp_k1(16)
|
|
.pipeline("qr_async")
|
|
.padding(true, true, true, true)
|
|
.alignments(128, 128)
|
|
.selection_rank(0),
|
|
"gfx950"));
|
|
|
|
namespace {
|
|
|
|
using FmhaDataType = ck_tile::fp16_t;
|
|
|
|
void cpu_attention_fwd(const std::vector<float>& Q,
|
|
const std::vector<float>& K,
|
|
const std::vector<float>& V,
|
|
std::vector<float>& O,
|
|
int batch,
|
|
int nhead,
|
|
int seqlen_q,
|
|
int seqlen_k,
|
|
int hdim_q,
|
|
int hdim_v,
|
|
float scale)
|
|
{
|
|
for(int b = 0; b < batch; ++b)
|
|
{
|
|
for(int h = 0; h < nhead; ++h)
|
|
{
|
|
for(int sq = 0; sq < seqlen_q; ++sq)
|
|
{
|
|
std::vector<float> scores(seqlen_k, 0.0f);
|
|
float max_score = -1e30f;
|
|
|
|
for(int sk = 0; sk < seqlen_k; ++sk)
|
|
{
|
|
float dot = 0.0f;
|
|
for(int d = 0; d < hdim_q; ++d)
|
|
{
|
|
int q_idx = ((b * nhead + h) * seqlen_q + sq) * hdim_q + d;
|
|
int k_idx = ((b * nhead + h) * seqlen_k + sk) * hdim_q + d;
|
|
dot += Q[q_idx] * K[k_idx];
|
|
}
|
|
scores[sk] = dot * scale;
|
|
max_score = std::max(max_score, scores[sk]);
|
|
}
|
|
|
|
float sum_exp = 0.0f;
|
|
for(int sk = 0; sk < seqlen_k; ++sk)
|
|
{
|
|
scores[sk] = std::exp(scores[sk] - max_score);
|
|
sum_exp += scores[sk];
|
|
}
|
|
for(int sk = 0; sk < seqlen_k; ++sk)
|
|
scores[sk] /= sum_exp;
|
|
|
|
for(int dv = 0; dv < hdim_v; ++dv)
|
|
{
|
|
float acc = 0.0f;
|
|
for(int sk = 0; sk < seqlen_k; ++sk)
|
|
{
|
|
int v_idx = ((b * nhead + h) * seqlen_k + sk) * hdim_v + dv;
|
|
acc += scores[sk] * V[v_idx];
|
|
}
|
|
int o_idx = ((b * nhead + h) * seqlen_q + sq) * hdim_v + dv;
|
|
O[o_idx] = acc;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
struct RegistryInfo
|
|
{
|
|
std::string name;
|
|
FmhaRegistry* reg;
|
|
FmhaDispatcher* disp;
|
|
};
|
|
|
|
} // namespace
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
ExampleArgs args("Example 23: Multi-Registry FMHA",
|
|
"Separate registries per framework recipient");
|
|
args.add_option("--arch", "gfx950", "GPU architecture");
|
|
args.add_option("--batch", "2", "Batch size");
|
|
args.add_option("--nhead", "4", "Number of heads");
|
|
args.add_option("--seqlen", "64", "Sequence length");
|
|
args.add_option("--hdim", "128", "Head dimension");
|
|
if(!args.parse(argc, argv))
|
|
return 0;
|
|
|
|
const std::string gfx_arch = args.get("--arch", "gfx950");
|
|
const int batch = args.get_int("--batch", 2);
|
|
const int nhead = args.get_int("--nhead", 4);
|
|
const int seqlen = args.get_int("--seqlen", 64);
|
|
const int hdim = args.get_int("--hdim", 128);
|
|
const float scale = 1.0f / std::sqrt(static_cast<float>(hdim));
|
|
|
|
print_header("Example 23: Multi-Registry FMHA");
|
|
|
|
// Step 1: Create 3 separate registries
|
|
std::cout << "\nStep 1: Create Separate Registries\n";
|
|
std::cout << " Global kernel sets declared: " << FmhaKernelSetRegistry::instance().size()
|
|
<< "\n";
|
|
FmhaKernelSetRegistry::instance().print();
|
|
|
|
FmhaRegistry pytorch_reg;
|
|
pytorch_reg.set_name("pytorch");
|
|
REGISTER_GENERATED_KERNELS(pytorch_reg, gfx_arch);
|
|
|
|
FmhaRegistry flash_reg;
|
|
flash_reg.set_name("flash");
|
|
REGISTER_GENERATED_KERNELS(flash_reg, gfx_arch);
|
|
|
|
FmhaRegistry aiter_reg;
|
|
aiter_reg.set_name("aiter");
|
|
REGISTER_GENERATED_KERNELS(aiter_reg, gfx_arch);
|
|
|
|
FmhaDispatcher pytorch_disp(&pytorch_reg);
|
|
FmhaDispatcher flash_disp(&flash_reg);
|
|
FmhaDispatcher aiter_disp(&aiter_reg);
|
|
|
|
std::vector<RegistryInfo> registries = {
|
|
{"pytorch", &pytorch_reg, &pytorch_disp},
|
|
{"flash", &flash_reg, &flash_disp},
|
|
{"aiter", &aiter_reg, &aiter_disp},
|
|
};
|
|
|
|
// Step 2: Registry introspection
|
|
std::cout << "\nStep 2: Registry Introspection\n";
|
|
for(const auto& ri : registries)
|
|
{
|
|
std::cout << "\n Registry: " << ri.name << "\n";
|
|
std::cout << " Kernel count: " << ri.reg->size() << "\n";
|
|
|
|
auto all_kernels = ri.reg->get_all();
|
|
for(const auto& k : all_kernels)
|
|
{
|
|
std::cout << " Kernel: " << k->get_name() << "\n";
|
|
}
|
|
|
|
auto fwd_kernels = ri.reg->filter([](const FmhaKernelInstance& inst) {
|
|
return inst.get_key().signature.family == FmhaKernelFamily::Fwd;
|
|
});
|
|
std::cout << " Forward kernels: " << fwd_kernels.size() << "\n";
|
|
|
|
std::string json = ri.reg->export_json(false);
|
|
std::cout << " JSON size: " << json.size() << " bytes\n";
|
|
}
|
|
|
|
// Step 3: Plan the same problem from each registry
|
|
std::cout << "\nStep 3: Plan from Each Registry\n";
|
|
|
|
// Problem A: basic fp16 no-bias (matches aiter_batch)
|
|
{
|
|
fmha_fwd_traits traits{};
|
|
traits.hdim_q = hdim;
|
|
traits.hdim_v = hdim;
|
|
traits.data_type = "fp16";
|
|
traits.is_group_mode = false;
|
|
traits.is_v_rowmajor = true;
|
|
traits.has_logits_soft_cap = false;
|
|
traits.mask_type = mask_enum::no_mask;
|
|
traits.bias_type = bias_enum::no_bias;
|
|
traits.has_lse = false;
|
|
traits.has_dropout = false;
|
|
traits.qscale_type = quant_scale_enum::no_scale;
|
|
|
|
fmha_fwd_args fmha_args{};
|
|
fmha_args.batch = batch;
|
|
fmha_args.seqlen_q = seqlen;
|
|
fmha_args.seqlen_k = seqlen;
|
|
fmha_args.max_seqlen_q = seqlen;
|
|
fmha_args.hdim_q = hdim;
|
|
fmha_args.hdim_v = hdim;
|
|
fmha_args.nhead_q = nhead;
|
|
fmha_args.nhead_k = nhead;
|
|
|
|
std::cout << "\n Problem: fp16 batch no-bias\n";
|
|
for(const auto& ri : registries)
|
|
{
|
|
auto plan = ri.disp->plan(
|
|
FmhaProblem::from_invocation(FmhaInvocation::make(traits, fmha_args), gfx_arch));
|
|
std::cout << " " << ri.name << ": "
|
|
<< (plan.is_valid() ? plan.stages[0].kernel_id : "NO MATCH") << "\n";
|
|
}
|
|
}
|
|
|
|
// Problem B: fp16 with alibi bias (matches flash)
|
|
{
|
|
fmha_fwd_traits traits{};
|
|
traits.hdim_q = hdim;
|
|
traits.hdim_v = hdim;
|
|
traits.data_type = "fp16";
|
|
traits.is_group_mode = false;
|
|
traits.is_v_rowmajor = true;
|
|
traits.has_logits_soft_cap = false;
|
|
traits.mask_type = mask_enum::no_mask;
|
|
traits.bias_type = bias_enum::alibi;
|
|
traits.has_lse = false;
|
|
traits.has_dropout = false;
|
|
traits.qscale_type = quant_scale_enum::no_scale;
|
|
|
|
fmha_fwd_args fmha_args{};
|
|
fmha_args.batch = batch;
|
|
fmha_args.seqlen_q = seqlen;
|
|
fmha_args.seqlen_k = seqlen;
|
|
fmha_args.max_seqlen_q = seqlen;
|
|
fmha_args.hdim_q = hdim;
|
|
fmha_args.hdim_v = hdim;
|
|
fmha_args.nhead_q = nhead;
|
|
fmha_args.nhead_k = nhead;
|
|
|
|
std::cout << "\n Problem: fp16 batch alibi-bias\n";
|
|
for(const auto& ri : registries)
|
|
{
|
|
auto plan = ri.disp->plan(
|
|
FmhaProblem::from_invocation(FmhaInvocation::make(traits, fmha_args), gfx_arch));
|
|
std::cout << " " << ri.name << ": "
|
|
<< (plan.is_valid() ? plan.stages[0].kernel_id : "NO MATCH") << "\n";
|
|
}
|
|
}
|
|
|
|
// Problem C: fp16 with elementwise bias (matches pytorch)
|
|
{
|
|
fmha_fwd_traits traits{};
|
|
traits.hdim_q = hdim;
|
|
traits.hdim_v = hdim;
|
|
traits.data_type = "fp16";
|
|
traits.is_group_mode = false;
|
|
traits.is_v_rowmajor = true;
|
|
traits.has_logits_soft_cap = false;
|
|
traits.mask_type = mask_enum::no_mask;
|
|
traits.bias_type = bias_enum::elementwise_bias;
|
|
traits.has_lse = false;
|
|
traits.has_dropout = false;
|
|
traits.qscale_type = quant_scale_enum::no_scale;
|
|
|
|
fmha_fwd_args fmha_args{};
|
|
fmha_args.batch = batch;
|
|
fmha_args.seqlen_q = seqlen;
|
|
fmha_args.seqlen_k = seqlen;
|
|
fmha_args.max_seqlen_q = seqlen;
|
|
fmha_args.hdim_q = hdim;
|
|
fmha_args.hdim_v = hdim;
|
|
fmha_args.nhead_q = nhead;
|
|
fmha_args.nhead_k = nhead;
|
|
|
|
std::cout << "\n Problem: fp16 batch elementwise-bias\n";
|
|
for(const auto& ri : registries)
|
|
{
|
|
auto plan = ri.disp->plan(
|
|
FmhaProblem::from_invocation(FmhaInvocation::make(traits, fmha_args), gfx_arch));
|
|
std::cout << " " << ri.name << ": "
|
|
<< (plan.is_valid() ? plan.stages[0].kernel_id : "NO MATCH") << "\n";
|
|
}
|
|
}
|
|
|
|
// Step 4: GPU execution from AITER registry (basic no-bias kernel)
|
|
std::cout << "\nStep 4: GPU Execution (aiter registry)\n";
|
|
|
|
const int64_t q_elems = static_cast<int64_t>(batch) * nhead * seqlen * hdim;
|
|
|
|
GpuBuffer<FmhaDataType> q_dev(q_elems);
|
|
GpuBuffer<FmhaDataType> k_dev(q_elems);
|
|
GpuBuffer<FmhaDataType> v_dev(q_elems);
|
|
GpuBuffer<FmhaDataType> o_dev(q_elems);
|
|
|
|
std::mt19937 rng(42);
|
|
std::uniform_real_distribution<float> dist(-0.5f, 0.5f);
|
|
|
|
std::vector<FmhaDataType> q_host(q_elems), k_host(q_elems), v_host(q_elems);
|
|
for(auto& x : q_host)
|
|
x = FmhaDataType(dist(rng));
|
|
for(auto& x : k_host)
|
|
x = FmhaDataType(dist(rng));
|
|
for(auto& x : v_host)
|
|
x = FmhaDataType(dist(rng));
|
|
|
|
q_dev.copy_from_host(q_host.data());
|
|
k_dev.copy_from_host(k_host.data());
|
|
v_dev.copy_from_host(v_host.data());
|
|
o_dev.zero();
|
|
|
|
fmha_fwd_traits run_traits{};
|
|
run_traits.hdim_q = hdim;
|
|
run_traits.hdim_v = hdim;
|
|
run_traits.data_type = "fp16";
|
|
run_traits.is_group_mode = false;
|
|
run_traits.is_v_rowmajor = true;
|
|
run_traits.has_logits_soft_cap = false;
|
|
run_traits.mask_type = mask_enum::no_mask;
|
|
run_traits.bias_type = bias_enum::no_bias;
|
|
run_traits.has_lse = false;
|
|
run_traits.has_dropout = false;
|
|
run_traits.qscale_type = quant_scale_enum::no_scale;
|
|
|
|
fmha_fwd_args run_args{};
|
|
run_args.q_ptr = q_dev.get();
|
|
run_args.k_ptr = k_dev.get();
|
|
run_args.v_ptr = v_dev.get();
|
|
run_args.o_ptr = o_dev.get();
|
|
|
|
run_args.bias_ptr = nullptr;
|
|
run_args.q_descale_ptr = nullptr;
|
|
run_args.k_descale_ptr = nullptr;
|
|
run_args.v_descale_ptr = nullptr;
|
|
run_args.rand_val_ptr = nullptr;
|
|
run_args.lse_ptr = nullptr;
|
|
run_args.sink_ptr = nullptr;
|
|
run_args.block_scale_seqstart_q_ptr = nullptr;
|
|
run_args.block_scale_seqstart_k_ptr = nullptr;
|
|
|
|
run_args.seqlen_q = seqlen;
|
|
run_args.seqlen_k = seqlen;
|
|
run_args.batch = batch;
|
|
run_args.max_seqlen_q = seqlen;
|
|
run_args.hdim_q = hdim;
|
|
run_args.hdim_v = hdim;
|
|
run_args.nhead_q = nhead;
|
|
run_args.nhead_k = nhead;
|
|
run_args.scale_s = scale;
|
|
run_args.logits_soft_cap = 0.0f;
|
|
|
|
run_args.stride_q = hdim;
|
|
run_args.stride_k = hdim;
|
|
run_args.stride_v = hdim;
|
|
run_args.stride_bias = 0;
|
|
run_args.stride_randval = 0;
|
|
run_args.stride_o = hdim;
|
|
|
|
run_args.nhead_stride_q = seqlen * hdim;
|
|
run_args.nhead_stride_k = seqlen * hdim;
|
|
run_args.nhead_stride_v = seqlen * hdim;
|
|
run_args.nhead_stride_bias = 0;
|
|
run_args.nhead_stride_randval = 0;
|
|
run_args.nhead_stride_lse = 0;
|
|
run_args.nhead_stride_o = seqlen * hdim;
|
|
run_args.nhead_stride_q_descale = 0;
|
|
run_args.nhead_stride_k_descale = 0;
|
|
run_args.nhead_stride_v_descale = 0;
|
|
|
|
run_args.batch_stride_q = nhead * seqlen * hdim;
|
|
run_args.batch_stride_k = nhead * seqlen * hdim;
|
|
run_args.batch_stride_v = nhead * seqlen * hdim;
|
|
run_args.batch_stride_bias = 0;
|
|
run_args.batch_stride_randval = 0;
|
|
run_args.batch_stride_lse = 0;
|
|
run_args.batch_stride_o = nhead * seqlen * hdim;
|
|
run_args.batch_stride_q_descale = 0;
|
|
run_args.batch_stride_k_descale = 0;
|
|
run_args.batch_stride_v_descale = 0;
|
|
|
|
run_args.window_size_left = -1;
|
|
run_args.window_size_right = -1;
|
|
run_args.sink_size = 0;
|
|
run_args.mask_type = 0;
|
|
run_args.min_seqlen_q = 0;
|
|
run_args.p_drop = 0.0f;
|
|
run_args.s_randval = false;
|
|
run_args.drop_seed_offset = std::make_pair(uint64_t(0), uint64_t(0));
|
|
run_args.block_scale_size_q = 0;
|
|
run_args.block_scale_size_kv = 0;
|
|
|
|
bool passed = false;
|
|
aiter_disp.set_benchmarking(true);
|
|
aiter_disp.set_timing(1, 3);
|
|
try
|
|
{
|
|
float time_ms = aiter_disp.run_fwd(run_traits, run_args, nullptr);
|
|
std::cout << " Time: " << std::fixed << std::setprecision(4) << time_ms << " ms\n";
|
|
|
|
std::vector<FmhaDataType> o_host(q_elems);
|
|
o_dev.copy_to_host(o_host.data());
|
|
|
|
// Validate
|
|
std::vector<float> q_f32(q_elems), k_f32(q_elems), v_f32(q_elems), o_ref(q_elems, 0.0f);
|
|
for(int64_t i = 0; i < q_elems; ++i)
|
|
q_f32[i] = static_cast<float>(q_host[i]);
|
|
for(int64_t i = 0; i < q_elems; ++i)
|
|
k_f32[i] = static_cast<float>(k_host[i]);
|
|
for(int64_t i = 0; i < q_elems; ++i)
|
|
v_f32[i] = static_cast<float>(v_host[i]);
|
|
|
|
cpu_attention_fwd(
|
|
q_f32, k_f32, v_f32, o_ref, batch, nhead, seqlen, seqlen, hdim, hdim, scale);
|
|
|
|
double max_abs_err = 0.0;
|
|
int errors = 0;
|
|
const double rtol = 1e-2;
|
|
const double atol = 1e-2;
|
|
for(int64_t i = 0; i < q_elems; ++i)
|
|
{
|
|
float gpu_val = static_cast<float>(o_host[i]);
|
|
float ref_val = o_ref[i];
|
|
double abs_err = std::abs(gpu_val - ref_val);
|
|
max_abs_err = std::max(max_abs_err, abs_err);
|
|
if(abs_err > atol + rtol * std::abs(ref_val))
|
|
++errors;
|
|
}
|
|
std::cout << " Max abs error: " << std::scientific << max_abs_err << "\n";
|
|
std::cout << " Errors: " << errors << " / " << q_elems << "\n";
|
|
passed = (errors == 0);
|
|
}
|
|
catch(const std::exception& e)
|
|
{
|
|
std::cerr << " ERROR: " << e.what() << "\n";
|
|
}
|
|
|
|
print_separator();
|
|
std::cout << "Status: " << (passed ? "PASS" : "FAIL") << "\n";
|
|
print_separator();
|
|
|
|
return passed ? 0 : 1;
|
|
}
|