2025-02-02 14:58:18 -05:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2025-06-03 11:20:17 -07:00
|
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
2025-02-02 14:58:18 -05:00
|
|
|
|
2024-07-17 21:38:35 -04:00
|
|
|
import pytest
|
|
|
|
|
import torch
|
|
|
|
|
|
|
|
|
|
import vllm._custom_ops as ops
|
2024-08-16 12:06:30 -05:00
|
|
|
from tests.kernels.quant_utils import (
|
|
|
|
|
FP8_DTYPE,
|
|
|
|
|
ref_dynamic_per_tensor_fp8_quant,
|
2024-07-17 21:38:35 -04:00
|
|
|
ref_dynamic_per_token_quant,
|
|
|
|
|
)
|
2024-09-25 10:35:52 -04:00
|
|
|
from tests.kernels.utils import opcheck
|
2026-01-09 15:49:27 -05:00
|
|
|
from vllm.model_executor.layers.quantization.utils.quant_utils import (
|
|
|
|
|
scaled_quantize,
|
|
|
|
|
)
|
|
|
|
|
from vllm.platforms import current_platform
|
2026-01-05 10:34:04 +08:00
|
|
|
from vllm.utils.torch_utils import set_random_seed
|
2024-07-17 21:38:35 -04:00
|
|
|
|
2025-08-14 23:25:34 -04:00
|
|
|
DTYPES = [torch.bfloat16, torch.float]
|
|
|
|
|
HIDDEN_SIZES = [17, 1024, 1025, 1026, 5137, 8193]
|
|
|
|
|
NUM_TOKENS = [1, 7, 4096]
|
2024-07-19 21:15:26 -04:00
|
|
|
SCALE_UBS = [True, False]
|
2024-07-17 21:38:35 -04:00
|
|
|
SEEDS = [0]
|
|
|
|
|
|
|
|
|
|
|
2024-09-25 10:35:52 -04:00
|
|
|
def opcheck_fp8_quant(
|
2026-01-09 15:49:27 -05:00
|
|
|
output,
|
|
|
|
|
input,
|
|
|
|
|
scale=None,
|
|
|
|
|
scale_ub=None,
|
|
|
|
|
use_per_token_if_dynamic=False,
|
|
|
|
|
group_shape=None,
|
2024-09-25 10:35:52 -04:00
|
|
|
):
|
|
|
|
|
if scale is not None:
|
2026-01-09 15:49:27 -05:00
|
|
|
opcheck(
|
|
|
|
|
torch.ops._C.static_scaled_fp8_quant,
|
|
|
|
|
(output, input, scale, group_shape),
|
|
|
|
|
)
|
2024-09-25 10:35:52 -04:00
|
|
|
elif use_per_token_if_dynamic:
|
|
|
|
|
scale = torch.empty(
|
|
|
|
|
(input.shape[0], 1), device=input.device, dtype=torch.float32
|
|
|
|
|
)
|
|
|
|
|
opcheck(
|
|
|
|
|
torch.ops._C.dynamic_per_token_scaled_fp8_quant,
|
|
|
|
|
(output, input, scale, scale_ub),
|
|
|
|
|
)
|
|
|
|
|
else:
|
|
|
|
|
scale = torch.empty(
|
|
|
|
|
(input.numel() // input.shape[-1], 1),
|
|
|
|
|
device=input.device,
|
|
|
|
|
dtype=torch.float32,
|
|
|
|
|
)
|
|
|
|
|
opcheck(torch.ops._C.dynamic_scaled_fp8_quant, (output, input, scale))
|
|
|
|
|
|
|
|
|
|
|
2024-07-17 21:38:35 -04:00
|
|
|
@pytest.mark.parametrize("num_tokens", NUM_TOKENS)
|
|
|
|
|
@pytest.mark.parametrize("hidden_size", HIDDEN_SIZES)
|
|
|
|
|
@pytest.mark.parametrize("dtype", DTYPES)
|
2024-07-19 21:15:26 -04:00
|
|
|
@pytest.mark.parametrize("scale_ub", SCALE_UBS)
|
2024-07-17 21:38:35 -04:00
|
|
|
@pytest.mark.parametrize("seed", SEEDS)
|
|
|
|
|
@torch.inference_mode()
|
|
|
|
|
def test_dynamic_per_token_fp8_quant(
|
2024-07-19 21:15:26 -04:00
|
|
|
num_tokens: int, hidden_size: int, dtype: torch.dtype, scale_ub: bool, seed: int
|
|
|
|
|
) -> None:
|
2026-01-05 10:34:04 +08:00
|
|
|
set_random_seed(seed)
|
2024-07-17 21:38:35 -04:00
|
|
|
|
|
|
|
|
x = (
|
|
|
|
|
torch.rand(num_tokens, hidden_size, dtype=dtype, device="cuda") + 1e-6
|
|
|
|
|
) # avoid nans
|
|
|
|
|
|
2024-07-19 21:15:26 -04:00
|
|
|
scale_ub = (
|
|
|
|
|
torch.mean(x).to(dtype=torch.float32, device="cuda") if scale_ub else None
|
2025-10-05 15:06:22 +01:00
|
|
|
)
|
2024-08-16 12:06:30 -05:00
|
|
|
ref_out, ref_scales = ref_dynamic_per_token_quant(x, FP8_DTYPE, scale_ub)
|
2024-07-19 19:08:15 -04:00
|
|
|
ops_out, ops_scales = ops.scaled_fp8_quant(
|
|
|
|
|
x, scale_ub=scale_ub, use_per_token_if_dynamic=True
|
|
|
|
|
)
|
2024-07-17 21:38:35 -04:00
|
|
|
|
2024-08-15 21:24:04 -07:00
|
|
|
torch.testing.assert_close(ref_scales, ops_scales)
|
|
|
|
|
torch.testing.assert_close(
|
|
|
|
|
ref_out.to(dtype=torch.float32), ops_out.to(dtype=torch.float32)
|
2025-10-05 15:06:22 +01:00
|
|
|
)
|
2024-07-17 21:38:35 -04:00
|
|
|
|
2024-09-25 10:35:52 -04:00
|
|
|
opcheck_fp8_quant(ops_out, x, None, scale_ub, use_per_token_if_dynamic=True)
|
|
|
|
|
|
2024-07-17 21:38:35 -04:00
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("num_tokens", NUM_TOKENS)
|
|
|
|
|
@pytest.mark.parametrize("hidden_size", HIDDEN_SIZES)
|
|
|
|
|
@pytest.mark.parametrize("dtype", DTYPES)
|
|
|
|
|
@pytest.mark.parametrize("seed", SEEDS)
|
|
|
|
|
@torch.inference_mode()
|
|
|
|
|
def test_dynamic_per_tensor_fp8_quant(
|
|
|
|
|
num_tokens: int, hidden_size: int, dtype: torch.dtype, seed: int
|
|
|
|
|
) -> None:
|
2026-01-05 10:34:04 +08:00
|
|
|
set_random_seed(seed)
|
2024-07-17 21:38:35 -04:00
|
|
|
|
|
|
|
|
x = torch.rand(num_tokens, hidden_size, dtype=dtype, device="cuda")
|
|
|
|
|
|
|
|
|
|
ref_out, ref_scale = ref_dynamic_per_tensor_fp8_quant(x)
|
|
|
|
|
ops_out, ops_scale = ops.scaled_fp8_quant(x)
|
|
|
|
|
|
2024-08-15 21:24:04 -07:00
|
|
|
torch.testing.assert_close(ref_scale, ops_scale)
|
|
|
|
|
torch.testing.assert_close(
|
|
|
|
|
ref_out.to(dtype=torch.float32), ops_out.to(dtype=torch.float32)
|
2025-10-05 15:06:22 +01:00
|
|
|
)
|
2024-07-22 16:08:30 -04:00
|
|
|
|
2024-09-25 10:35:52 -04:00
|
|
|
opcheck_fp8_quant(ops_out, x)
|
|
|
|
|
|
2024-07-22 16:08:30 -04:00
|
|
|
|
|
|
|
|
# Regression test for a case with large activations where an int32 index cannot
|
|
|
|
|
# represent the number of elements.
|
|
|
|
|
@torch.inference_mode()
|
|
|
|
|
@pytest.mark.parametrize("seed", SEEDS)
|
|
|
|
|
def test_fp8_quant_large(seed: int) -> None:
|
2026-01-05 10:34:04 +08:00
|
|
|
set_random_seed(seed)
|
2024-07-22 16:08:30 -04:00
|
|
|
|
|
|
|
|
num_tokens = 1024000 # Mistral-Nemo's max_position_embeddings
|
|
|
|
|
hidden_size = 1152 # Smallest hidden_size to reproduce the error
|
|
|
|
|
dtype = torch.bfloat16
|
|
|
|
|
|
|
|
|
|
x = torch.rand(num_tokens, hidden_size, dtype=dtype, device="cuda")
|
|
|
|
|
ref_out, scale = ref_dynamic_per_tensor_fp8_quant(x)
|
|
|
|
|
ops_out, _ = ops.scaled_fp8_quant(x, scale)
|
|
|
|
|
|
|
|
|
|
# Minimize memory footprint in this test by freeing x and upconverting
|
|
|
|
|
# the outputs in place. (torch.allclose does not support fp8)
|
|
|
|
|
del x
|
|
|
|
|
ref_out = ref_out.to(dtype=dtype)
|
|
|
|
|
ops_out = ops_out.to(dtype=dtype)
|
|
|
|
|
|
2024-08-15 21:24:04 -07:00
|
|
|
torch.testing.assert_close(ref_out, ops_out)
|
2026-01-09 15:49:27 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# Test static FP8 quantization with 2D group scales
|
|
|
|
|
GROUP_SHAPES_2D = [
|
|
|
|
|
(-1, -1), # Per-tensor
|
|
|
|
|
(-1, 1), # Per-channel
|
|
|
|
|
(1, -1), # Per-token
|
|
|
|
|
(-1, 128), # Per-head quantization
|
|
|
|
|
(1, 128), # DeepSeek-style per-token-per-group (group_m=1, group_n=128)
|
|
|
|
|
(128, 128), # DeepSeek-style block quantization
|
|
|
|
|
(1, 64), # Smaller group size
|
|
|
|
|
(1, 16), # Small group (scalar path in kernel)
|
|
|
|
|
(4, 256), # Non-trivial both dimensions
|
|
|
|
|
]
|
|
|
|
|
# Use sizes divisible by all group shapes
|
|
|
|
|
NUM_TOKENS_GROUP = [128, 512]
|
|
|
|
|
HIDDEN_SIZES_GROUP = [256, 1024, 2048]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("num_tokens", NUM_TOKENS_GROUP)
|
|
|
|
|
@pytest.mark.parametrize("hidden_size", HIDDEN_SIZES_GROUP)
|
|
|
|
|
@pytest.mark.parametrize("group_shape", GROUP_SHAPES_2D)
|
|
|
|
|
@pytest.mark.parametrize("dtype", DTYPES)
|
|
|
|
|
@pytest.mark.parametrize("seed", SEEDS)
|
|
|
|
|
@torch.inference_mode()
|
|
|
|
|
def test_static_fp8_quant_group_2d(
|
|
|
|
|
num_tokens: int,
|
|
|
|
|
hidden_size: int,
|
|
|
|
|
group_shape: tuple[int, int],
|
|
|
|
|
dtype: torch.dtype,
|
|
|
|
|
seed: int,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test static FP8 quantization with 2D group scales using scaled_quantize."""
|
|
|
|
|
# Normalize group_shape (-1 means full extent)
|
|
|
|
|
norm_group_m = num_tokens if group_shape[0] == -1 else group_shape[0]
|
|
|
|
|
norm_group_n = hidden_size if group_shape[1] == -1 else group_shape[1]
|
|
|
|
|
|
|
|
|
|
# Skip if sizes are not divisible by group shape
|
|
|
|
|
if num_tokens % norm_group_m != 0 or hidden_size % norm_group_n != 0:
|
|
|
|
|
pytest.skip(
|
|
|
|
|
f"Skipping: ({num_tokens}, {hidden_size}) not divisible by "
|
|
|
|
|
f"group_shape ({group_shape[0]}, {group_shape[1]})"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
current_platform.seed_everything(seed)
|
|
|
|
|
|
|
|
|
|
x = torch.rand(num_tokens, hidden_size, dtype=dtype, device="cuda")
|
|
|
|
|
ref_out, scale = scaled_quantize(
|
|
|
|
|
x, group_shape, FP8_DTYPE, compute_dtype=torch.float32
|
|
|
|
|
)
|
|
|
|
|
ops_out, ops_scale = ops.scaled_fp8_quant(x, scale=scale, group_shape=group_shape)
|
|
|
|
|
|
|
|
|
|
torch.testing.assert_close(scale, ops_scale)
|
|
|
|
|
torch.testing.assert_close(ref_out.float(), ops_out.float(), rtol=0.12, atol=0.0)
|
|
|
|
|
|
|
|
|
|
opcheck_fp8_quant(ops_out, x, scale=scale)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("num_tokens", NUM_TOKENS_GROUP)
|
|
|
|
|
@pytest.mark.parametrize("hidden_size", HIDDEN_SIZES_GROUP)
|
|
|
|
|
@pytest.mark.parametrize("dtype", DTYPES)
|
|
|
|
|
@pytest.mark.parametrize("seed", SEEDS)
|
|
|
|
|
@pytest.mark.parametrize("group_shape", [(1, -1), (-1, 1)]) # per-token, per-channel
|
|
|
|
|
@torch.inference_mode()
|
|
|
|
|
def test_static_fp8_quant_1d_scale(
|
|
|
|
|
num_tokens: int,
|
|
|
|
|
hidden_size: int,
|
|
|
|
|
dtype: torch.dtype,
|
|
|
|
|
seed: int,
|
|
|
|
|
group_shape: tuple[int, int],
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test static FP8 quantization with 1D scale (per-token or per-channel)."""
|
|
|
|
|
current_platform.seed_everything(seed)
|
|
|
|
|
|
|
|
|
|
x = torch.rand(num_tokens, hidden_size, dtype=dtype, device="cuda")
|
|
|
|
|
ref_out, scale_2d = scaled_quantize(
|
|
|
|
|
x, group_shape, FP8_DTYPE, compute_dtype=torch.float32
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Flatten scale to 1D for testing 1D scale path
|
|
|
|
|
scale_1d = scale_2d.flatten()
|
|
|
|
|
ops_out, ops_scale = ops.scaled_fp8_quant(
|
|
|
|
|
x, scale=scale_1d, group_shape=group_shape
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
torch.testing.assert_close(scale_1d, ops_scale)
|
|
|
|
|
torch.testing.assert_close(ref_out.float(), ops_out.float(), rtol=0.12, atol=0.0)
|
|
|
|
|
|
|
|
|
|
opcheck_fp8_quant(ops_out, x, scale=scale_1d, group_shape=group_shape)
|