This commit is contained in:
Reagan 2025-12-17 12:27:03 -08:00
parent 6275b3c1b9
commit 06b3eb480b
2 changed files with 6 additions and 6 deletions

View File

@ -1,8 +1,8 @@
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
from vllm.entrypoints.cli.benchmark.latency import BenchmarkLatencySubcommand
from vllm.entrypoints.cli.benchmark.multimodal_processor import (
BenchmarkMultimodalProcessorSubcommand,
from vllm.entrypoints.cli.benchmark.mm_processor import (
BenchmarkMMProcessorSubcommand,
)
from vllm.entrypoints.cli.benchmark.serve import BenchmarkServingSubcommand
from vllm.entrypoints.cli.benchmark.startup import BenchmarkStartupSubcommand
@ -11,7 +11,7 @@ from vllm.entrypoints.cli.benchmark.throughput import BenchmarkThroughputSubcomm
__all__: list[str] = [
"BenchmarkLatencySubcommand",
"BenchmarkMultimodalProcessorSubcommand",
"BenchmarkMMProcessorSubcommand",
"BenchmarkServingSubcommand",
"BenchmarkStartupSubcommand",
"BenchmarkSweepSubcommand",

View File

@ -6,10 +6,10 @@ from vllm.benchmarks.multimodal_processor import add_cli_args, main
from vllm.entrypoints.cli.benchmark.base import BenchmarkSubcommandBase
class BenchmarkMultimodalProcessorSubcommand(BenchmarkSubcommandBase):
"""The `multimodal-processor` subcommand for `vllm bench`."""
class BenchmarkMMProcessorSubcommand(BenchmarkSubcommandBase):
"""The `mm-processor` subcommand for `vllm bench`."""
name = "multimodal-processor"
name = "mm-processor"
help = "Benchmark multimodal processor latency across different configurations."
@classmethod