serve.py 71.6 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3
4
5
6
r"""Benchmark online serving throughput.

On the server side, run one of the following commands
to launch the vLLM OpenAI API server:
7
    vllm serve <your_model> <engine arguments>
8
9
10

On the client side, run:
    vllm bench serve \
11
12
        --backend <backend or endpoint type. Default 'openai'> \
        --label <benchmark result label. Default using backend> \
13
        --model <your_model. Optional, defaults to first model from server> \
14
        --dataset-name <dataset_name. Default 'random'> \
15
16
        --input-len <general input length. Optional, maps to dataset-specific args> \
        --output-len <general output length. Optional, maps to dataset-specific args> \
17
18
19
        --request-rate <request_rate. Default inf> \
        --num-prompts <num_prompts. Default 1000>
"""
20

21
22
import argparse
import asyncio
23
import contextlib
24
import importlib.util
25
26
27
import json
import os
import random
28
import shutil
29
import ssl
30
import time
31
import uuid
32
import warnings
33
from collections.abc import AsyncGenerator, Iterable
34
35
from dataclasses import dataclass
from datetime import datetime
36
from enum import Enum
37
from pathlib import Path
38
from typing import Any, Literal
39

40
import aiohttp
41
42
43
import numpy as np
from tqdm.asyncio import tqdm

44
from vllm.benchmarks.datasets import SampleRequest, add_dataset_parser, get_samples
45
from vllm.benchmarks.lib.endpoint_request_func import (
46
47
    ASYNC_REQUEST_FUNCS,
    OPENAI_COMPATIBLE_BACKENDS,
48
    POOLING_BACKENDS,
49
50
51
    RequestFuncInput,
    RequestFuncOutput,
)
52
from vllm.benchmarks.lib.ready_checker import wait_for_endpoint
53
from vllm.benchmarks.lib.utils import convert_to_pytorch_benchmark_format, write_to_json
54
from vllm.tokenizers import TokenizerLike, get_tokenizer
55
from vllm.utils.gc_utils import freeze_gc_heap
56
from vllm.utils.network_utils import join_host_port
57
58
59

MILLISECONDS_TO_SECONDS_CONVERSION = 1000

60
61
62
TERM_PLOTLIB_AVAILABLE = (importlib.util.find_spec("termplotlib") is not None) and (
    shutil.which("gnuplot") is not None
)
63

64

65
async def get_first_model_from_server(
66
67
68
    base_url: str,
    headers: dict | None = None,
    ssl_context: ssl.SSLContext | bool | None = None,
69
) -> tuple[str, str]:
70
71
    """Fetch the first model from the server's /v1/models endpoint."""
    models_url = f"{base_url}/v1/models"
72
73
    connector = aiohttp.TCPConnector(ssl=ssl_context)
    async with aiohttp.ClientSession(connector=connector) as session:
74
75
76
77
78
        try:
            async with session.get(models_url, headers=headers) as response:
                response.raise_for_status()
                data = await response.json()
                if "data" in data and len(data["data"]) > 0:
79
                    return data["data"][0]["id"], data["data"][0]["root"]
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
                else:
                    raise ValueError(
                        f"No models found on the server at {base_url}. "
                        "Make sure the server is running and has models loaded."
                    )
        except (aiohttp.ClientError, json.JSONDecodeError) as e:
            raise RuntimeError(
                f"Failed to fetch models from server at {models_url}. "
                "Check that:\n"
                "1. The server is running\n"
                "2. The server URL is correct\n"
                f"Error: {e}"
            ) from e


95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
@dataclass
class SpecDecodeMetrics:
    """Speculative decoding metrics from the server's Prometheus endpoint."""

    num_drafts: int
    num_draft_tokens: int
    num_accepted_tokens: int
    accepted_per_pos: dict[int, int]


async def fetch_spec_decode_metrics(
    base_url: str, session: aiohttp.ClientSession
) -> SpecDecodeMetrics | None:
    """Fetch speculative decoding metrics from the server's Prometheus endpoint.

    Returns None if speculative decoding is not enabled or metrics are not available.
    """
    metrics_url = f"{base_url}/metrics"
    try:
        async with session.get(metrics_url) as response:
            if response.status != 200:
                return None
            text = await response.text()

            num_drafts = 0
            num_draft_tokens = 0
            num_accepted_tokens = 0
            accepted_per_pos: dict[int, int] = {}
            found_spec_decode = False

            for line in text.split("\n"):
                line = line.strip()
                if not line or line.startswith("#"):
                    continue

                if line.startswith("vllm:spec_decode"):
                    found_spec_decode = True
                    parts = line.split()
                    if parts:
                        with contextlib.suppress(ValueError):
                            if "num_drafts" in line:
                                num_drafts += int(float(parts[-1]))
                            elif "num_draft_tokens" in line:
                                num_draft_tokens += int(float(parts[-1]))
                            elif "num_accepted_tokens_per_pos" in line:
                                pos_label = 'position="'
                                if pos_label in line:
                                    start = line.index(pos_label) + len(pos_label)
                                    end = line.index('"', start)
                                    pos = int(line[start:end])
                                    val = int(float(parts[-1]))
                                    accepted_per_pos[pos] = (
                                        accepted_per_pos.get(pos, 0) + val
                                    )
                            elif "num_accepted_tokens" in line:
                                num_accepted_tokens += int(float(parts[-1]))

            if not found_spec_decode:
                return None

            return SpecDecodeMetrics(
                num_drafts=num_drafts,
                num_draft_tokens=num_draft_tokens,
                num_accepted_tokens=num_accepted_tokens,
                accepted_per_pos=accepted_per_pos,
            )
    except (aiohttp.ClientError, asyncio.TimeoutError):
        return None


165
166
class TaskType(Enum):
    GENERATION = "generation"
167
    POOLING = "pooling"
168
169


170
171
172
@dataclass
class BenchmarkMetrics:
    completed: int
173
    failed: int
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
    total_input: int
    total_output: int
    request_throughput: float
    request_goodput: float
    output_throughput: float
    total_token_throughput: float
    mean_ttft_ms: float
    median_ttft_ms: float
    std_ttft_ms: float
    percentiles_ttft_ms: list[tuple[float, float]]
    mean_tpot_ms: float
    median_tpot_ms: float
    std_tpot_ms: float
    percentiles_tpot_ms: list[tuple[float, float]]
    mean_itl_ms: float
    median_itl_ms: float
    std_itl_ms: float
    percentiles_itl_ms: list[tuple[float, float]]
    # E2EL stands for end-to-end latency per request.
    # It is the time taken on the client side from sending
    # a request to receiving a complete response.
    mean_e2el_ms: float
    median_e2el_ms: float
    std_e2el_ms: float
    percentiles_e2el_ms: list[tuple[float, float]]
199
200
201
    # Max output tokens per second and concurrent requests at that peak
    max_output_tokens_per_s: float
    max_concurrent_requests: int
202
    rtfx: float = 0.0  # Inverse Real-Time Factor for ASR benchmarks
203

204

205
206
207
@dataclass
class EmbedBenchmarkMetrics:
    completed: int
208
    failed: int
209
210
    total_input: int
    request_throughput: float
211
    total_token_throughput: float
212
213
214
215
    mean_e2el_ms: float
    std_e2el_ms: float
    median_e2el_ms: float
    percentiles_e2el_ms: float
216

217

218
def _get_current_request_rate(
219
220
221
    ramp_up_strategy: Literal["linear", "exponential"] | None,
    ramp_up_start_rps: int | None,
    ramp_up_end_rps: int | None,
222
223
224
225
    request_index: int,
    total_requests: int,
    request_rate: float,
) -> float:
226
227
228
229
230
    if (
        ramp_up_strategy
        and ramp_up_start_rps is not None
        and ramp_up_end_rps is not None
    ):
231
232
233
234
235
236
237
238
239
240
241
242
        progress = request_index / max(total_requests - 1, 1)
        if ramp_up_strategy == "linear":
            increase = (ramp_up_end_rps - ramp_up_start_rps) * progress
            return ramp_up_start_rps + increase
        elif ramp_up_strategy == "exponential":
            ratio = ramp_up_end_rps / ramp_up_start_rps
            return ramp_up_start_rps * (ratio**progress)
        else:
            raise ValueError(f"Unknown ramp-up strategy: {ramp_up_strategy}")
    return request_rate


243
async def get_request(
244
    input_requests: list[SampleRequest],
245
246
    request_rate: float,
    burstiness: float = 1.0,
247
248
249
    ramp_up_strategy: Literal["linear", "exponential"] | None = None,
    ramp_up_start_rps: int | None = None,
    ramp_up_end_rps: int | None = None,
250
) -> AsyncGenerator[tuple[SampleRequest, float], None]:
251
252
    """
    Asynchronously generates requests at a specified rate
253
    with OPTIONAL burstiness and OPTIONAL ramp-up strategy.
254
255
256

    Args:
        input_requests:
257
            A list of input requests, each represented as a SampleRequest.
258
259
260
261
262
263
264
265
266
267
        request_rate:
            The rate at which requests are generated (requests/s).
        burstiness (optional):
            The burstiness factor of the request generation.
            Only takes effect when request_rate is not inf.
            Default value is 1, which follows a Poisson process.
            Otherwise, the request intervals follow a gamma distribution.
            A lower burstiness value (0 < burstiness < 1) results
            in more bursty requests, while a higher burstiness value
            (burstiness > 1) results in a more uniform arrival of requests.
268
        ramp_up_strategy (optional):
269
270
271
272
273
274
            The ramp-up strategy. Can be "linear" or "exponential".
            If None, uses constant request rate (specified by request_rate).
        ramp_up_start_rps (optional):
            The starting request rate for ramp-up.
        ramp_up_end_rps (optional):
            The ending request rate for ramp-up.
275
276
    """
    assert burstiness > 0, (
277
278
        f"A positive burstiness factor is expected, but given {burstiness}."
    )
