test_bench_serving.py 6.87 KB
Newer Older
1
2
3
import unittest

from sglang.test.test_utils import (
4
5
    DEFAULT_EAGLE_DRAFT_MODEL_FOR_TEST,
    DEFAULT_EAGLE_TARGET_MODEL_FOR_TEST,
6
    DEFAULT_MODEL_NAME_FOR_TEST,
Lianmin Zheng's avatar
Lianmin Zheng committed
7
    DEFAULT_MODEL_NAME_FOR_TEST_FP8,
8
    DEFAULT_MOE_MODEL_NAME_FOR_TEST,
9
    CustomTestCase,
10
    is_in_ci,
11
    run_bench_serving,
12
    write_github_step_summary,
13
14
15
)


16
class TestBenchServing(CustomTestCase):
17
18
19
20
21
22
23
24
25

    def test_offline_throughput_default(self):
        res = run_bench_serving(
            model=DEFAULT_MODEL_NAME_FOR_TEST,
            num_prompts=500,
            request_rate=float("inf"),
            other_server_args=[],
        )

26
        if is_in_ci():
27
28
29
30
            write_github_step_summary(
                f"### test_offline_throughput_default\n"
                f'Output throughput: {res["output_throughput"]:.2f} token/s\n'
            )
Lianmin Zheng's avatar
Lianmin Zheng committed
31
            self.assertGreater(res["output_throughput"], 3800)
32
33
34
35
36
37

    def test_offline_throughput_non_stream_small_batch_size(self):
        res = run_bench_serving(
            model=DEFAULT_MODEL_NAME_FOR_TEST,
            num_prompts=200,
            request_rate=float("inf"),
38
            other_server_args=["--max-running-requests", "10"],
39
40
41
42
            dataset_name="sharegpt",
            random_input_len=None,
            random_output_len=None,
            disable_stream=True,
43
            need_warmup=True,
44
45
46
        )

        if is_in_ci():
47
48
49
50
            write_github_step_summary(
                f"### test_offline_throughput_non_stream_small_batch_size\n"
                f'Output throughput: {res["output_throughput"]:.2f} token/s\n'
            )
Lianmin Zheng's avatar
Lianmin Zheng committed
51
            self.assertGreater(res["output_throughput"], 1050)
52
53
54
55
56
57
58
59
60

    def test_offline_throughput_without_radix_cache(self):
        res = run_bench_serving(
            model=DEFAULT_MODEL_NAME_FOR_TEST,
            num_prompts=500,
            request_rate=float("inf"),
            other_server_args=["--disable-radix-cache"],
        )

61
        if is_in_ci():
62
63
64
65
            write_github_step_summary(
                f"### test_offline_throughput_without_radix_cache\n"
                f'Output throughput: {res["output_throughput"]:.2f} token/s\n'
            )
Lianmin Zheng's avatar
Lianmin Zheng committed
66
            self.assertGreater(res["output_throughput"], 3800)
67
68
69
70
71
72
73
74
75

    def test_offline_throughput_without_chunked_prefill(self):
        res = run_bench_serving(
            model=DEFAULT_MODEL_NAME_FOR_TEST,
            num_prompts=500,
            request_rate=float("inf"),
            other_server_args=["--chunked-prefill-size", "-1"],
        )

76
        if is_in_ci():
77
78
79
80
            write_github_step_summary(
                f"### test_offline_throughput_without_chunked_prefill\n"
                f'Output throughput: {res["output_throughput"]:.2f} token/s\n'
            )
81
            self.assertGreater(res["output_throughput"], 2600)
82
83
84
85
86
87
88
89
90
91
92
93
94
95

    def test_offline_throughput_with_triton_attention_backend(self):
        res = run_bench_serving(
            model=DEFAULT_MODEL_NAME_FOR_TEST,
            num_prompts=500,
            request_rate=float("inf"),
            other_server_args=[
                "--attention-backend",
                "triton",
                "--context-length",
                "8192",
            ],
        )

96
        if is_in_ci():
97
98
99
100
            write_github_step_summary(
                f"### test_offline_throughput_with_triton_attention_backend\n"
                f'Output throughput: {res["output_throughput"]:.2f} token/s\n'
            )
101
            self.assertGreater(res["output_throughput"], 3700)
102

