Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/cli/bench/multimodal_processor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# vllm bench multimodal-processor

## JSON CLI Arguments

--8<-- "docs/cli/json_tip.inc.md"

## Arguments

--8<-- "docs/argparse/bench_multimodal_processor.inc.md"
2 changes: 2 additions & 0 deletions docs/mkdocs/hooks/generate_argparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@


bench_latency = auto_mock("vllm.benchmarks", "latency")
bench_multimodal_processor = auto_mock("vllm.benchmarks", "multimodal_processor")
bench_serve = auto_mock("vllm.benchmarks", "serve")
bench_sweep_plot = auto_mock("vllm.benchmarks.sweep.plot", "SweepPlotArgs")
bench_sweep_serve = auto_mock("vllm.benchmarks.sweep.serve", "SweepServeArgs")
Expand Down Expand Up @@ -219,6 +220,7 @@
"run-batch": create_parser(openai_run_batch.make_arg_parser),
# Benchmark CLI
"bench_latency": create_parser(bench_latency.add_cli_args),
"bench_multimodal_processor": create_parser(bench_multimodal_processor.add_cli_args),

Check failure on line 223 in docs/mkdocs/hooks/generate_argparse.py

View workflow job for this annotation

GitHub Actions / pre-commit

Ruff (E501)

docs/mkdocs/hooks/generate_argparse.py:223:89: E501 Line too long (93 > 88)
"bench_serve": create_parser(bench_serve.add_cli_args),
"bench_sweep_plot": create_parser(bench_sweep_plot.add_cli_args),
"bench_sweep_serve": create_parser(bench_sweep_serve.add_cli_args),
Expand Down
Loading
Loading