279
    # Convert to list to get length for ramp-up calculations
280
    if isinstance(input_requests, Iterable) and not isinstance(input_requests, list):
281
        input_requests = list(input_requests)
282

283
    total_requests = len(input_requests)
284
    assert total_requests > 0, "No requests provided."
285

286
287
288
289
    # Precompute delays among requests to minimize request send laggings
    request_rates = []
    delay_ts = []
    for request_index, request in enumerate(input_requests):
290
        current_request_rate = _get_current_request_rate(
291
292
293
294
295
296
297
            ramp_up_strategy,
            ramp_up_start_rps,
            ramp_up_end_rps,
            request_index,
            total_requests,
            request_rate,
        )
298
299
300
        assert current_request_rate > 0.0, (
            f"Obtained non-positive request rate {current_request_rate}."
        )
301
        request_rates.append(current_request_rate)
302
        if current_request_rate == float("inf"):
303
            delay_ts.append(0)
304
305
306
307
        elif burstiness == float("inf"):
            # when burstiness tends to infinity, the delay time becomes constant
            # and tends to the inverse of the request rate
            delay_ts.append(1.0 / current_request_rate)
308
309
310
311
312
313
        else:
            theta = 1.0 / (current_request_rate * burstiness)

            # Sample the request interval from the gamma distribution.
            # If burstiness is 1, it follows exponential distribution.
            delay_ts.append(np.random.gamma(shape=burstiness, scale=theta))
314

315
316
317
318
319
320
321
322
323
    # Calculate the cumulative delay time from the first sent out requests.
    for i in range(1, len(delay_ts)):
        delay_ts[i] += delay_ts[i - 1]
    if ramp_up_strategy is None and delay_ts[-1] != 0:
        # When ramp_up_strategy is not set, we assume the request rate is fixed
        # and all requests should be sent in target_total_delay_s, the following
        # logic would re-scale delay time to ensure the final delay_ts
        # align with target_total_delay_s.
        #
324
325
        # NOTE: If we simply accumulate the random delta values
        # from the gamma distribution, their sum would have 1-2% gap
326
        # from target_total_delay_s. The purpose of the following logic is to
co63oc's avatar
co63oc committed
327
        # close the gap for stabilizing the throughput data
328
        # from different random seeds.
329
330
331
332
333
334
        target_total_delay_s = total_requests / request_rate
        normalize_factor = target_total_delay_s / delay_ts[-1]
        delay_ts = [delay * normalize_factor for delay in delay_ts]

    start_ts = time.time()
    for request_index, request in enumerate(input_requests):
335
336
337
338
339
        if delay_ts[request_index] > 0:
            current_ts = time.time()
            sleep_interval_s = start_ts + delay_ts[request_index] - current_ts
            if sleep_interval_s > 0:
                await asyncio.sleep(sleep_interval_s)
340
        yield request, request_rates[request_index]
341
342


343
def calculate_metrics_for_embeddings(
344
345
346
    outputs: list[RequestFuncOutput],
    dur_s: float,
    selected_percentiles: list[float],
347
) -> EmbedBenchmarkMetrics:
348
349
350
351
352
353
354
355
356
357
358
359
    """Calculate the metrics for the embedding requests.

    Args:
        outputs: The outputs of the requests.
        dur_s: The duration of the benchmark.
        selected_percentiles: The percentiles to select.

    Returns:
        The calculated benchmark metrics.
    """
    total_input = 0
    completed = 0
360
    failed = 0
361
362
363
364
365
366
    e2els: list[float] = []
    for i in range(len(outputs)):
        if outputs[i].success:
            e2els.append(outputs[i].latency)
            completed += 1
            total_input += outputs[i].prompt_len
367
368
        else:
            failed += 1
369
370
371
372
373

    if completed == 0:
        warnings.warn(
            "All requests failed. This is likely due to a misconfiguration "
            "on the benchmark arguments.",
374
375
            stacklevel=2,
        )
376
377
    metrics = EmbedBenchmarkMetrics(
        completed=completed,
378
        failed=failed,
379
380
381
382
383
384
        total_input=total_input,
        request_throughput=completed / dur_s,
        total_token_throughput=total_input / dur_s,
        mean_e2el_ms=np.mean(e2els or 0) * 1000,
        std_e2el_ms=np.std(e2els or 0) * 1000,
        median_e2el_ms=np.median(e2els or 0) * 1000,
385
386
387
        percentiles_e2el_ms=[
            (p, np.percentile(e2els or 0, p) * 1000) for p in selected_percentiles
        ],
388
389
390
391
    )
    return metrics


392
def calculate_metrics(
393
    input_requests: list[SampleRequest],
394
395
    outputs: list[RequestFuncOutput],
    dur_s: float,
396
    tokenizer: TokenizerLike,
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
    selected_percentiles: list[float],
    goodput_config_dict: dict[str, float],
) -> tuple[BenchmarkMetrics, list[int]]:
    """Calculate the metrics for the benchmark.

    Args:
        input_requests: The input requests.
        outputs: The outputs of the requests.
        dur_s: The duration of the benchmark.
        tokenizer: The tokenizer to use.
        selected_percentiles: The percentiles to select.
        goodput_config_dict: The goodput configuration.

    Returns:
        A tuple of the benchmark metrics and the actual output lengths.
    """
    actual_output_lens: list[int] = []
    total_input = 0
    completed = 0
    good_completed = 0
    itls: list[float] = []
    tpots: list[float] = []
    all_tpots: list[float] = []
    ttfts: list[float] = []
    e2els: list[float] = []
422
    input_audio_duration = 0.0
423
424
425
426
    for i in range(len(outputs)):
        if outputs[i].success:
            output_len = outputs[i].output_tokens

427
            if not output_len:
428
429
430
431
432
433
434
435
436
437
438
439
440
                if tokenizer is None:
                    output_len = 1
                else:
                    # We use the tokenizer to count the number of output tokens
                    # for some serving backends instead of looking at
                    # len(outputs[i].itl) since multiple output tokens may be
                    # bundled together
                    # Note : this may inflate the output token count slightly
                    output_len = len(
                        tokenizer(
                            outputs[i].generated_text, add_special_tokens=False
                        ).input_ids
                    )
441
            actual_output_lens.append(output_len)
442
            total_input += input_requests[i].prompt_len
443
444
445
446
447
448
449
450
451
452
            tpot = 0
            if output_len > 1:
                latency_minus_ttft = outputs[i].latency - outputs[i].ttft
                tpot = latency_minus_ttft / (output_len - 1)
                tpots.append(tpot)
            # Note: if output_len <= 1, we regard tpot as 0 for goodput
            all_tpots.append(tpot)
            itls += outputs[i].itl
            ttfts.append(outputs[i].ttft)
            e2els.append(outputs[i].latency)
453
            input_audio_duration += outputs[i].input_audio_duration
454
455
456
457
458
459
460
461
462
463
            completed += 1
        else:
            actual_output_lens.append(0)

    if goodput_config_dict:
        valid_metrics = []
        slo_values = []

        if "ttft" in goodput_config_dict:
            valid_metrics.append(ttfts)
464
465
466
            slo_values.append(
                goodput_config_dict["ttft"] / MILLISECONDS_TO_SECONDS_CONVERSION
            )
467
468
        if "tpot" in goodput_config_dict:
            valid_metrics.append(all_tpots)
469
470
471
            slo_values.append(
                goodput_config_dict["tpot"] / MILLISECONDS_TO_SECONDS_CONVERSION
            )
472
473
        if "e2el" in goodput_config_dict:
            valid_metrics.append(e2els)
474
475
476
            slo_values.append(
                goodput_config_dict["e2el"] / MILLISECONDS_TO_SECONDS_CONVERSION
            )
477
478
479
480
481
482
483
484
485
486

        for req_metric in zip(*valid_metrics):
            is_good_req = all([s >= r for s, r in zip(slo_values, req_metric)])
            if is_good_req:
                good_completed += 1

    if completed == 0:
        warnings.warn(
            "All requests failed. This is likely due to a misconfiguration "
            "on the benchmark arguments.",
487
488
            stacklevel=2,
        )
489
490
491
492
493
494
495

    # Calculate max output tokens per second metric
    max_output_tokens_per_s = 0.0
    max_concurrent_requests = 0

    # Find the time range across all successful requests
    successful_outputs = [output for output in outputs if output.success]
496
    failed_outputs = [output for output in outputs if not output.success]
