"tests/utils_/test_tensor_schema.py" did not exist on "8c50d62f5a51799c2ecc1ad25380a5a6dd7c7180"
test_full_graph.py 7.8 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3

4
import tempfile
5
from pathlib import Path
6
from typing import Any
7

8
import pytest
9
import torch
10

11
12
from tests.quantization.utils import is_quant_method_supported
from vllm import LLM, SamplingParams
13
from vllm.config import CompilationConfig, CompilationMode, CUDAGraphMode, PassConfig
14
from vllm.platforms import current_platform
15
from vllm.utils.torch_utils import is_torch_equal_or_newer
16
from vllm.v1.attention.backends.registry import AttentionBackendEnum
17

18
from ...utils import create_new_process_for_each_test
19
20


21
def models_list(*, all: bool = True, keywords: list[str] | None = None):
22
23
    TEST_MODELS: list[tuple[str, dict[str, Any]]] = [
        ("facebook/opt-125m", {}),
24
25
        (
            "neuralmagic/Llama-3.2-1B-Instruct-FP8-dynamic",
26
            {"dtype": torch.float16},
27
        ),
28
29
30
        ("meta-llama/Llama-3.2-1B-Instruct", {}),
    ]

31
    if all:
32
33
34
35
36
37
38
39
40
41
        TEST_MODELS.extend(
            [
                ("neuralmagic/Llama-3.2-1B-Instruct-quantized.w8a8", {}),
                (
                    "nm-testing/tinyllama-oneshot-w8w8-test-static-shape-change",
                    {"dtype": torch.float16},
                ),
            ]
        )

42
43
        # TODO: figure out why this fails.
        if False and is_quant_method_supported("gguf"):  # noqa: SIM223
44
45
46
            TEST_MODELS.append(
                ("TheBloke/TinyLlama-1.1B-Chat-v1.0-GGUF", {"quantization": "gguf"})
            )
47
48

        if is_quant_method_supported("gptq"):
49
50
51
            TEST_MODELS.append(
                ("TheBloke/TinyLlama-1.1B-Chat-v0.3-GPTQ", {"quantization": "gptq"})
            )
52
53

        if is_quant_method_supported("gptq_marlin"):
54
55
56
57
58
59
            TEST_MODELS.append(
                (
                    "TheBloke/TinyLlama-1.1B-Chat-v1.0-GPTQ",
                    {"quantization": "gptq_marlin"},
                )
            )
60

61
        if not current_platform.is_rocm() and is_quant_method_supported("awq"):
62
63
64
            TEST_MODELS.append(
                ("TheBloke/TinyLlama-1.1B-Chat-v0.3-AWQ", {"quantization": "AWQ"})
            )
65
66
67
68
69
70
71

    if keywords is None:
        return TEST_MODELS

    # filter by keywords
    pred = lambda model: any(keyword in model[0] for keyword in keywords)
    return list(filter(pred, TEST_MODELS))
72
73


74
@pytest.mark.parametrize(
75
76
    "compilation_mode",
    [CompilationMode.DYNAMO_TRACE_ONCE, CompilationMode.VLLM_COMPILE],
77
)
78
@pytest.mark.parametrize("model, model_kwargs", models_list(all=True))
79
@create_new_process_for_each_test()
80
81
def test_full_graph(
    monkeypatch: pytest.MonkeyPatch,
82
83
    model: str,
    model_kwargs: dict[str, Any],
84
    compilation_mode: int,
85
):
86
87
88
89
90
91
92
    if (
        "w8a8" in model
        or "w8w8" in model
        and current_platform.has_device_capability((10, 0))
    ):
        # int8 removed on Blackwell:
        pytest.skip("int8 support removed on Blackwell")
93

94
    with monkeypatch.context():
95
96
        print(f"MODEL={model}")

97
        run_model(compilation_mode, model, **model_kwargs)
98
99
100
101


