test_pp_cudagraph.py 989 Bytes
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3
import pytest
4
from typing_extensions import LiteralString
5

6
from ..utils import compare_two_settings, create_new_process_for_each_test
7
8


9
10
11
12
13
14
15
16
17
18
19
20
@pytest.mark.parametrize(
    "PP_SIZE, MODEL_NAME",
    [
        (2, "JackFram/llama-160m"),
    ],
)
@pytest.mark.parametrize(
    "ATTN_BACKEND",
    [
        "FLASH_ATTN",
    ],
)
21
@create_new_process_for_each_test()
22
23
24
25
26
def test_pp_cudagraph(
    PP_SIZE: int,
    MODEL_NAME: str,
    ATTN_BACKEND: LiteralString,
):
27
28
29
30
31
32
33
34
35
36
    cudagraph_args = [
        # use half precision for speed and memory savings in CI environment
        "--dtype",
        "float16",
        "--pipeline-parallel-size",
        str(PP_SIZE),
        "--distributed-executor-backend",
        "mp",
        f"--attention-backend={ATTN_BACKEND}",
    ]
37

38
    eager_args = cudagraph_args + ["--enforce-eager"]
39

40
    compare_two_settings(MODEL_NAME, eager_args, cudagraph_args)