Signed-off-by: Luka Govedič <lgovedic@redhat.com> Signed-off-by: Xinyu Chen <xinyu1.chen@intel.com> Signed-off-by: chzhang <chaojun.zhang@intel.com> Signed-off-by: Luka Govedic <luka.govedic@gmail.com> Co-authored-by: Xinyu Chen <xinyu1.chen@intel.com> Co-authored-by: Chaojun Zhang <chaojun.zhang@intel.com> Co-authored-by: Luka Govedič <ProExpertProg@h100-01.nemg-001.lab.rdu2.dc.redhat.com>
212 lines
6.0 KiB
Python
212 lines
6.0 KiB
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
from collections.abc import Callable
|
|
|
|
import pytest
|
|
|
|
from vllm.config import PassConfig
|
|
from vllm.platforms import current_platform
|
|
|
|
from ...utils import multi_gpu_test
|
|
from .common import (
|
|
INDUCTOR_GRAPH_PARTITION,
|
|
AttentionBackendCase,
|
|
Matches,
|
|
custom_ops_combos,
|
|
is_blackwell,
|
|
)
|
|
from .models import (
|
|
FLASHINFER_ATTN,
|
|
FLASHINFER_MLA_ATTN,
|
|
TRITON_ATTN,
|
|
deepseek_v3_fp8,
|
|
gpt_oss_20b,
|
|
llama3_8b,
|
|
llama3_8b_fp4,
|
|
llama3_8b_fp8,
|
|
llama4_scout_fp4,
|
|
llama4_scout_fp8,
|
|
qwen3_a3b,
|
|
qwen3_a3b_fp8,
|
|
)
|
|
|
|
pytestmark = pytest.mark.skipif(not current_platform.is_cuda(), reason="Only test CUDA")
|
|
|
|
|
|
@multi_gpu_test(num_gpus=2)
|
|
@pytest.mark.parametrize(
|
|
"model_name, matches_fn, model_kwargs, hf_overrides",
|
|
# qwen3 & dsv3 should still fuse AR+rms even though group quant is not yet supported
|
|
[llama3_8b_fp8, llama4_scout_fp8, qwen3_a3b_fp8, deepseek_v3_fp8],
|
|
)
|
|
@pytest.mark.parametrize(
|
|
"attn_backend", [TRITON_ATTN, FLASHINFER_ATTN, FLASHINFER_MLA_ATTN]
|
|
)
|
|
@pytest.mark.parametrize("n_layers", [4])
|
|
@pytest.mark.parametrize("custom_ops", custom_ops_combos("quant_fp8", "rms_norm"))
|
|
@pytest.mark.parametrize("inductor_graph_partition", INDUCTOR_GRAPH_PARTITION)
|
|
def test_tp2_ar_rms_fp8_fusions(
|
|
model_name: str,
|
|
matches_fn: Callable[[int], Matches],
|
|
model_kwargs: dict,
|
|
hf_overrides: Callable[[int], dict],
|
|
attn_backend: AttentionBackendCase,
|
|
n_layers: int,
|
|
custom_ops: str,
|
|
inductor_graph_partition: bool,
|
|
run_e2e_fusion_test,
|
|
monkeypatch,
|
|
):
|
|
matches = matches_fn(n_layers)
|
|
|
|
block_fp8 = "qwen" in model_name.lower() or "deepseek" in model_name.lower()
|
|
if block_fp8 and "-quant_fp8" in custom_ops:
|
|
# This is why config forces +quant_fp8 by default
|
|
pytest.skip("native QuantFP8 matching not supported for group quant")
|
|
|
|
# Reduce size of model and skip weight loading time
|
|
model_kwargs["hf_overrides"] = hf_overrides(n_layers)
|
|
model_kwargs["load_format"] = "dummy"
|
|
model_kwargs["max_model_len"] = 1024
|
|
model_kwargs["kernel_config"] = {"enable_flashinfer_autotune": False}
|
|
|
|
compilation_config = dict(
|
|
use_inductor_graph_partition=inductor_graph_partition,
|
|
custom_ops=custom_ops.split(","),
|
|
pass_config=PassConfig(
|
|
fuse_norm_quant=True,
|
|
fuse_act_quant=True,
|
|
fuse_attn_quant=True,
|
|
enable_qk_norm_rope_fusion=True,
|
|
fuse_allreduce_rms=True,
|
|
),
|
|
)
|
|
|
|
matches_check = [
|
|
"rms_quant_fusion",
|
|
"act_quant_fusion",
|
|
"norm_rope_fusion",
|
|
"attn_quant_fusion",
|
|
"ar_rms_fusion",
|
|
]
|
|
|
|
run_e2e_fusion_test(
|
|
model_name,
|
|
matches,
|
|
model_kwargs,
|
|
attn_backend,
|
|
compilation_config,
|
|
matches_check,
|
|
tp_size=2,
|
|
)
|
|
|
|
|
|
@multi_gpu_test(num_gpus=2)
|
|
@pytest.mark.parametrize(
|
|
"model_name, matches_fn, model_kwargs, hf_overrides",
|
|
[llama3_8b_fp4, llama4_scout_fp4],
|
|
)
|
|
@pytest.mark.parametrize("attn_backend", [FLASHINFER_ATTN])
|
|
@pytest.mark.parametrize("n_layers", [4])
|
|
@pytest.mark.parametrize("custom_ops", custom_ops_combos("rms_norm"))
|
|
@pytest.mark.parametrize("inductor_graph_partition", INDUCTOR_GRAPH_PARTITION)
|
|
@pytest.mark.skipif(not is_blackwell(), reason="Blackwell required for fp4")
|
|
def test_tp2_ar_rms_fp4_fusions(
|
|
model_name: str,
|
|
matches_fn: Callable[[int], Matches],
|
|
model_kwargs: dict,
|
|
hf_overrides: Callable[[int], dict],
|
|
attn_backend: AttentionBackendCase,
|
|
n_layers: int,
|
|
custom_ops: str,
|
|
inductor_graph_partition: bool,
|
|
run_e2e_fusion_test,
|
|
monkeypatch,
|
|
):
|
|
matches = matches_fn(n_layers)
|
|
|
|
# Reduce size of model and skip weight loading time
|
|
model_kwargs["hf_overrides"] = hf_overrides(n_layers)
|
|
model_kwargs["load_format"] = "dummy"
|
|
model_kwargs["max_model_len"] = 1024
|
|
model_kwargs["kernel_config"] = {"enable_flashinfer_autotune": False}
|
|
|
|
compilation_config = dict(
|
|
use_inductor_graph_partition=inductor_graph_partition,
|
|
custom_ops=custom_ops.split(","),
|
|
pass_config=PassConfig(
|
|
fuse_act_quant=True,
|
|
fuse_attn_quant=True,
|
|
fuse_allreduce_rms=True,
|
|
),
|
|
)
|
|
|
|
matches_check = [
|
|
"act_quant_fusion",
|
|
"attn_quant_fusion",
|
|
"ar_rms_fusion",
|
|
]
|
|
|
|
run_e2e_fusion_test(
|
|
model_name,
|
|
matches,
|
|
model_kwargs,
|
|
attn_backend,
|
|
compilation_config,
|
|
matches_check,
|
|
tp_size=2,
|
|
)
|
|
|
|
|
|
@multi_gpu_test(num_gpus=2)
|
|
@pytest.mark.parametrize(
|
|
"model_name, matches_fn, model_kwargs, hf_overrides",
|
|
[llama3_8b, qwen3_a3b, gpt_oss_20b],
|
|
)
|
|
@pytest.mark.parametrize("attn_backend", [TRITON_ATTN])
|
|
@pytest.mark.parametrize("n_layers", [4])
|
|
@pytest.mark.parametrize("custom_ops", custom_ops_combos("rms_norm"))
|
|
@pytest.mark.parametrize("inductor_graph_partition", INDUCTOR_GRAPH_PARTITION)
|
|
def test_tp2_ar_rms_fusions(
|
|
model_name: str,
|
|
matches_fn: Callable[[int], Matches],
|
|
model_kwargs: dict,
|
|
hf_overrides: Callable[[int], dict],
|
|
attn_backend: AttentionBackendCase,
|
|
n_layers: int,
|
|
custom_ops: str,
|
|
inductor_graph_partition: bool,
|
|
run_e2e_fusion_test,
|
|
):
|
|
matches = matches_fn(n_layers)
|
|
|
|
# Reduce size of model and skip weight loading time
|
|
model_kwargs["hf_overrides"] = hf_overrides(n_layers)
|
|
model_kwargs["load_format"] = "dummy"
|
|
model_kwargs["max_model_len"] = 1024
|
|
model_kwargs["kernel_config"] = {"enable_flashinfer_autotune": False}
|
|
|
|
compilation_config = dict(
|
|
use_inductor_graph_partition=inductor_graph_partition,
|
|
custom_ops=custom_ops.split(","),
|
|
pass_config=PassConfig(
|
|
enable_qk_norm_rope_fusion=True,
|
|
fuse_allreduce_rms=True,
|
|
),
|
|
)
|
|
|
|
matches_check = [
|
|
"norm_rope_fusion",
|
|
"ar_rms_fusion",
|
|
]
|
|
|
|
run_e2e_fusion_test(
|
|
model_name,
|
|
matches,
|
|
model_kwargs,
|
|
attn_backend,
|
|
compilation_config,
|
|
matches_check,
|
|
tp_size=2,
|
|
)
|