test_config.py 1.93 KB
Newer Older
1
2
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3
import os
4
5
6
7
import pytest

import vllm
from vllm.compilation.counter import compilation_counter
8
from vllm.config import VllmConfig
9
from vllm.utils import _is_torch_equal_or_newer
10
from ..utils import models_path_prefix
11
12
13
14
15
16
17

def test_version():
    assert _is_torch_equal_or_newer('2.8.0.dev20250624+cu128', '2.8.0.dev')
    assert _is_torch_equal_or_newer('2.8.0a0+gitc82a174', '2.8.0.dev')
    assert _is_torch_equal_or_newer('2.8.0', '2.8.0.dev')
    assert _is_torch_equal_or_newer('2.8.1', '2.8.0.dev')
    assert not _is_torch_equal_or_newer('2.7.1', '2.8.0.dev')
18
19


20
21
22
23
24
25
26
27
28
29
def test_use_cudagraphs_dynamic(monkeypatch):
    assert vllm.envs.VLLM_USE_V1
    vllm_config = VllmConfig()
    assert vllm_config.compilation_config.use_cudagraph

    monkeypatch.setenv('VLLM_USE_V1', '0')
    vllm_config = VllmConfig()
    assert not vllm_config.compilation_config.use_cudagraph


30
31
32
# TODO: when True num_cudagraph_captured=13 
# @pytest.mark.parametrize("enabled", [True, False])
@pytest.mark.parametrize("enabled", [False])
33
def test_use_cudagraphs(vllm_runner, monkeypatch, enabled):
34
    assert vllm.envs.VLLM_USE_V1
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

    # Disable multiprocessing so that the counter is in the same process
    monkeypatch.setenv('VLLM_ENABLE_V1_MULTIPROCESSING', '0')

    compilation_config = {
        "cudagraph_capture_sizes": [100],
        "use_cudagraph": enabled,
    }
    with (
            compilation_counter.expect(
                num_graphs_seen=1,
                num_gpu_runner_capture_triggers=1 if enabled else 0,
                num_cudagraph_captured=13 if enabled else 0,
            ),
            # loading the model causes compilation (if enabled) to happen
50
            vllm_runner(os.path.join(models_path_prefix, 'facebook/opt-125m'),
51
52
53
                        compilation_config=compilation_config,
                        gpu_memory_utilization=0.4) as _):
        pass