For the complete documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /get-started.md).
Mojo struct
MHAAttentionConfigRDNA
struct MHAAttentionConfigRDNA[token_gen: Bool, config: MHAConfig[config.dtype], group: Int]
Holds the fixed RDNA Wave32 multi-head attention configuration and index math.
Parameterizes a single attention kernel shape (16x16x16 WMMA) for both prefill and decode passes, and exposes the head, tile, and offset helpers the kernel uses to map block and lane IDs to Q/K/V rows in global memory.
Parameters
- token_gen (
Bool): Whether the kernel is running in decode (token-by-token) generation mode versus prefill. - config (
MHAConfig[config.dtype]): The base multi-head attention configuration supplying head counts and tile dimensions. - group (
Int): Group-query attention group size (number of query heads sharing one key/value head).
Implemented traits
AnyType,
Copyable,
Deinitable,
ImplicitlyCopyable,
Movable
comptime members
depth_padded
comptime depth_padded = True
double_buffer
comptime double_buffer = False
double_buffer_k_only
comptime double_buffer_k_only = False
full_kv
comptime full_kv = False
shared_kv
comptime shared_kv = False