497
498
499
500
501
502

    if len(failed_outputs) > 0:
        print("Failed requests during benchmark run detected (capping to 10):")
        for i, err in enumerate(failed_outputs[:10]):
            print(f"Error {i}: {err.error}")

503
    if successful_outputs:
504
505
506
507
        min_start_time = min(output.start_time for output in successful_outputs)
        max_end_time = max(
            output.start_time + output.latency for output in successful_outputs
        )
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530

        # Create second buckets (ceiling to ensure we capture all time)
        duration_seconds = int(np.ceil(max_end_time - min_start_time)) + 1
        tokens_per_second = np.zeros(duration_seconds)
        concurrent_requests_per_second = np.zeros(duration_seconds)

        for i, output in enumerate(successful_outputs):
            # Calculate token generation timestamp using
            # start_time, ttft, and itl
            token_times = [output.start_time + output.ttft]
            current_time = token_times[0]
            for itl_value in output.itl:
                current_time += itl_value
                token_times.append(current_time)

            # Add tokens to second buckets
            for token_time in token_times:
                second_bucket = int(token_time - min_start_time)
                if 0 <= second_bucket < duration_seconds:
                    tokens_per_second[second_bucket] += 1

            # Track concurrent requests for each second this request was active
            request_start_second = int(output.start_time - min_start_time)
531
532
533
            request_end_second = int(
                (output.start_time + output.latency) - min_start_time
            )
534
535
536
537
538
539
540
541

            for second in range(request_start_second, request_end_second + 1):
                concurrent_requests_per_second[second] += 1

        # Find the maximum tokens per second and corresponding
        # concurrent requests
        if len(tokens_per_second) > 0:
            max_output_tokens_per_s = float(np.max(tokens_per_second))
542
            max_concurrent_requests = int(np.max(concurrent_requests_per_second))
543
544
545

        if TERM_PLOTLIB_AVAILABLE:
            import termplotlib as tpl
546

547
            fig = tpl.figure()
548
549
550
551
552
553
554
555
556
557
            fig.plot(
                np.arange(len(tokens_per_second)),
                tokens_per_second,
                title="Output tokens per second",
            )
            fig.plot(
                np.arange(len(concurrent_requests_per_second)),
                concurrent_requests_per_second,
                title="Concurrent requests per second",
            )
558
559
560
561
            fig.show()
        else:
            print("tip: install termplotlib and gnuplot to plot the metrics")

562
563
    metrics = BenchmarkMetrics(
        completed=completed,
564
        failed=len(failed_outputs),
565
566
567
568
569
570
        total_input=total_input,
        total_output=sum(actual_output_lens),
        request_throughput=completed / dur_s,
        request_goodput=good_completed / dur_s,
        output_throughput=sum(actual_output_lens) / dur_s,
        total_token_throughput=(total_input + sum(actual_output_lens)) / dur_s,
571
572
        mean_ttft_ms=np.mean(ttfts or 0)
        * 1000,  # ttfts is empty if streaming is not supported by the endpoint
573
574
        std_ttft_ms=np.std(ttfts or 0) * 1000,
        median_ttft_ms=np.median(ttfts or 0) * 1000,
575
576
577
        percentiles_ttft_ms=[
            (p, np.percentile(ttfts or 0, p) * 1000) for p in selected_percentiles
        ],
578
579
580
        mean_tpot_ms=np.mean(tpots or 0) * 1000,
        std_tpot_ms=np.std(tpots or 0) * 1000,
        median_tpot_ms=np.median(tpots or 0) * 1000,
581
582
583
        percentiles_tpot_ms=[
            (p, np.percentile(tpots or 0, p) * 1000) for p in selected_percentiles
        ],
584
585
586
        mean_itl_ms=np.mean(itls or 0) * 1000,
        std_itl_ms=np.std(itls or 0) * 1000,
        median_itl_ms=np.median(itls or 0) * 1000,
587
588
589
        percentiles_itl_ms=[
            (p, np.percentile(itls or 0, p) * 1000) for p in selected_percentiles
        ],
590
591
592
        mean_e2el_ms=np.mean(e2els or 0) * 1000,
        std_e2el_ms=np.std(e2els or 0) * 1000,
        median_e2el_ms=np.median(e2els or 0) * 1000,
593
594
595
        percentiles_e2el_ms=[
            (p, np.percentile(e2els or 0, p) * 1000) for p in selected_percentiles
        ],
596
597
        max_output_tokens_per_s=max_output_tokens_per_s,
        max_concurrent_requests=max_concurrent_requests,
598
        rtfx=input_audio_duration / dur_s,
599
600
601
602
603
604
    )

    return metrics, actual_output_lens


async def benchmark(
605
    task_type: TaskType,
606
607
608
609
610
    endpoint_type: str,
    api_url: str,
    base_url: str,
    model_id: str,
    model_name: str,
611
    tokenizer: TokenizerLike,
612
    input_requests: list[SampleRequest],
613
    logprobs: int | None,
614
615
616
    request_rate: float,
    burstiness: float,
    disable_tqdm: bool,
617
    num_warmups: int,
618
619
    profile: bool,
    selected_percentile_metrics: list[str],
620
    selected_percentiles: list[float],
621
622
    ignore_eos: bool,
    goodput_config_dict: dict[str, float],
623
624
625
626
    max_concurrency: int | None,
    lora_modules: Iterable[str] | None,
    extra_headers: dict | None,
    extra_body: dict | None,
627
    lora_assignment: Literal["random", "round-robin"] = "random",
628
629
630
    ramp_up_strategy: Literal["linear", "exponential"] | None = None,
    ramp_up_start_rps: int | None = None,
    ramp_up_end_rps: int | None = None,
631
    ready_check_timeout_sec: int = 600,
632
    ssl_context: ssl.SSLContext | bool | None = None,
633
):
634
635
636
637
    try:
        request_func = ASYNC_REQUEST_FUNCS[endpoint_type]
    except KeyError:
        raise ValueError(f"Unknown backend: {endpoint_type}") from None
638

639
    # Reuses connections across requests to reduce TLS handshake overhead.
640
641
    # Use ssl_context if provided, otherwise default to True for https URLs
    ssl_setting = ssl_context if ssl_context is not None else ("https://" in api_url)
642
643
644
645
646
647
648
649
    connector = aiohttp.TCPConnector(
        limit=max_concurrency or 0,
        limit_per_host=max_concurrency or 0,
        ttl_dns_cache=300,
        use_dns_cache=True,
        keepalive_timeout=60,
        enable_cleanup_closed=True,
        force_close=False,
650
        ssl=ssl_setting,
651
652
653
654
655
656
657
658
    )

    session = aiohttp.ClientSession(
        connector=connector,
        trust_env=True,
        timeout=aiohttp.ClientTimeout(total=6 * 60 * 60),
    )

659
660
    print("Starting initial single prompt test run...")
    test_prompt, test_prompt_len, test_output_len, test_mm_content = (
661
662
663
664
665
666
        input_requests[0].prompt,
        input_requests[0].prompt_len,
        input_requests[0].expected_output_len,
        input_requests[0].multi_modal_data,
    )

667
668
669
670
671
672
673
674
    assert (
        test_mm_content is None
        or isinstance(test_mm_content, dict)
        or (
            isinstance(test_mm_content, list)
            and all(isinstance(item, dict) for item in test_mm_content)
        )
    ), "multi_modal_data must be a dict or list[dict]"
675
676
677
678
679
680
681
682
683
684
    test_input = RequestFuncInput(
        model=model_id,
        model_name=model_name,
        prompt=test_prompt,
        api_url=api_url,
        prompt_len=test_prompt_len,
        output_len=test_output_len,
        logprobs=logprobs,
        multi_modal_content=test_mm_content,
        ignore_eos=ignore_eos,
685
        extra_headers=extra_headers,
686
        extra_body=extra_body,
687
688
    )

689
690
691
692
693
694
695
696
697
698
699
    if ready_check_timeout_sec > 0:
        test_output = await wait_for_endpoint(
            request_func,
            test_input,
            session,
            timeout_seconds=ready_check_timeout_sec,
        )
        if not test_output.success:
            raise ValueError(
                "Initial test run failed - Please make sure benchmark "
                "arguments are correctly specified. "
700
701
                f"Error: {test_output.error}"
            )
702
        else:
703
            print("Initial test run completed.")
704
    else:
705
        print("Skipping endpoint ready check.")
706

707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
    if num_warmups > 0:
        print(f"Warming up with {num_warmups} requests...")
        warmup_pbar = None if disable_tqdm else tqdm(total=num_warmups)
        warmup_semaphore = (
            asyncio.Semaphore(max_concurrency)
            if max_concurrency
            else contextlib.nullcontext()
        )
        warmup_tasks = []

        async def warmup_limited_request_func():
            async with warmup_semaphore:
                return await request_func(
                    request_func_input=test_input, session=session, pbar=warmup_pbar
                )

        for _ in range(num_warmups):
            request_task = asyncio.create_task(warmup_limited_request_func())
            warmup_tasks.append(request_task)
        _ = await asyncio.gather(*warmup_tasks)

        if warmup_pbar is not None:
            warmup_pbar.close()
        print("Warmup run completed.")

    print("Starting main benchmark run...")

734
    if lora_modules:
