176 lines
5.5 KiB
Python
176 lines
5.5 KiB
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
|
|
import torch
|
|
from torch.nn.parameter import Parameter
|
|
|
|
from vllm.model_executor.layers.quantization.utils.mxfp8_utils import (
|
|
MXFP8_BLOCK_SIZE,
|
|
mxfp8_e4m3_quantize,
|
|
swizzle_mxfp8_scale,
|
|
)
|
|
from vllm.platforms import current_platform
|
|
from vllm.utils import flashinfer as vllm_flashinfer
|
|
from vllm.utils.flashinfer import has_flashinfer_cutedsl
|
|
|
|
from .Mxfp8LinearKernel import Mxfp8LinearKernel, Mxfp8LinearLayerConfig
|
|
|
|
|
|
class FlashInferCutlassMxfp8LinearKernel(Mxfp8LinearKernel):
|
|
"""MXFP8 W8A8 GEMM via FlashInfer CUTLASS (SM100+)."""
|
|
|
|
@classmethod
|
|
def is_supported(
|
|
cls, compute_capability: int | None = None
|
|
) -> tuple[bool, str | None]:
|
|
if current_platform.has_device_capability(100):
|
|
return True, None
|
|
return False, "requires >=sm_100 (Blackwell)"
|
|
|
|
@classmethod
|
|
def can_implement(cls, c: Mxfp8LinearLayerConfig) -> tuple[bool, str | None]:
|
|
return True, None
|
|
|
|
def process_weights_after_loading(self, layer: torch.nn.Module) -> None:
|
|
weight = layer.weight.data # [N, K]
|
|
N, K = weight.shape
|
|
|
|
scale_k = K // MXFP8_BLOCK_SIZE
|
|
weight_scale_2d = layer.weight_scale.data[:N, :scale_k].contiguous()
|
|
weight_scale_swizzled = swizzle_mxfp8_scale(weight_scale_2d, M=N, K=K)
|
|
|
|
layer.weight = Parameter(weight.contiguous(), requires_grad=False)
|
|
layer.weight_scale = Parameter(
|
|
weight_scale_swizzled.contiguous(), requires_grad=False
|
|
)
|
|
|
|
def apply_weights(
|
|
self,
|
|
layer: torch.nn.Module,
|
|
x: torch.Tensor,
|
|
bias: torch.Tensor | None = None,
|
|
) -> torch.Tensor:
|
|
weight = layer.weight
|
|
weight_scale = layer.weight_scale
|
|
out_dtype = x.dtype
|
|
N, K = weight.shape
|
|
|
|
input_shape = x.shape
|
|
input_2d = x.view(-1, K)
|
|
min_dim = 128
|
|
|
|
assert min_dim <= K, (
|
|
f"mm_mxfp8 requires K >= {min_dim}, got K={K}. "
|
|
f"in_features is too small for mm_mxfp8."
|
|
)
|
|
assert K % MXFP8_BLOCK_SIZE == 0, (
|
|
f"mm_mxfp8 requires K to be divisible by {MXFP8_BLOCK_SIZE}, got K={K}."
|
|
)
|
|
assert min_dim <= N, (
|
|
f"mm_mxfp8 requires N >= {min_dim}, got N={N}. "
|
|
f"out_features is too small for mm_mxfp8."
|
|
)
|
|
|
|
input_mxfp8, input_scale = mxfp8_e4m3_quantize(
|
|
input_2d, is_sf_swizzled_layout=True
|
|
)
|
|
|
|
if not weight.is_contiguous():
|
|
weight = weight.contiguous()
|
|
|
|
output = vllm_flashinfer.mm_mxfp8(
|
|
input_mxfp8,
|
|
weight.t(),
|
|
input_scale,
|
|
weight_scale,
|
|
out_dtype=out_dtype,
|
|
backend="cutlass",
|
|
)
|
|
|
|
if bias is not None:
|
|
output = output + bias
|
|
|
|
output_shape = (*input_shape[:-1], N)
|
|
return output.view(output_shape)
|
|
|
|
|
|
class FlashInferCutedslMxfp8LinearKernel(Mxfp8LinearKernel):
|
|
"""MXFP8 W8A8 GEMM via FlashInfer CuTe-DSL (SM100/SM103)."""
|
|
|
|
@classmethod
|
|
def is_supported(
|
|
cls, compute_capability: int | None = None
|
|
) -> tuple[bool, str | None]:
|
|
if not (
|
|
current_platform.is_cuda()
|
|
and current_platform.is_device_capability_family(100)
|
|
):
|
|
return False, "requires sm_100/sm_103 (Blackwell)"
|
|
if not has_flashinfer_cutedsl():
|
|
return False, "requires FlashInfer CuTe-DSL module"
|
|
return True, None
|
|
|
|
@classmethod
|
|
def can_implement(cls, c: Mxfp8LinearLayerConfig) -> tuple[bool, str | None]:
|
|
return True, None
|
|
|
|
def process_weights_after_loading(self, layer: torch.nn.Module) -> None:
|
|
weight = layer.weight.data # [N, K]
|
|
N, K = weight.shape
|
|
|
|
scale_k = K // MXFP8_BLOCK_SIZE
|
|
weight_scale_2d = layer.weight_scale.data[:N, :scale_k].contiguous()
|
|
weight_scale_swizzled = swizzle_mxfp8_scale(weight_scale_2d, M=N, K=K)
|
|
|
|
# Store weight column-major [K, N] as mm_mxfp8 expects for operand B.
|
|
layer.weight = Parameter(weight.contiguous().t(), requires_grad=False)
|
|
layer.weight_scale = Parameter(
|
|
weight_scale_swizzled.contiguous(), requires_grad=False
|
|
)
|
|
|
|
def apply_weights(
|
|
self,
|
|
layer: torch.nn.Module,
|
|
x: torch.Tensor,
|
|
bias: torch.Tensor | None = None,
|
|
) -> torch.Tensor:
|
|
weight = layer.weight # [K, N], column-major
|
|
weight_scale = layer.weight_scale
|
|
out_dtype = x.dtype
|
|
K, N = weight.shape
|
|
|
|
input_shape = x.shape
|
|
input_2d = x.view(-1, K)
|
|
min_dim = 128
|
|
|
|
assert min_dim <= K, (
|
|
f"mm_mxfp8 requires K >= {min_dim}, got K={K}. "
|
|
f"in_features is too small for mm_mxfp8."
|
|
)
|
|
assert K % MXFP8_BLOCK_SIZE == 0, (
|
|
f"mm_mxfp8 requires K to be divisible by {MXFP8_BLOCK_SIZE}, got K={K}."
|
|
)
|
|
assert min_dim <= N, (
|
|
f"mm_mxfp8 requires N >= {min_dim}, got N={N}. "
|
|
f"out_features is too small for mm_mxfp8."
|
|
)
|
|
|
|
input_mxfp8, input_scale = mxfp8_e4m3_quantize(
|
|
input_2d, is_sf_swizzled_layout=True
|
|
)
|
|
|
|
output = vllm_flashinfer.mm_mxfp8(
|
|
input_mxfp8,
|
|
weight,
|
|
input_scale,
|
|
weight_scale,
|
|
out_dtype=out_dtype,
|
|
backend="cute-dsl",
|
|
)
|
|
|
|
if bias is not None:
|
|
output = output + bias
|
|
|
|
output_shape = (*input_shape[:-1], N)
|
|
return output.view(output_shape)
|