# TODO(luka) add other supported compilation config scenarios here
@pytest.mark.parametrize(
102
    "compilation_config, model, model_kwargs",
103
    [
104
        # additional compile sizes, only some of the models
105
        (
106
            CompilationConfig(mode=CompilationMode.VLLM_COMPILE, compile_sizes=[1, 2]),
107
            *model_info,
108
        )
109
        for model_info in models_list(all=False)
110
111
    ]
    + [
112
        # RMSNorm + quant fusion, only 8-bit quant models
113
114
        (
            CompilationConfig(
115
                mode=CompilationMode.VLLM_COMPILE,
116
                custom_ops=["+rms_norm"],
117
118
119
                pass_config=PassConfig(
                    fuse_norm_quant=True, fuse_act_quant=True, eliminate_noops=True
                ),
120
            ),
121
            *model_info,
122
        )
123
        for model_info in models_list(keywords=["FP8-dynamic", "quantized.w8a8"])
124
125
    ]
    + [
126
        # Test depyf integration works
127
128
        (
            CompilationConfig(
129
                mode=CompilationMode.VLLM_COMPILE,
130
                debug_dump_path=Path(tempfile.gettempdir()),
131
            ),
132
133
            "facebook/opt-125m",
            {},
134
135
136
        ),
    ]
    + [
137
138
139
        # graph inductor partition
        (
            CompilationConfig(
140
                mode=CompilationMode.VLLM_COMPILE,
141
142
143
144
                # inductor graph partition uses
                # torch._C.Tag.cudagraph_unsafe to specify splitting ops
                use_inductor_graph_partition=True,
                cudagraph_mode=CUDAGraphMode.PIECEWISE,
145
146
                compile_sizes=[1, 2],
            ),
147
            *model_info,
148
        )
149
        for model_info in models_list(all=False)
150
        if is_torch_equal_or_newer("2.9.0.dev")
151
152
153
154
155
156
157
158
159
160
161
162
163
164
    ]
    + [
        # Test get_raw_stream patch with compile_sizes
        # This tests that TorchInductor autotune works correctly with get_raw_stream
        # patch in torch 2.9 and without patch in torch 2.10+
        (
            CompilationConfig(
                mode=CompilationMode.VLLM_COMPILE,
                compile_sizes=[1, 2],  # Triggers autotune which uses get_raw_stream
                cudagraph_mode=CUDAGraphMode.NONE,
            ),
            "facebook/opt-125m",
            {},
        ),
165
166
    ],
)
167
168
169
170
# only test some of the models
@create_new_process_for_each_test()
def test_custom_compile_config(
    compilation_config: CompilationConfig,
171
172
    model: str,
    model_kwargs: dict[str, Any],
173
):
174
175
176
177
178
179
180
181
    if (
        "w8a8" in model
        or "w8w8" in model
        and current_platform.has_device_capability((10, 0))
    ):
        # int8 removed on Blackwell:
        pytest.skip("int8 support removed on Blackwell")

182
183
184
185
    if compilation_config.use_inductor_graph_partition and not is_torch_equal_or_newer(
        "2.9.0.dev"
    ):
        pytest.skip("inductor graph partition is only available in PyTorch 2.9+")
186

187
    print(f"MODEL={model}")
188
    run_model(compilation_config, model, **model_kwargs)
189
190


191
@pytest.mark.parametrize(
192
193
    "compilation_mode",
    [CompilationMode.NONE, CompilationMode.VLLM_COMPILE],
194
)
195
@pytest.mark.parametrize(
196
    "model, backend",
197
    [
198
199
200
201
202
        ("Qwen/Qwen2-0.5B", None),  # Standard attention model
        (
            "deepseek-ai/DeepSeek-V2-Lite",
            AttentionBackendEnum.FLASHINFER_MLA,
        ),  # MLA (Multi-head Latent Attention) model
203
204
    ],
)
205
206
207
208
209
def test_fp8_kv_scale_compile(
    compilation_mode: int,
    model: str,
    backend: AttentionBackendEnum | None,
):
210
211
212
213
214
215
    model_kwargs = {
        "quantization": "fp8",
        "kv_cache_dtype": "fp8_e4m3",
        "calculate_kv_scales": True,
        "max_model_len": 512,
    }
216
217
218
    if backend:
        model_kwargs["attention_config"] = {"backend": backend.name}

219
    run_model(compilation_mode, model, **model_kwargs)
220
221


222
223
224
225
def run_model(compile_config: int | CompilationConfig, model: str, **model_kwargs):
    compilation_config = (
        compile_config
        if isinstance(compile_config, CompilationConfig)
226
        else CompilationConfig(mode=compile_config)
227
228
    )

229
230
231
232
233
234
235
    prompts = [
        "Hello, my name is",
        "The president of the United States is",
        "The capital of France is",
        "The future of AI is",
    ]
    sampling_params = SamplingParams(temperature=0)
236
237
238
239
240
241
242
243
    # Allow override from model_kwargs
    model_kwargs = {"tensor_parallel_size": 1, **model_kwargs}
    model_kwargs = {"disable_custom_all_reduce": True, **model_kwargs}

    # No cudagraphs by default
    if compilation_config.cudagraph_mode is None:
        compilation_config.cudagraph_mode = CUDAGraphMode.NONE

244
245
    llm = LLM(
        model=model,
246
        compilation_config=compilation_config,
247
248
249
250
251
252
253
254
255
        **model_kwargs,
    )
    outputs = llm.generate(prompts, sampling_params)

    # Print the outputs.
    for output in outputs:
        prompt = output.prompt
        generated_text = output.outputs[0].text
        print(f"Prompt: {prompt!r}, Generated text: {generated_text!r}")