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

fp4_gemv_kernel

def fp4_gemv_kernel[c_type: DType, c_layout: TensorLayout, a_layout: TensorLayout, p_layout: TensorLayout, s_layout: TensorLayout, elementwise_lambda_fn: Optional[def[dtype: DType, width: SIMDLength, *, alignment: Int = Int(1)](IndexList[Int(2)], SIMD[dtype, width]) capturing thin -> None]](c: TileTensor[c_type, c_layout, MutAnyOrigin], a: TileTensor[DType.bfloat16, a_layout, ImmutAnyOrigin], packed: TileTensor[DType.uint8, p_layout, ImmutAnyOrigin], scales: TileTensor[DType.float8_e4m3fn, s_layout, ImmutAnyOrigin], n: Int, k: Int)

One warp per output column; 32 lanes stride down K decoding FP4 -> fp32.

c is [1, N], a the bf16 activation [1, K], packed the FP4 weight [N, K//2] (lo-nibble first), scales the FP8-E4M3 block scales [N, ceil(K/16)]. Accumulation is fp32.

Parameters:

Args:

Was this page helpful?