735
736
737
738
739
740
741
742
743
744
745
746
747
748
        lora_modules_list = list(lora_modules)
        if lora_assignment == "round-robin":
            # Deterministic round-robin assignment across requests.
            lora_modules = iter(
                [
                    lora_modules_list[i % len(lora_modules_list)]
                    for i in range(len(input_requests))
                ]
            )
        else:
            # For each input request, choose a LoRA module at random.
            lora_modules = iter(
                [random.choice(lora_modules_list) for _ in range(len(input_requests))]
            )
749
750
751

    if profile:
        print("Starting profiler...")
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
        profile_input = RequestFuncInput(
            model=model_id,
            model_name=model_name,
            prompt=test_prompt,
            api_url=base_url + "/start_profile",
            prompt_len=test_prompt_len,
            output_len=test_output_len,
            logprobs=logprobs,
            multi_modal_content=test_mm_content,
            ignore_eos=ignore_eos,
            extra_headers=extra_headers,
            extra_body=extra_body,
        )
        profile_output = await request_func(
            request_func_input=profile_input, session=session
        )
768
769
770
        if profile_output.success:
            print("Profiler started")

771
    distribution = "Poisson process" if burstiness == 1.0 else "Gamma distribution"
772
773
774

    if ramp_up_strategy is not None:
        print(f"Traffic ramp-up strategy: {ramp_up_strategy}.")
775
776
777
778
        print(
            f"Will increase RPS from {ramp_up_start_rps} to "
            f"{ramp_up_end_rps} RPS over the duration of the benchmark."
        )
779
    else:
780
        print(f"Traffic request rate: {request_rate}")
781
782
783
784

    print(f"Burstiness factor: {burstiness} ({distribution})")
    print(f"Maximum request concurrency: {max_concurrency}")

785
786
    spec_decode_metrics_before = await fetch_spec_decode_metrics(base_url, session)

787
788
    pbar = None if disable_tqdm else tqdm(total=len(input_requests))

789
790
791
792
793
    semaphore = (
        asyncio.Semaphore(max_concurrency)
        if max_concurrency
        else contextlib.nullcontext()
    )
794

795
    async def limited_request_func(request_func_input, session, pbar):
796
        async with semaphore:
797
798
799
            return await request_func(
                request_func_input=request_func_input, session=session, pbar=pbar
            )
800
801
802

    benchmark_start_time = time.perf_counter()
    tasks: list[asyncio.Task] = []
803
804
805
806
807

    rps_change_events = []
    last_int_rps = -1
    if ramp_up_strategy is not None and ramp_up_start_rps is not None:
        last_int_rps = ramp_up_start_rps
808
809
810
811
812
813
        rps_change_events.append(
            {
                "rps": last_int_rps,
                "timestamp": datetime.now().isoformat(),
            }
        )
814
815

    async for request, current_request_rate in get_request(
816
817
818
819
820
821
822
        input_requests,
        request_rate,
        burstiness,
        ramp_up_strategy,
        ramp_up_start_rps,
        ramp_up_end_rps,
    ):
823
824
825
826
827
        if ramp_up_strategy is not None:
            current_int_rps = int(current_request_rate)
            if current_int_rps > last_int_rps:
                timestamp = datetime.now().isoformat()
                for rps_val in range(last_int_rps + 1, current_int_rps + 1):
828
                    rps_change_events.append({"rps": rps_val, "timestamp": timestamp})
829
                last_int_rps = current_int_rps
830
        prompt, prompt_len, output_len, mm_content, request_id = (
831
832
833
834
            request.prompt,
            request.prompt_len,
            request.expected_output_len,
            request.multi_modal_data,
835
            request.request_id,
836
        )
837
838
839
840
841
        req_model_id, req_model_name = model_id, model_name
        if lora_modules:
            req_lora_module = next(lora_modules)
            req_model_id, req_model_name = req_lora_module, req_lora_module

842
843
844
845
846
847
848
849
850
851
852
853
854
855
        request_func_input = RequestFuncInput(
            model=req_model_id,
            model_name=req_model_name,
            prompt=prompt,
            api_url=api_url,
            prompt_len=prompt_len,
            output_len=output_len,
            logprobs=logprobs,
            multi_modal_content=mm_content,
            ignore_eos=ignore_eos,
            extra_headers=extra_headers,
            extra_body=extra_body,
            request_id=request_id,
        )
856
857
        tasks.append(
            asyncio.create_task(
858
859
860
861
862
                limited_request_func(
                    request_func_input=request_func_input, session=session, pbar=pbar
                )
            )
        )
863
864
865
866
867
868
869
    outputs: list[RequestFuncOutput] = await asyncio.gather(*tasks)

    if pbar is not None:
        pbar.close()

    benchmark_duration = time.perf_counter() - benchmark_start_time

870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
    spec_decode_metrics_after = await fetch_spec_decode_metrics(base_url, session)
    spec_decode_stats: dict[str, Any] | None = None
    if spec_decode_metrics_before is not None and spec_decode_metrics_after is not None:
        delta_drafts = (
            spec_decode_metrics_after.num_drafts - spec_decode_metrics_before.num_drafts
        )
        delta_draft_tokens = (
            spec_decode_metrics_after.num_draft_tokens
            - spec_decode_metrics_before.num_draft_tokens
        )
        delta_accepted = (
            spec_decode_metrics_after.num_accepted_tokens
            - spec_decode_metrics_before.num_accepted_tokens
        )
        per_pos_rates: list[float] = []
        if delta_drafts > 0:
            positions = sorted(
                set(spec_decode_metrics_before.accepted_per_pos.keys())
                | set(spec_decode_metrics_after.accepted_per_pos.keys())
            )
            for pos in positions:
                before_val = spec_decode_metrics_before.accepted_per_pos.get(pos, 0)
                after_val = spec_decode_metrics_after.accepted_per_pos.get(
                    pos, before_val
                )
                delta_pos = after_val - before_val
                per_pos_rates.append(delta_pos / delta_drafts)

        if delta_draft_tokens > 0:
            acceptance_rate = (delta_accepted / delta_draft_tokens) * 100
            acceptance_length = (
                1 + delta_accepted / delta_drafts if delta_drafts > 0 else 0.0
            )
            spec_decode_stats = {
                "num_drafts": delta_drafts,
                "draft_tokens": delta_draft_tokens,
                "accepted_tokens": delta_accepted,
                "acceptance_rate": acceptance_rate,
                "acceptance_length": acceptance_length,
                "per_position_acceptance_rates": per_pos_rates,
            }

912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
    if task_type == TaskType.GENERATION:
        metrics, actual_output_lens = calculate_metrics(
            input_requests=input_requests,
            outputs=outputs,
            dur_s=benchmark_duration,
            tokenizer=tokenizer,
            selected_percentiles=selected_percentiles,
            goodput_config_dict=goodput_config_dict,
        )
    else:
        metrics = calculate_metrics_for_embeddings(
            outputs=outputs,
            dur_s=benchmark_duration,
            selected_percentiles=selected_percentiles,
        )
        actual_output_lens = 0
928

929
    print("{s:{c}^{n}}".format(s=" Serving Benchmark Result ", n=50, c="="))
930
    print("{:<40} {:<10}".format("Successful requests:", metrics.completed))
931
    print("{:<40} {:<10}".format("Failed requests:", metrics.failed))
932
    if max_concurrency is not None:
933
934
935
936
        print("{:<40} {:<10}".format("Maximum request concurrency:", max_concurrency))
    if request_rate != float("inf"):
        print("{:<40} {:<10.2f}".format("Request rate configured (RPS):", request_rate))
    print("{:<40} {:<10.2f}".format("Benchmark duration (s):", benchmark_duration))
937
    print("{:<40} {:<10}".format("Total input tokens:", metrics.total_input))
938
    if isinstance(metrics, BenchmarkMetrics) and tokenizer:
939
940
941
942
943
944
        print("{:<40} {:<10}".format("Total generated tokens:", metrics.total_output))
    print(
        "{:<40} {:<10.2f}".format(
            "Request throughput (req/s):", metrics.request_throughput
        )
    )
945
    if goodput_config_dict:
946
947
948
949
950
        print(
            "{:<40} {:<10.2f}".format(
                "Request goodput (req/s):", metrics.request_goodput
            )
        )
951
    if isinstance(metrics, BenchmarkMetrics):
952
953
954
955
956
        if tokenizer:
            print(
                "{:<40} {:<10.2f}".format(
                    "Output token throughput (tok/s):", metrics.output_throughput
                )
957
            )
958
959
960
961
962
            print(
                "{:<40} {:<10.2f}".format(
                    "Peak output token throughput (tok/s):",
                    metrics.max_output_tokens_per_s,
                )
963
964
965
966
967
968
            )
        print(
            "{:<40} {:<10.2f}".format(
                "Peak concurrent requests:", metrics.max_concurrent_requests
            )
        )
969
970
971
972
973
974
        if metrics.rtfx > 0.0:
            print(
                "{:<40} {:<10.2f}".format(
                    "RTFx (Inverse Real-Time Factor):", metrics.rtfx
                )
            )
975
976
977
978
979
    if tokenizer:
        print(
            "{:<40} {:<10.2f}".format(
                "Total token throughput (tok/s):", metrics.total_token_throughput
            )
980
        )
