An open API service indexing awesome lists of open source software.

https://github.com/nerdalert/vllm-benchmark-graphs

Graphing vLLM Benchmarks
https://github.com/nerdalert/vllm-benchmark-graphs

Last synced: 11 months ago
JSON representation

Graphing vLLM Benchmarks

Awesome Lists containing this project

README

          

# VLLM Benchmark Graphing

### Run

With `results.json` in the same directory (or use the included sample) run:

```commandline
python3.12 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install pandas plotly kaleido

python prompt-comparisons.py --export html
python metric-perfs.py --export html
```

For static png graphs run:

```commandline
python prompt-comparisons.py --export png
python metric-perfs.py --export png
```

# E2E Automation

For CI run `e2e-bench.sh` to builds all dependencies and run both tests. Flags also have corresponding ENVs.

```commandline
./e2e-bench.sh --port 8000 --model meta-llama/Llama-3.2-1B --cuda-device 0
```