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
matmul_dispatch_sm90
def matmul_dispatch_sm90[c_type: DType, a_type: DType, b_type: DType, transpose_b: Bool = False, elementwise_lambda_fn: Optional[def[dtype: DType, width: SIMDLength, *, alignment: Int = Int(1)](IndexList[Int(2)], SIMD[dtype, width]) capturing thin -> None] = None, elementwise_compute_lambda_fn: Optional[def[dtype: DType, width: SIMDLength, *, alignment: Int = Int(1)](IndexList[Int(2)], SIMD[dtype, width]) capturing thin -> SIMD[dtype, width]] = None, pdl_level: PDLLevel = PDLLevel()](c: TileTensor[c_type, Storage=c.Storage, address_space=c.address_space, linear_idx_type=c.linear_idx_type], a: TileTensor[a_type, Storage=a.Storage, address_space=a.address_space, linear_idx_type=a.linear_idx_type], b: TileTensor[b_type, Storage=b.Storage, address_space=b.address_space, linear_idx_type=b.linear_idx_type], ctx: DeviceContext) -> Int
Dispatches a rank-2 matmul to the SM90 (Hopper) warp-specialized kernel.
Checks static dtype and shape constraints (BF16, FP8, or FP32; transposed
B; K alignment), then routes to matmul_dispatch_sm90_fp8,
matmul_dispatch_sm90_bf16_fp32, or returns DISPATCH_MISS if the
problem does not meet SM90 requirements.
Parameters:
- βc_type (
DType): Element type of the output tensorc. - βa_type (
DType): Element type of the input tensora. - βb_type (
DType): Element type of the input tensorb. - βtranspose_b (
Bool): Whetherbis stored transposed (defaults toFalse); the SM90 kernel requires this to beTrueto dispatch. - βelementwise_lambda_fn (
Optional[def[dtype: DType, width: SIMDLength, *, alignment: Int = Int(1)](IndexList[Int(2)], SIMD[dtype, width]) capturing thin -> None]): Epilogue applied to each output tile after the matmul, consuming the tile and returning nothing (defaults toNonefor no epilogue). - βelementwise_compute_lambda_fn (
Optional[def[dtype: DType, width: SIMDLength, *, alignment: Int = Int(1)](IndexList[Int(2)], SIMD[dtype, width]) capturing thin -> SIMD[dtype, width]]): Compute lambda transforming each output value before the epilogue, returning the transformed value (defaults toNonefor no transform). - βpdl_level (
PDLLevel): Programmatic dependent launch level for overlapping this kernel with prior work (defaults toPDLLevel()).
Args:
- βc (
TileTensor[c_type, Storage=c.Storage, address_space=c.address_space, linear_idx_type=c.linear_idx_type]): Rank-2 output tensor of shape(M, N). - βa (
TileTensor[a_type, Storage=a.Storage, address_space=a.address_space, linear_idx_type=a.linear_idx_type]): Rank-2 input tensor of shape(M, K). - βb (
TileTensor[b_type, Storage=b.Storage, address_space=b.address_space, linear_idx_type=b.linear_idx_type]): Rank-2 input tensor of shape(K, N)whentranspose_bisTrue. - βctx (
DeviceContext): Device context for the kernel launch.
Returns:
Int: DISPATCH_HIT (1) if the kernel was launched, DISPATCH_MISS (0)
otherwise.
Was this page helpful?
Thank you! We'll create more content like this.
Thank you for helping us improve!