981

982
983
984
985
    if isinstance(metrics, BenchmarkMetrics):
        result = {
            "duration": benchmark_duration,
            "completed": metrics.completed,
986
            "failed": metrics.failed,
987
988
989
            "total_input_tokens": metrics.total_input,
            "total_output_tokens": metrics.total_output,
            "request_throughput": metrics.request_throughput,
990
            "request_goodput": metrics.request_goodput if goodput_config_dict else None,
991
992
993
994
995
996
            "output_throughput": metrics.output_throughput,
            "total_token_throughput": metrics.total_token_throughput,
            "input_lens": [output.prompt_len for output in outputs],
            "output_lens": actual_output_lens,
            "ttfts": [output.ttft for output in outputs],
            "itls": [output.itl for output in outputs],
997
            "start_times": [output.start_time for output in outputs],
998
999
            "generated_texts": [output.generated_text for output in outputs],
            "errors": [output.error for output in outputs],
1000
1001
            "max_output_tokens_per_s": metrics.max_output_tokens_per_s,
            "max_concurrent_requests": metrics.max_concurrent_requests,
1002
            "rtfx": metrics.rtfx,
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
        }
    else:
        result = {
            "duration": benchmark_duration,
            "completed": metrics.completed,
            "total_input_tokens": metrics.total_input,
            "request_throughput": metrics.request_throughput,
            "total_token_throughput": metrics.total_token_throughput,
            "input_lens": [output.prompt_len for output in outputs],
            "errors": [output.error for output in outputs],
        }
1014

1015
1016
1017
    if rps_change_events:
        result["rps_change_events"] = rps_change_events

1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
    if spec_decode_stats is not None:
        result["spec_decode_acceptance_rate"] = spec_decode_stats["acceptance_rate"]
        result["spec_decode_acceptance_length"] = spec_decode_stats["acceptance_length"]
        result["spec_decode_num_drafts"] = int(spec_decode_stats["num_drafts"])
        result["spec_decode_draft_tokens"] = int(spec_decode_stats["draft_tokens"])
        result["spec_decode_accepted_tokens"] = int(
            spec_decode_stats["accepted_tokens"]
        )
        result["spec_decode_per_position_acceptance_rates"] = spec_decode_stats.get(
            "per_position_acceptance_rates", []
        )

1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
    def process_one_metric(
        # E.g., "ttft"
        metric_attribute_name: str,
        # E.g., "TTFT"
        metric_name: str,
        # E.g., "Time to First Token"
        metric_header: str,
    ):
        # This function prints and adds statistics of the specified
        # metric.
        if metric_attribute_name not in selected_percentile_metrics:
            return
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
        print("{s:{c}^{n}}".format(s=metric_header, n=50, c="-"))
        print(
            "{:<40} {:<10.2f}".format(
                f"Mean {metric_name} (ms):",
                getattr(metrics, f"mean_{metric_attribute_name}_ms"),
            )
        )
        print(
            "{:<40} {:<10.2f}".format(
                f"Median {metric_name} (ms):",
                getattr(metrics, f"median_{metric_attribute_name}_ms"),
            )
        )
1055
        result[f"mean_{metric_attribute_name}_ms"] = getattr(
1056
1057
            metrics, f"mean_{metric_attribute_name}_ms"
        )
1058
        result[f"median_{metric_attribute_name}_ms"] = getattr(
1059
1060
            metrics, f"median_{metric_attribute_name}_ms"
        )
1061
        result[f"std_{metric_attribute_name}_ms"] = getattr(
1062
1063
1064
            metrics, f"std_{metric_attribute_name}_ms"
        )
        for p, value in getattr(metrics, f"percentiles_{metric_attribute_name}_ms"):
1065
            p_word = str(int(p)) if int(p) == p else str(p)
1066
            print("{:<40} {:<10.2f}".format(f"P{p_word} {metric_name} (ms):", value))
1067
1068
            result[f"p{p_word}_{metric_attribute_name}_ms"] = value

1069
    if task_type == TaskType.GENERATION and tokenizer:
1070
        process_one_metric("ttft", "TTFT", "Time to First Token")
1071
        process_one_metric("tpot", "TPOT", "Time per Output Token (excl. 1st token)")
1072
        process_one_metric("itl", "ITL", "Inter-token Latency")
1073
1074
    process_one_metric("e2el", "E2EL", "End-to-end Latency")

1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
    if spec_decode_stats is not None:
        print("{s:{c}^{n}}".format(s="Speculative Decoding", n=50, c="-"))
        print(
            "{:<40} {:<10.2f}".format(
                "Acceptance rate (%):", spec_decode_stats["acceptance_rate"]
            )
        )
        print(
            "{:<40} {:<10.2f}".format(
                "Acceptance length:", spec_decode_stats["acceptance_length"]
            )
        )
        print("{:<40} {:<10}".format("Drafts:", int(spec_decode_stats["num_drafts"])))
        print(
            "{:<40} {:<10}".format(
                "Draft tokens:", int(spec_decode_stats["draft_tokens"])
            )
        )
        print(
            "{:<40} {:<10}".format(
                "Accepted tokens:", int(spec_decode_stats["accepted_tokens"])
            )
        )
        per_pos = spec_decode_stats.get("per_position_acceptance_rates", [])
        if per_pos:
            print("Per-position acceptance (%):")
            for i, rate in enumerate(per_pos):
                print("{:<40} {:<10.2f}".format(f"  Position {i}:", rate * 100))

1104
1105
    print("=" * 50)

1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
    if profile:
        print("Stopping profiler...")
        profile_input = RequestFuncInput(
            model=model_id,
            prompt=test_prompt,
            api_url=base_url + "/stop_profile",
            prompt_len=test_prompt_len,
            output_len=test_output_len,
            logprobs=logprobs,
        )
1116
1117
1118
        profile_output = await request_func(
            request_func_input=profile_input, session=session
        )
1119
1120
        if profile_output.success:
            print("Profiler stopped")
1121
1122

    await session.close()
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
    return result


def check_goodput_args(args):
    # Check and parse goodput arguments
    goodput_config_dict = {}
    VALID_NAMES = ["ttft", "tpot", "e2el"]
    if args.goodput:
        goodput_config_dict = parse_goodput(args.goodput)
        for slo_name, slo_val in goodput_config_dict.items():
            if slo_name not in VALID_NAMES:
                raise ValueError(
                    f"Invalid metric name found, {slo_name}: {slo_val}. "
                    "The service level objective name should be one of "
1137
1138
                    f"{str(VALID_NAMES)}. "
                )
1139
1140
1141
1142
            if slo_val < 0:
                raise ValueError(
                    f"Invalid value found, {slo_name}: {slo_val}. "
                    "The service level objective value should be "
1143
1144
                    "non-negative."
                )
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
    return goodput_config_dict


def parse_goodput(slo_pairs):
    goodput_config_dict = {}
    try:
        for slo_pair in slo_pairs:
            slo_name, slo_val = slo_pair.split(":")
            goodput_config_dict[slo_name] = float(slo_val)
    except ValueError as err:
        raise argparse.ArgumentTypeError(
            "Invalid format found for service level objectives. "
1157
            'Specify service level objectives for goodput as "KEY:VALUE" '
1158
            "pairs, where the key is a metric name, and the value is a "
1159
1160
            "number in milliseconds."
        ) from err
1161
1162
1163
    return goodput_config_dict


1164
1165
1166
def save_to_pytorch_benchmark_format(
    args: argparse.Namespace, results: dict[str, Any], file_name: str
) -> None:
1167
    metrics = [
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
        "median_ttft_ms",
        "mean_ttft_ms",
        "std_ttft_ms",
        "p99_ttft_ms",
        "mean_tpot_ms",
        "median_tpot_ms",
        "std_tpot_ms",
        "p99_tpot_ms",
        "median_itl_ms",
        "mean_itl_ms",
        "std_itl_ms",
        "p99_itl_ms",
1180
1181
1182
1183
1184
1185
    ]
    # These raw data might be useful, but they are rather big. They can be added
    # later if needed
    ignored_metrics = ["ttfts", "itls", "generated_texts", "errors"]
    pt_records = convert_to_pytorch_benchmark_format(
        args=args,
1186
        metrics={k: [results[k]] for k in metrics if k in results},
1187
1188
        extra_info={
            k: results[k]
1189
1190
1191
1192
            for k in results
            if k not in metrics and k not in ignored_metrics
        },
    )
1193
1194
1195
1196
1197
1198
    if pt_records:
        # Don't use json suffix here as we don't want CI to pick it up
        pt_file = f"{os.path.splitext(file_name)[0]}.pytorch.json"
        write_to_json(pt_file, pt_records)


