test_trtllm.py 6.54 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
# TensorRT-LLM test configurations
# NOTE: pytest.mark.gpu_1 tests take ~442s (7m 22s) total to run sequentially (with models pre-cached)
# TODO: Parallelize these tests to reduce total execution time
40
41
42
trtllm_configs = {
    "aggregated": TRTLLMConfig(
        name="aggregated",
43
        directory=trtllm_dir,
44
        script_name="agg_metrics.sh",
45
46
47
48
49
50
        marks=[
            pytest.mark.gpu_1,
            pytest.mark.pre_merge,
            pytest.mark.trtllm,
            pytest.mark.timeout(140),  # 3x measured time (44.66s)
        ],
51
        model="Qwen/Qwen3-0.6B",
52
53
54
55
        models_port=8000,
        request_payloads=[
            chat_payload_default(),
            completion_payload_default(),
56
            metric_payload_default(min_num_requests=6, backend="trtllm"),
57
        ],
58
59
60
    ),
    "disaggregated": TRTLLMConfig(
        name="disaggregated",
61
        directory=trtllm_dir,
62
        script_name="disagg.sh",
63
        marks=[pytest.mark.gpu_2, pytest.mark.trtllm, pytest.mark.post_merge],
64
        model="Qwen/Qwen3-0.6B",
65
66
67
68
69
        models_port=8000,
        request_payloads=[
            chat_payload_default(),
            completion_payload_default(),
        ],
70
    ),
71
72
73
74
    "disaggregated_same_gpu": TRTLLMConfig(
        name="disaggregated_same_gpu",
        directory=trtllm_dir,
        script_name="disagg_same_gpu.sh",
75
76
77
78
79
80
        marks=[
            pytest.mark.gpu_1,
            pytest.mark.pre_merge,
            pytest.mark.trtllm,
            pytest.mark.timeout(320),  # 3x measured time (103.66s)
        ],
81
82
83
84
85
86
87
88
89
        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"),
        ],
    ),
90
91
    "aggregated_router": TRTLLMConfig(
        name="aggregated_router",
92
        directory=trtllm_dir,
93
        script_name="agg_router.sh",
94
95
96
97
98
99
        marks=[
            pytest.mark.gpu_1,
            pytest.mark.pre_merge,
            pytest.mark.trtllm,
            pytest.mark.timeout(120),  # 3x measured time (37.91s)
        ],
100
        model="Qwen/Qwen3-0.6B",
101
102
103
104
105
        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
106
                    r"Selected worker: worker_id=\d+ dp_rank=.*?, logit: ",
107
108
109
110
111
112
                ]
            )
        ],
        env={
            "DYN_LOG": "dynamo_llm::kv_router::publisher=trace,dynamo_llm::kv_router::scheduler=info",
        },
113
114
115
    ),
    "disaggregated_router": TRTLLMConfig(
        name="disaggregated_router",
116
        directory=trtllm_dir,
117
        script_name="disagg_router.sh",
118
        marks=[pytest.mark.gpu_2, pytest.mark.trtllm, pytest.mark.nightly],
119
        model="Qwen/Qwen3-0.6B",
120
121
122
123
124
        models_port=8000,
        request_payloads=[
            chat_payload_default(),
            completion_payload_default(),
        ],
125
    ),
126
127
128
129
    "disaggregated_multimodal": TRTLLMConfig(
        name="disaggregated_multimodal",
        directory=trtllm_dir,
        script_name="disagg_multimodal.sh",
130
        marks=[pytest.mark.gpu_2, pytest.mark.trtllm, pytest.mark.multimodal],
131
132
133
134
135
136
        model="Qwen/Qwen2-VL-7B-Instruct",
        models_port=8000,
        timeout=900,
        delayed_start=60,
        request_payloads=[multimodal_payload_default()],
    ),
137
138
139
140
    "completions_only": TRTLLMConfig(
        name="completions_only",
        directory=trtllm_dir,
        script_name="agg.sh",
141
142
143
144
145
        marks=[
            pytest.mark.gpu_1,
            pytest.mark.trtllm,
            pytest.mark.timeout(260),  # 3x measured time (83.85s)
        ],
146
147
148
149
150
151
152
153
154
155
        model="deepseek-ai/deepseek-llm-7b-base",
        script_args=["--dyn-endpoint-types", "completions"],
        env={
            "MODEL_PATH": "deepseek-ai/deepseek-llm-7b-base",
            "SERVED_MODEL_NAME": "deepseek-ai/deepseek-llm-7b-base",
        },
        request_payloads=[
            completion_payload_default(),
        ],
    ),
156
157
158
}


Alec's avatar
Alec committed
159
@pytest.fixture(params=params_with_model_mark(trtllm_configs))
160
161
def trtllm_config_test(request):
    """Fixture that provides different trtllm test configurations"""
162
    return trtllm_configs[request.param]
163
164


165
@pytest.mark.trtllm
166
@pytest.mark.e2e
Alec's avatar
Alec committed
167
def test_deployment(trtllm_config_test, request, runtime_services, predownload_models):
168
169
170
171
    """
    Test dynamo deployments with different configurations.
    """
    config = trtllm_config_test
172
173
    extra_env = {"MODEL_PATH": config.model, "SERVED_MODEL_NAME": config.model}
    run_serve_deployment(config, request, extra_env=extra_env)
174
175


176
# TODO make this a normal guy
177
178
@pytest.mark.e2e
@pytest.mark.gpu_1
179
@pytest.mark.trtllm
180
@pytest.mark.timeout(480)  # 3x measured time (159.68s)
181
def test_chat_only_aggregated_with_test_logits_processor(
Alec's avatar
Alec committed
182
    request, runtime_services, predownload_models, monkeypatch
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
):
    """
    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
198
        request_payloads=[
199
            chat_payload_default(expected_response=["Hello world!"]),
200
        ],
201
202
203
204
205
        model="Qwen/Qwen3-0.6B",
        delayed_start=base.delayed_start,
        timeout=base.timeout,
    )

206
    run_serve_deployment(config, request)