103
104
    def test_offline_throughput_default_fp8(self):
        res = run_bench_serving(
Lianmin Zheng's avatar
Lianmin Zheng committed
105
            model=DEFAULT_MODEL_NAME_FOR_TEST_FP8,
106
107
108
109
110
111
            num_prompts=500,
            request_rate=float("inf"),
            other_server_args=[],
        )

        if is_in_ci():
112
113
114
115
            write_github_step_summary(
                f"### test_offline_throughput_default_fp8\n"
                f'Output throughput: {res["output_throughput"]:.2f} token/s\n'
            )
116
            self.assertGreater(res["output_throughput"], 4300)
117

118
119
120
121
122
123
124
125
    def test_online_latency_default(self):
        res = run_bench_serving(
            model=DEFAULT_MODEL_NAME_FOR_TEST,
            num_prompts=100,
            request_rate=1,
            other_server_args=[],
        )

126
        if is_in_ci():
127
128
            write_github_step_summary(
                f"### test_online_latency_default\n"
129
                f'median_e2e_latency_ms: {res["median_e2e_latency_ms"]:.2f} ms\n'
130
            )
Lianmin Zheng's avatar
Lianmin Zheng committed
131
            self.assertLess(res["median_e2e_latency_ms"], 11000)
132
133
            self.assertLess(res["median_ttft_ms"], 86)
            self.assertLess(res["median_itl_ms"], 10)
134

135
136
137
    def test_online_latency_eagle(self):
        res = run_bench_serving(
            model=DEFAULT_EAGLE_TARGET_MODEL_FOR_TEST,
138
139
            num_prompts=300,
            request_rate=8,
140
            sharegpt_context_len=3072,
141
142
143
144
145
146
147
148
149
150
            disable_ignore_eos=True,
            dataset_name="sharegpt",
            other_server_args=[
                "--speculative-algorithm",
                "EAGLE",
                "--speculative-draft-model-path",
                DEFAULT_EAGLE_DRAFT_MODEL_FOR_TEST,
                "--speculative-num-steps",
                "5",
                "--speculative-eagle-topk",
151
                "4",
152
                "--speculative-num-draft-tokens",
153
                "16",
154
155
156
                "--mem-fraction-static",
                "0.7",
            ],
157
            need_warmup=True,
158
            seed=42,
159
160
161
162
163
        )

        if is_in_ci():
            write_github_step_summary(
                f"### test_online_latency_eagle\n"
164
165
                f'median_e2e_latency_ms: {res["median_e2e_latency_ms"]:.2f} ms\n'
                f'accept_length: {res["accept_length"]:.2f} \n'
166
            )
Lianmin Zheng's avatar
Lianmin Zheng committed
167
            self.assertLess(res["median_e2e_latency_ms"], 900)
Lianmin Zheng's avatar
Lianmin Zheng committed
168
            self.assertGreater(res["accept_length"], 3.0)
169

170
171
172
173
174
175
176
177
    def test_moe_offline_throughput_default(self):
        res = run_bench_serving(
            model=DEFAULT_MOE_MODEL_NAME_FOR_TEST,
            num_prompts=300,
            request_rate=float("inf"),
            other_server_args=["--tp", "2"],
        )

178
        if is_in_ci():
179
180
181
182
            write_github_step_summary(
                f"### test_moe_offline_throughput_default\n"
                f'Output throughput: {res["output_throughput"]:.2f} token/s\n'
            )
Lianmin Zheng's avatar
Lianmin Zheng committed
183
            self.assertGreater(res["output_throughput"], 2200)
184
185
186
187
188
189
190
191
192

    def test_moe_offline_throughput_without_radix_cache(self):
        res = run_bench_serving(
            model=DEFAULT_MOE_MODEL_NAME_FOR_TEST,
            num_prompts=300,
            request_rate=float("inf"),
            other_server_args=["--tp", "2", "--disable-radix-cache"],
        )

193
        if is_in_ci():
194
195
196
197
            write_github_step_summary(
                f"### test_moe_offline_throughput_without_radix_cache\n"
                f'Output throughput: {res["output_throughput"]:.2f} token/s\n'
            )
Lianmin Zheng's avatar
Lianmin Zheng committed
198
            self.assertGreater(res["output_throughput"], 2200)
199
200
201
202


if __name__ == "__main__":
    unittest.main()