1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
def compute_result_filename(
    args: argparse.Namespace,
    model_id: str,
    label: str,
    current_dt: str,
) -> str | None:
    """Compute the result filename based on benchmark configuration.

    Args:
        args: Command line arguments containing result configuration
        model_id: The model identifier
        label: The benchmark label
        current_dt: Current datetime string

    Returns:
        The computed filename path or None if no result saving is requested
    """
    if not (args.plot_timeline or args.save_result or args.append_result):
        return None

    base_model_id = model_id.split("/")[-1]
    max_concurrency_str = (
        f"-concurrency{args.max_concurrency}"
        if args.max_concurrency is not None
        else ""
    )
    label = label or args.backend

    if args.ramp_up_strategy is not None:
        file_name = f"{label}-ramp-up-{args.ramp_up_strategy}-{args.ramp_up_start_rps}qps-{args.ramp_up_end_rps}qps{max_concurrency_str}-{base_model_id}-{current_dt}.json"  # noqa
    else:
        file_name = f"{label}-{args.request_rate}qps{max_concurrency_str}-{base_model_id}-{current_dt}.json"  # noqa

    if args.result_filename:
        file_name = args.result_filename

    if args.result_dir:
        os.makedirs(args.result_dir, exist_ok=True)
        file_name = os.path.join(args.result_dir, file_name)

    return file_name


1242
def add_cli_args(parser: argparse.ArgumentParser):
1243
    add_dataset_parser(parser)
1244
1245
1246
1247
1248
    parser.add_argument(
        "--label",
        type=str,
        default=None,
        help="The label (prefix) of the benchmark results. If not specified, "
1249
        "the value of '--backend' will be used as the label.",
1250
    )
1251
1252
1253
    parser.add_argument(
        "--backend",
        type=str,
1254
1255
        default="openai",
        choices=list(ASYNC_REQUEST_FUNCS.keys()),
1256
        help="The type of backend or endpoint to use for the benchmark.",
1257
    )
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
    parser.add_argument(
        "--base-url",
        type=str,
        default=None,
        help="Server or API base url if not using http host and port.",
    )
    # Use 127.0.0.1 here instead of localhost to force the use of ipv4
    parser.add_argument("--host", type=str, default="127.0.0.1")
    parser.add_argument("--port", type=int, default=8000)
    parser.add_argument(
        "--endpoint",
        type=str,
        default="/v1/completions",
        help="API endpoint.",
    )
1273
1274
1275
1276
1277
    parser.add_argument(
        "--header",
        metavar="KEY=VALUE",
        nargs="*",
        help="Key-value pairs (e.g, --header x-additional-info=0.3.3) "
1278
1279
        "for headers to be passed with each request. These headers override "
        "per backend constants and values set via environment variable, and "
1280
        "will be overridden by other arguments (such as request ids).",
1281
    )
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
    parser.add_argument(
        "--max-concurrency",
        type=int,
        default=None,
        help="Maximum number of concurrent requests. This can be used "
        "to help simulate an environment where a higher level component "
        "is enforcing a maximum number of concurrent requests. While the "
        "--request-rate argument controls the rate at which requests are "
        "initiated, this argument will control how many are actually allowed "
        "to execute at a time. This means that when used in combination, the "
        "actual request rate may be lower than specified with --request-rate, "
1293
1294
        "if the server is not processing requests fast enough to keep up.",
    )
1295
1296
1297
1298

    parser.add_argument(
        "--model",
        type=str,
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
        required=False,
        default=None,
        help="Name of the model. If not specified, will fetch the first model "
        "from the server's /v1/models endpoint.",
    )
    parser.add_argument(
        "--input-len",
        type=int,
        default=None,
        help="General input length for datasets. Maps to dataset-specific "
        "input length arguments (e.g., --random-input-len, --sonnet-input-len). "
        "If not specified, uses dataset defaults.",
    )
    parser.add_argument(
        "--output-len",
        type=int,
        default=None,
        help="General output length for datasets. Maps to dataset-specific "
        "output length arguments (e.g., --random-output-len, --sonnet-output-len). "
        "If not specified, uses dataset defaults.",
1319
1320
1321
1322
    )
    parser.add_argument(
        "--tokenizer",
        type=str,
1323
        help="Name or path of the tokenizer, if not using the default tokenizer.",  # noqa: E501
1324
    )
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
    parser.add_argument(
        "--tokenizer-mode",
        type=str,
        default="auto",
        help="""Tokenizer mode:\n
        - "auto" will use the tokenizer from `mistral_common` for Mistral models
        if available, otherwise it will use the "hf" tokenizer.\n
        - "hf" will use the fast tokenizer if available.\n
        - "slow" will always use the slow tokenizer.\n
        - "mistral" will always use the tokenizer from `mistral_common`.\n
        - "deepseek_v32" will always use the tokenizer from `deepseek_v32`.\n
1336
        - "qwen_vl" will always use the tokenizer from `qwen_vl`.\n
1337
1338
        - Other custom values can be supported via plugins.""",
    )
1339
1340
1341
1342
1343
    parser.add_argument("--use-beam-search", action="store_true")
    parser.add_argument(
        "--logprobs",
        type=int,
        default=None,
1344
1345
1346
1347
1348
1349
1350
        help=(
            "Number of logprobs-per-token to compute & return as part of "
            "the request. If unspecified, then either (1) if beam search "
            "is disabled, no logprobs are computed & a single dummy "
            "logprob is returned for each token; or (2) if beam search "
            "is enabled 1 logprob per token is computed"
        ),
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
    )
    parser.add_argument(
        "--request-rate",
        type=float,
        default=float("inf"),
        help="Number of requests per second. If this is inf, "
        "then all the requests are sent at time 0. "
        "Otherwise, we use Poisson process or gamma distribution "
        "to synthesize the request arrival times.",
    )
    parser.add_argument(
        "--burstiness",
        type=float,
        default=1.0,
        help="Burstiness factor of the request generation. "
        "Only take effect when request_rate is not inf. "
        "Default value is 1, which follows Poisson process. "
        "Otherwise, the request intervals follow a gamma distribution. "
        "A lower burstiness value (0 < burstiness < 1) results in more "
        "bursty requests. A higher burstiness value (burstiness > 1) "
        "results in a more uniform arrival of requests.",
    )
    parser.add_argument(
        "--disable-tqdm",
        action="store_true",
        help="Specify to disable tqdm progress bar.",
    )
1378
1379
1380
1381
1382
1383
    parser.add_argument(
        "--num-warmups",
        type=int,
        default=0,
        help="Number of warmup requests.",
    )
1384
1385
1386
    parser.add_argument(
        "--profile",
        action="store_true",
1387
        help="Use vLLM Profiling. --profiler-config must be provided on the server.",
1388
1389
1390
1391
1392
1393
    )
    parser.add_argument(
        "--save-result",
        action="store_true",
        help="Specify to save benchmark results to a json file",
    )
1394
1395
1396
1397
    parser.add_argument(
        "--save-detailed",
        action="store_true",
        help="When saving the results, whether to include per request "
1398
        "information such as response, error, ttfts, tpots, etc.",
1399
1400
1401
1402
1403
1404
    )
    parser.add_argument(
        "--append-result",
        action="store_true",
        help="Append the benchmark result to the existing json file.",
    )
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
    parser.add_argument(
        "--metadata",
        metavar="KEY=VALUE",
        nargs="*",
        help="Key-value pairs (e.g, --metadata version=0.3.3 tp=1) "
        "for metadata of this run to be saved in the result JSON file "
        "for record keeping purposes.",
    )
    parser.add_argument(
        "--result-dir",
        type=str,
        default=None,
        help="Specify directory to save benchmark json results."
        "If not specified, results are saved in the current directory.",
    )
    parser.add_argument(
        "--result-filename",
        type=str,
        default=None,
        help="Specify the filename to save benchmark json results."
        "If not specified, results will be saved in "
        "{label}-{args.request_rate}qps-{base_model_id}-{current_dt}.json"  # noqa
        " format.",
    )
    parser.add_argument(
        "--ignore-eos",
        action="store_true",
        help="Set ignore_eos flag when sending the benchmark request."
1433
1434
        "Warning: ignore_eos is not supported in deepspeed_mii and tgi.",
    )
1435
1436
1437
    parser.add_argument(
        "--percentile-metrics",
        type=str,
1438
        default=None,
1439
        help="Comma-separated list of selected metrics to report percentiles. "
1440
        "This argument specifies the metrics to report percentiles. "
1441
1442
1443
        'Allowed metric names are "ttft", "tpot", "itl", "e2el". '
        'If not specified, defaults to "ttft,tpot,itl" for generative models '
        'and "e2el" for pooling models.',
1444
    )
1445
1446
1447
1448
    parser.add_argument(
        "--metric-percentiles",
        type=str,
        default="99",
1449
        help="Comma-separated list of percentiles for selected metrics. "
1450
1451
1452
        'To report 25-th, 50-th, and 75-th percentiles, use "25,50,75". '
        'Default value is "99".'
        'Use "--percentile-metrics" to select metrics.',
1453
1454
1455
1456
1457
    )
    parser.add_argument(
        "--goodput",
        nargs="+",
        required=False,
1458
        help='Specify service level objectives for goodput as "KEY:VALUE" '
1459
        "pairs, where the key is a metric name, and the value is in "
1460
        'milliseconds. Multiple "KEY:VALUE" pairs can be provided, '
1461
        "separated by spaces. Allowed request level metric names are "
1462
        '"ttft", "tpot", "e2el". For more context on the definition of '
1463
        "goodput, refer to DistServe paper: https://arxiv.org/pdf/2401.09670 "
1464
1465
        "and the blog: https://hao-ai-lab.github.io/blogs/distserve",
    )
