test_trtllm.py 5.36 KB
Newer Older
1
2
3
4
5
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

import logging
import os
6
from dataclasses import dataclass, field
7
8
9

import pytest

10
11
12
13
14
from tests.serve.common import (
    WORKSPACE_DIR,
    params_with_model_mark,
    run_serve_deployment,
)
15
from tests.utils.engine_process import EngineConfig
16
17
18
19
from tests.utils.payload_builder import (
    chat_payload_default,
    completion_payload_default,
    metric_payload_default,
20
    multimodal_payload_default,
21
)
22
23
24
25
26

logger = logging.getLogger(__name__)


@dataclass
27
class TRTLLMConfig(EngineConfig):
28
29
    """Configuration for trtllm test scenarios"""

30
    stragglers: list[str] = field(default_factory=lambda: ["TRTLLM:EngineCore"])
31

32

33
trtllm_dir = os.environ.get("TRTLLM_DIR") or os.path.join(
34
    WORKSPACE_DIR, "examples/backends/trtllm"
35
)
36

37
38
39
40
# trtllm test configurations
trtllm_configs = {
    "aggregated": TRTLLMConfig(
        name="aggregated",
41
        directory=trtllm_dir,
42
        script_name="agg_metrics.sh",
43
        marks=[pytest.mark.gpu_1, pytest.mark.trtllm, pytest.mark.pre_merge],
44
        model="Qwen/Qwen3-0.6B",
45
46
47
48
        models_port=8000,
        request_payloads=[
            chat_payload_default(),
            completion_payload_default(),
49
            metric_payload_default(min_num_requests=6, backend="trtllm"),
50
        ],
51
52
53
    ),
    "disaggregated": TRTLLMConfig(
        name="disaggregated",
54
        directory=trtllm_dir,
55
        script_name="disagg.sh",
56
        marks=[pytest.mark.gpu_2, pytest.mark.trtllm, pytest.mark.post_merge],
57
        model="Qwen/Qwen3-0.6B",
58
59
60
61
62
        models_port=8000,
        request_payloads=[
            chat_payload_default(),
            completion_payload_default(),
        ],
63
    ),
64
65
66
67
    "disaggregated_same_gpu": TRTLLMConfig(
        name="disaggregated_same_gpu",
        directory=trtllm_dir,
        script_name="disagg_same_gpu.sh",
68
        marks=[pytest.mark.gpu_1, pytest.mark.trtllm],
69
70
71
72
73
74
75
76
77
        model="Qwen/Qwen3-0.6B",
        models_port=8000,
        request_payloads=[
            chat_payload_default(),
            completion_payload_default(),
            metric_payload_default(port=8081, min_num_requests=6, backend="trtllm"),
            metric_payload_default(port=8082, min_num_requests=6, backend="trtllm"),
        ],
    ),
78
79
    "aggregated_router": TRTLLMConfig(
        name="aggregated_router",
80
        directory=trtllm_dir,
81
        script_name="agg_router.sh",
82
        marks=[pytest.mark.gpu_1, pytest.mark.trtllm, pytest.mark.post_merge],
83
        model="Qwen/Qwen3-0.6B",
84
85
86
87
88
        models_port=8000,
        request_payloads=[
            chat_payload_default(
                expected_log=[
                    r"Event processor for worker_id \d+ processing event: Stored\(",
Yan Ru Pei's avatar
Yan Ru Pei committed
89
                    r"Selected worker: worker_id=\d+ dp_rank=.*?, logit: ",
90
91
92
93
94
95
                ]
            )
        ],
        env={
            "DYN_LOG": "dynamo_llm::kv_router::publisher=trace,dynamo_llm::kv_router::scheduler=info",
        },
96
97
98
    ),
    "disaggregated_router": TRTLLMConfig(
        name="disaggregated_router",
99
        directory=trtllm_dir,
100
        script_name="disagg_router.sh",
101
        marks=[pytest.mark.gpu_2, pytest.mark.trtllm, pytest.mark.nightly],
102
        model="Qwen/Qwen3-0.6B",
103
104
105
106
107
        models_port=8000,
        request_payloads=[
            chat_payload_default(),
            completion_payload_default(),
        ],
108
    ),
109
110
111
112
    "disaggregated_multimodal": TRTLLMConfig(
        name="disaggregated_multimodal",
        directory=trtllm_dir,
        script_name="disagg_multimodal.sh",
113
        marks=[pytest.mark.gpu_2, pytest.mark.trtllm, pytest.mark.multimodal],
114
115
116
117
118
119
        model="Qwen/Qwen2-VL-7B-Instruct",
        models_port=8000,
        timeout=900,
        delayed_start=60,
        request_payloads=[multimodal_payload_default()],
    ),
120
121
122
}


Alec's avatar
Alec committed
123
@pytest.fixture(params=params_with_model_mark(trtllm_configs))
124
125
def trtllm_config_test(request):
    """Fixture that provides different trtllm test configurations"""
126
    return trtllm_configs[request.param]
127
128


129
@pytest.mark.trtllm
130
@pytest.mark.e2e
Alec's avatar
Alec committed
131
def test_deployment(trtllm_config_test, request, runtime_services, predownload_models):
132
133
134
135
    """
    Test dynamo deployments with different configurations.
    """
    config = trtllm_config_test
136
137
    extra_env = {"MODEL_PATH": config.model, "SERVED_MODEL_NAME": config.model}
    run_serve_deployment(config, request, extra_env=extra_env)
138
139


140
# TODO make this a normal guy
141
142
@pytest.mark.e2e
@pytest.mark.gpu_1
143
144
@pytest.mark.pre_merge
@pytest.mark.trtllm
145
def test_chat_only_aggregated_with_test_logits_processor(
Alec's avatar
Alec committed
146
    request, runtime_services, predownload_models, monkeypatch
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
):
    """
    Run a single aggregated chat-completions test using Qwen 0.6B with the
    test logits processor enabled, and expect "Hello world" in the response.
    """

    # Enable HelloWorld logits processor only for this test
    monkeypatch.setenv("DYNAMO_ENABLE_TEST_LOGITS_PROCESSOR", "1")

    base = trtllm_configs["aggregated"]
    config = TRTLLMConfig(
        name="aggregated_qwen_chatonly",
        directory=base.directory,
        script_name=base.script_name,  # agg.sh
        marks=[],  # not used by this direct test
162
        request_payloads=[
163
            chat_payload_default(expected_response=["Hello world!"]),
164
        ],
165
166
167
168
169
        model="Qwen/Qwen3-0.6B",
        delayed_start=base.delayed_start,
        timeout=base.timeout,
    )

170
    run_serve_deployment(config, request)