IMPORTANT: To view this page as Markdown, append `.md` to the URL (e.g. /max/get-started.md). For the complete documentation index, see llms.txt.
Skip to main content
For the complete documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /max/get-started.md).

Mojo function

mla_prefill_decode_graph_fp8

def mla_prefill_decode_graph_fp8[dtype: DType, fp8_dtype: DType, fp8_scale_dtype: DType, collection_t: KVCollectionT, //, m_scale_granularity: Int, n_scale_granularity: Int, k_scale_granularity: Int, mask_str: StringSlice[ImmStaticOrigin], kv_input_fn: def[width: Int](IndexList[Int(2)]) capturing thin -> SIMD[DType.bfloat16, width], target: StringSlice[ImmStaticOrigin] = StringSlice("cpu"), sparse_mla: Bool = False, sparse_indices_stride: Int = Int(0), fold_shared_index: Bool = False](output: TileTensor[dtype, Storage=output.Storage, linear_idx_type=output.linear_idx_type], q: TileTensor[dtype, Storage=q.Storage, linear_idx_type=q.linear_idx_type], input_row_offsets: TileTensor[DType.uint32, Storage=input_row_offsets.Storage, linear_idx_type=input_row_offsets.linear_idx_type], freqs_cis: TileTensor[Storage=freqs_cis.Storage, linear_idx_type=freqs_cis.linear_idx_type], kv_norm_gamma: TileTensor[Storage=kv_norm_gamma.Storage, linear_idx_type=kv_norm_gamma.linear_idx_type], kv_collection: collection_t, layer_idx: UInt32, scale: Float32, epsilon: Float32, buffer_row_offsets: TileTensor[DType.uint32, Storage=buffer_row_offsets.Storage, linear_idx_type=buffer_row_offsets.linear_idx_type], cache_offsets: TileTensor[DType.uint32, Storage=cache_offsets.Storage, linear_idx_type=cache_offsets.linear_idx_type], buffer_length: Int, max_seq_len: Int, w_k: TileTensor[fp8_dtype, Storage=w_k.Storage, linear_idx_type=w_k.linear_idx_type], w_k_scale: TileTensor[fp8_scale_dtype, Storage=w_k_scale.Storage, linear_idx_type=w_k_scale.linear_idx_type], w_uk: TileTensor[fp8_dtype, Storage=w_uk.Storage, linear_idx_type=w_uk.linear_idx_type], w_uk_scale: TileTensor[fp8_scale_dtype, Storage=w_uk_scale.Storage, linear_idx_type=w_uk_scale.linear_idx_type], w_uv: TileTensor[fp8_dtype, Storage=w_uv.Storage, linear_idx_type=w_uv.linear_idx_type], w_uv_scale: TileTensor[fp8_scale_dtype, Storage=w_uv_scale.Storage, linear_idx_type=w_uv_scale.linear_idx_type], scalar_args_buf: TileTensor[DType.int64, Storage=scalar_args_buf.Storage, linear_idx_type=scalar_args_buf.linear_idx_type], ctx: DeviceContext, d_indices: OptionalReg[Pointer[Int32, MutAnyOrigin, _safe=False]] = None, indices_stride: Int = Int(0), topk_lengths: OptionalReg[Pointer[Int32, MutAnyOrigin, _safe=False]] = None, attn_sink_ptr: OptionalReg[Pointer[Float32, MutAnyOrigin, _safe=False]] = None, extra_k: OptionalReg[collection_t.CacheType] = None, extra_d_indices: OptionalReg[Pointer[Int32, MutAnyOrigin, _safe=False]] = None, extra_indices_stride: Int = Int(0), extra_topk_lengths: OptionalReg[Pointer[Int32, MutAnyOrigin, _safe=False]] = None, extra_scales_ptr: OptionalReg[Pointer[Float32, MutAnyOrigin, _safe=False]] = None, num_partitions_in: Optional[Int] = None)

This is a manually fused kernel that performs the following operations: - Perform MLA prefill or decode based on the maximum sequence length.

Parameters:

  • ​dtype (DType): Data type of the input and output tensors (inferred).
  • ​fp8_dtype (DType): Data type of the fp8 input and output tensors (inferred).
  • ​fp8_scale_dtype (DType): Data type of the fp8 scale input and output tensors (inferred).
  • ​collection_t (KVCollectionT): Type of the KV collection (inferred).
  • ​m_scale_granularity (Int): Granularity of the scale for M dimension of the matrix multiplication.
  • ​n_scale_granularity (Int): Granularity of the scale for N dimension of the matrix multiplication.
  • ​k_scale_granularity (Int): Granularity of the scale for K dimension of the matrix multiplication.
  • ​mask_str (StringSlice[ImmStaticOrigin]): Mask variant.
  • ​kv_input_fn (def[width: Int](IndexList[Int(2)]) capturing thin -> SIMD[DType.bfloat16, width]): Input lambda function to load the KV latent values. Shape: [tot_seq_len, cache_head_dim]. Where cache_head_dim = kv_lora_rank
    • qk_rope_head_dim.
  • ​target (StringSlice[ImmStaticOrigin]): Target device (defaults to "cpu").
  • ​sparse_mla (Bool): Whether to use sparse MLA (defaults to False).
  • ​sparse_indices_stride (Int): Row stride of the sparse decode index buffer (defaults to 0).
  • ​fold_shared_index (Bool): Whether to use the read-once shared-index MTP fold threaded to flare_mla_decoding (defaults to False).

Args:

Was this page helpful?