1466
1467
1468
1469
    parser.add_argument(
        "--request-id-prefix",
        type=str,
        required=False,
1470
        default=f"bench-{uuid.uuid4().hex[:8]}-",
1471
1472
1473
        help="Specify the prefix of request id.",
    )

1474
1475
1476
1477
1478
    sampling_group = parser.add_argument_group("sampling parameters")
    sampling_group.add_argument(
        "--top-p",
        type=float,
        default=None,
1479
        help="Top-p sampling parameter. Only has effect on openai-compatible backends.",
1480
1481
1482
1483
1484
    )
    sampling_group.add_argument(
        "--top-k",
        type=int,
        default=None,
1485
        help="Top-k sampling parameter. Only has effect on openai-compatible backends.",
1486
1487
1488
1489
1490
    )
    sampling_group.add_argument(
        "--min-p",
        type=float,
        default=None,
1491
        help="Min-p sampling parameter. Only has effect on openai-compatible backends.",
1492
1493
1494
1495
1496
1497
    )
    sampling_group.add_argument(
        "--temperature",
        type=float,
        default=None,
        help="Temperature sampling parameter. Only has effect on "
1498
        "openai-compatible backends.",
1499
    )
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
    sampling_group.add_argument(
        "--frequency-penalty",
        type=float,
        default=None,
        help="Frequency penalty sampling parameter. Only has effect on "
        "openai-compatible backends.",
    )
    sampling_group.add_argument(
        "--presence-penalty",
        type=float,
        default=None,
        help="Presence penalty sampling parameter. Only has effect on "
        "openai-compatible backends.",
    )
    sampling_group.add_argument(
        "--repetition-penalty",
        type=float,
        default=None,
        help="Repetition penalty sampling parameter. Only has effect on "
        "openai-compatible backends.",
    )
1521

1522
1523
1524
1525
1526
1527
    parser.add_argument(
        "--served-model-name",
        type=str,
        default=None,
        help="The model name used in the API. "
        "If not specified, the model name will be the "
1528
        "same as the `--model` argument. ",
1529
1530
1531
1532
1533
1534
1535
1536
    )

    parser.add_argument(
        "--lora-modules",
        nargs="+",
        default=None,
        help="A subset of LoRA module names passed in when "
        "launching the server. For each request, the "
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
        "script chooses a LoRA module at random by default. "
        "Use --lora-assignment to control selection strategy.",
    )

    parser.add_argument(
        "--lora-assignment",
        type=str,
        default="random",
        choices=["random", "round-robin"],
        help="Strategy for assigning LoRA modules to requests. "
        "'random' (default) selects a LoRA at random for each request. "
        "'round-robin' cycles through LoRA modules deterministically.",
1549
    )
1550

1551
1552
1553
1554
1555
1556
1557
1558
    parser.add_argument(
        "--ramp-up-strategy",
        type=str,
        default=None,
        choices=["linear", "exponential"],
        help="The ramp-up strategy. This would be used to "
        "ramp up the request rate from initial RPS to final "
        "RPS rate (specified by --ramp-up-start-rps and "
1559
1560
        "--ramp-up-end-rps.) over the duration of the benchmark.",
    )
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
    parser.add_argument(
        "--ramp-up-start-rps",
        type=int,
        default=None,
        help="The starting request rate for ramp-up (RPS). "
        "Needs to be specified when --ramp-up-strategy is used.",
    )
    parser.add_argument(
        "--ramp-up-end-rps",
        type=int,
        default=None,
        help="The ending request rate for ramp-up (RPS). "
        "Needs to be specified when --ramp-up-strategy is used.",
    )
1575
1576
1577
    parser.add_argument(
        "--ready-check-timeout-sec",
        type=int,
1578
        default=0,
1579
        help="Maximum time to wait for the endpoint to become ready "
1580
        "in seconds. Ready check will be skipped by default.",
1581
    )
1582

1583
1584
1585
1586
1587
1588
1589
1590
    parser.add_argument(
        "--extra-body",
        help="A JSON string representing extra body parameters to include "
        "in each request."
        'Example: \'{"chat_template_kwargs":{"enable_thinking":false}}\'',
        type=json.loads,
        default=None,
    )
1591
1592
1593
1594
1595
1596
    parser.add_argument(
        "--skip-tokenizer-init",
        action="store_true",
        default=False,
        help="Skip initialization of tokenizer and detokenizer",
    )
1597

1598
1599
1600
1601
1602
1603
1604
1605
    parser.add_argument(
        "--insecure",
        action="store_true",
        default=False,
        help="Disable SSL certificate verification. Use this option when "
        "connecting to servers with self-signed certificates.",
    )

1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
    parser.add_argument(
        "--plot-timeline",
        action="store_true",
        help="Generate an HTML timeline plot showing request execution. "
        "The plot will be saved alongside the results JSON file.",
    )
    parser.add_argument(
        "--timeline-itl-thresholds",
        type=float,
        nargs=2,
        default=[25.0, 50.0],
        metavar=("THRESHOLD1", "THRESHOLD2"),
        help="ITL thresholds in milliseconds for timeline plot coloring. "
        "Specify two values to categorize inter-token latencies into three groups: "
        "below first threshold (green), between thresholds (orange), "
        "and above second threshold (red). Default: 25 50 (milliseconds).",
    )
    parser.add_argument(
        "--plot-dataset-stats",
        action="store_true",
        help="Generate a matplotlib figure with dataset statistics showing "
        "prompt tokens, output tokens, and combined token distributions.",
    )

1630

1631
1632
1633
def main(args: argparse.Namespace) -> dict[str, Any]:
    return asyncio.run(main_async(args))

1634

1635
async def main_async(args: argparse.Namespace) -> dict[str, Any]:
1636
1637
1638
1639
    print(args)
    random.seed(args.seed)
    np.random.seed(args.seed)

1640
1641
1642
1643
1644
1645
    # Validate ramp-up arguments
    if args.ramp_up_strategy is not None:
        if args.request_rate != float("inf"):
            raise ValueError(
                "When using ramp-up, do not specify --request-rate. "
                "The request rate will be controlled by ramp-up parameters. "
1646
1647
                "Please remove the --request-rate argument."
            )
1648
1649
1650
        if args.ramp_up_start_rps is None or args.ramp_up_end_rps is None:
            raise ValueError(
                "When using --ramp-up-strategy, both --ramp-up-start-rps and "
1651
1652
                "--ramp-up-end-rps must be specified"
            )
1653
1654
1655
1656
        if args.ramp_up_start_rps < 0 or args.ramp_up_end_rps < 0:
            raise ValueError("Ramp-up start and end RPS must be non-negative")
        if args.ramp_up_start_rps > args.ramp_up_end_rps:
            raise ValueError("Ramp-up start RPS must be less than end RPS")
1657
1658
        if args.ramp_up_strategy == "exponential" and args.ramp_up_start_rps == 0:
            raise ValueError("For exponential ramp-up, the start RPS cannot be 0.")
1659

1660
1661
1662
1663
1664
1665
    label = args.label

    if args.base_url is not None:
        api_url = f"{args.base_url}{args.endpoint}"
        base_url = f"{args.base_url}"
    else:
1666
1667
1668
        host_port = join_host_port(args.host, args.port)
        api_url = f"http://{host_port}{args.endpoint}"
        base_url = f"http://{host_port}"
1669

1670
1671
1672
1673
1674
1675
1676
1677
1678
    # Headers
    headers = None
    if args.header:
        headers = {}
        for item in args.header:
            if "=" in item:
                kvstring = item.split("=", 1)
                headers[kvstring[0].strip()] = kvstring[1].strip()
            else:
1679
                raise ValueError("Invalid header format. Please use KEY=VALUE format.")
1680

1681
1682
1683
1684
1685
1686
1687
1688
1689
    # SSL context configuration
    ssl_context: ssl.SSLContext | bool | None = None
    if args.insecure:
        # Disable SSL certificate verification
        ssl_context = False
    elif "https://" in base_url:
        # Use default SSL context for HTTPS
        ssl_context = True

1690
1691
1692
    # Fetch model from server if not specified
    if args.model is None:
        print("Model not specified, fetching first model from server...")
1693
1694
1695
        model_name, model_id = await get_first_model_from_server(
            base_url, headers, ssl_context
        )
1696
        print(f"First model name: {model_name}, first model id: {model_id}")
1697
    else:
1698
        model_name = args.served_model_name
1699
1700
        model_id = args.model

1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
    if args.skip_tokenizer_init:
        tokenizer_id = None
        tokenizer_mode = None
        tokenizer = None
    else:
        tokenizer_id = args.tokenizer if args.tokenizer is not None else model_id
        tokenizer_mode = args.tokenizer_mode
        tokenizer = get_tokenizer(
            tokenizer_id,
            tokenizer_mode=tokenizer_mode,
            trust_remote_code=args.trust_remote_code,
        )
1713

1714
1715
1716
    if args.dataset_name is None:
        raise ValueError(
            "Please specify '--dataset-name' and the corresponding "
1717
1718
            "'--dataset-path' if required."
        )
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732

    # Map general --input-len and --output-len to all dataset-specific arguments
    if args.input_len is not None:
        args.random_input_len = args.input_len
        args.sonnet_input_len = args.input_len

    if args.output_len is not None:
        args.random_output_len = args.output_len
        args.sonnet_output_len = args.output_len
        args.sharegpt_output_len = args.output_len
        args.custom_output_len = args.output_len
        args.hf_output_len = args.output_len
        args.spec_bench_output_len = args.output_len
        args.prefix_repetition_output_len = args.output_len
1733

1734
1735
1736
1737
1738
1739
1740
1741
    # when using random datasets, default to ignoring EOS
    # so generation runs to the requested length
    if (
        args.dataset_name in ("random", "random-mm")
        and args.backend in OPENAI_COMPATIBLE_BACKENDS
    ):
        args.ignore_eos = True

1742
1743
    # Load the dataset.
    input_requests = get_samples(args, tokenizer)
1744
1745
    goodput_config_dict = check_goodput_args(args)

1746
    backend = args.backend
1747
    task_type = TaskType.POOLING if backend in POOLING_BACKENDS else TaskType.GENERATION
1748

1749
    # Collect the sampling parameters.
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
    if task_type == TaskType.GENERATION:
        sampling_params = {
            k: v
            for k, v in {
                "top_p": args.top_p,
                "top_k": args.top_k,
                "min_p": args.min_p,
                "temperature": args.temperature,
                "frequency_penalty": args.frequency_penalty,
                "presence_penalty": args.presence_penalty,
                "repetition_penalty": args.repetition_penalty,
            }.items()
            if v is not None
        }

        # Sampling parameters are only supported by openai-compatible backend.
        if sampling_params and args.backend not in OPENAI_COMPATIBLE_BACKENDS:
            raise ValueError(
                "Sampling parameters are only supported by openai-compatible backends."
            )
1770

1771
        if "temperature" not in sampling_params:
1772
1773
1774
1775
1776
1777
            print(
                "WARNING: vllm bench serve no longer sets temperature==0 (greedy) "
                "in requests by default. The default will be determined on the "
                "server side and can be model/API specific. "
                "For the old behavior, include --temperature=0."
            )
1778
1779

        default_percentile_metrics = "ttft,tpot,itl"
1780
1781
    else:
        sampling_params = {}
1782
        default_percentile_metrics = "e2el"
1783

1784
1785
1786
    extra_body = args.extra_body or {}
    extra_body = {**sampling_params, **extra_body}

1787
1788
    percentile_metrics: str = args.percentile_metrics or default_percentile_metrics

1789
    # Avoid GC processing "static" data - reduce pause times.
1790
    freeze_gc_heap()
1791

1792
    benchmark_result = await benchmark(
1793
1794
        task_type=task_type,
        endpoint_type=backend,
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
        api_url=api_url,
        base_url=base_url,
        model_id=model_id,
        model_name=model_name,
        tokenizer=tokenizer,
        input_requests=input_requests,
        logprobs=args.logprobs,
        request_rate=args.request_rate,
        burstiness=args.burstiness,
        disable_tqdm=args.disable_tqdm,
1805
        num_warmups=args.num_warmups,
1806
        profile=args.profile,
1807
        selected_percentile_metrics=percentile_metrics.split(","),
1808
        selected_percentiles=[float(p) for p in args.metric_percentiles.split(",")],
1809
1810
1811
1812
        ignore_eos=args.ignore_eos,
        goodput_config_dict=goodput_config_dict,
        max_concurrency=args.max_concurrency,
        lora_modules=args.lora_modules,
1813
        lora_assignment=args.lora_assignment,
1814
        extra_headers=headers,
1815
        extra_body=extra_body,
1816
1817
1818
1819
        ramp_up_strategy=args.ramp_up_strategy,
        ramp_up_start_rps=args.ramp_up_start_rps,
        ramp_up_end_rps=args.ramp_up_end_rps,
        ready_check_timeout_sec=args.ready_check_timeout_sec,
1820
        ssl_context=ssl_context,
1821
    )
1822
1823

    # Save config and results to json
1824
1825
1826
1827
1828
    result_json: dict[str, Any] = {}

    # Setup
    current_dt = datetime.now().strftime("%Y%m%d-%H%M%S")
    result_json["date"] = current_dt
1829
    result_json["endpoint_type"] = args.backend  # for backward compatibility
1830
    result_json["backend"] = args.backend
1831
1832
1833
1834
1835
1836
1837
1838
1839
    result_json["label"] = label
    result_json["model_id"] = model_id
    result_json["tokenizer_id"] = tokenizer_id
    result_json["num_prompts"] = args.num_prompts

    # Metadata
    if args.metadata:
        for item in args.metadata:
            if "=" in item:
1840
                kvstring = item.split("=", 1)
1841
1842
1843
                result_json[kvstring[0].strip()] = kvstring[1].strip()
            else:
                raise ValueError(
1844
1845
                    "Invalid metadata format. Please use KEY=VALUE format."
                )
1846

1847
    # Traffic
1848
1849
1850
    result_json["request_rate"] = (
        args.request_rate if args.request_rate < float("inf") else "inf"
    )
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
    result_json["burstiness"] = args.burstiness
    result_json["max_concurrency"] = args.max_concurrency

    if args.ramp_up_strategy is not None:
        result_json["ramp_up_strategy"] = args.ramp_up_strategy
        result_json["ramp_up_start_rps"] = args.ramp_up_start_rps
        result_json["ramp_up_end_rps"] = args.ramp_up_end_rps

    # Merge with benchmark result
    result_json = {**result_json, **benchmark_result}

1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
    # Compute file_name once before using it for plots or saving results
    file_name = compute_result_filename(args, model_id, label, current_dt)

    # Generate timeline plot if requested
    if args.plot_timeline:
        try:
            from vllm.benchmarks.plot import generate_timeline_plot

            # Prepare per-request data for timeline
            per_request_data = []
            start_times = benchmark_result.get("start_times", [])
            ttfts = benchmark_result.get("ttfts", [])
            itls = benchmark_result.get("itls", [])
            input_lens = benchmark_result.get("input_lens", [])
            output_lens = benchmark_result.get("output_lens", [])

            if start_times and ttfts and itls:
                for i in range(len(start_times)):
                    # Calculate latency as ttft + sum of all itls
                    latency = ttfts[i] + sum(itls[i]) if itls[i] else ttfts[i]

                    per_request_data.append(
                        {
                            "start_time": start_times[i],
                            "ttft": ttfts[i],
                            "itl": itls[i],
                            "latency": latency,
                            "prompt_len": input_lens[i],
                            "output_tokens": output_lens[i],
                        }
                    )

                timeline_path = Path(file_name).with_suffix(".timeline.html")
                # Convert thresholds from milliseconds to seconds
                itl_thresholds_sec = [t / 1000.0 for t in args.timeline_itl_thresholds]
                generate_timeline_plot(
                    per_request_data, timeline_path, itl_thresholds=itl_thresholds_sec
                )
            else:
                warnings.warn(
                    "Timeline plot requires detailed metrics. "
                    "Ensure the benchmark completed successfully.",
                    stacklevel=2,
                )
        except Exception as e:
            warnings.warn(f"Failed to generate timeline plot: {e}", stacklevel=2)

    # Generate dataset statistics plot if requested
    if args.plot_dataset_stats:
        try:
            from vllm.benchmarks.plot import generate_dataset_stats_plot

            # Prepare per-request data for dataset stats
            per_request_data = []
            input_lens = benchmark_result.get("input_lens", [])
            output_lens = benchmark_result.get("output_lens", [])

            if input_lens and output_lens:
                for req_input_len, req_output_len in zip(input_lens, output_lens):
                    per_request_data.append(
                        {
                            "prompt_len": req_input_len,
                            "output_tokens": req_output_len,
                        }
                    )

                stats_path = Path(file_name).with_suffix(".dataset_stats.png")
                generate_dataset_stats_plot(per_request_data, stats_path)
            else:
                warnings.warn(
                    "Dataset statistics plot requires input and "
                    "output length data. Ensure the benchmark completed "
                    "successfully.",
                    stacklevel=2,
                )
        except Exception as e:
            warnings.warn(
                f"Failed to generate dataset statistics plot: {e}", stacklevel=2
            )

1942
1943
1944
    if not args.save_detailed:
        # Remove fields with too many data points
        for field in [
1945
1946
            "input_lens",
            "output_lens",
1947
            "start_times",
1948
1949
1950
1951
            "ttfts",
            "itls",
            "generated_texts",
            "errors",
1952
1953
1954
1955
1956
        ]:
            if field in result_json:
                del result_json[field]
            if field in benchmark_result:
                del benchmark_result[field]
1957

1958
    # Save to file
1959
    if args.save_result or args.append_result:
1960
1961
1962
        with open(
            file_name, mode="a+" if args.append_result else "w", encoding="utf-8"
        ) as outfile:
1963
1964
1965
            # Append a newline.
            if args.append_result and outfile.tell() != 0:
                outfile.write("\n")
1966
1967
            json.dump(result_json, outfile)
        save_to_pytorch_benchmark_format(args, result_json, file_name)
1968

1969
    return result_json