Datasets:
Clean up dataset card: remove slop, add concurrency filtering context
Browse files
README.md
CHANGED
|
@@ -344,23 +344,21 @@ LLM inference benchmark: 3,392 serving runs, 148,077 per-kernel CUDA profiles, a
|
|
| 344 |
|
| 345 |
## Dataset configurations
|
| 346 |
|
| 347 |
-
Five configurations covering serving benchmarks, kernel profiling, and latency predictions.
|
| 348 |
-
|
| 349 |
### trace_replay (3,147 rows)
|
| 350 |
|
| 351 |
-
Replays exact ISL/OSL sequences from recorded agent sessions (SWE-Bench, TerminalBench, OSWorld, ShareGPT).
|
| 352 |
|
| 353 |
17 profiles: `chat-medium`, `chat-multiturn-long`, `chat-multiturn-medium`, `chat-multiturn-short`, `chat-short`, `chat-singleturn`, `coding-singleturn`, `decode-heavy`, `osworld-multiturn-long`, `osworld-multiturn-medium`, `osworld-multiturn-short`, `prefill-heavy`, `random-1k`, `swebench-multiturn-medium`, `swebench-multiturn-short`, `terminalbench-multiturn-medium`, `terminalbench-multiturn-short`
|
| 354 |
|
| 355 |
### distributional (245 rows)
|
| 356 |
|
| 357 |
-
|
| 358 |
|
| 359 |
6 profiles: `chat-multiturn`, `chat-singleturn`, `coding-singleturn`, `osworld-multiturn`, `swebench-multiturn`, `terminalbench-multiturn`
|
| 360 |
|
| 361 |
### kernels_labeled (148,077 rows)
|
| 362 |
|
| 363 |
-
Per-kernel CUDA
|
| 364 |
|
| 365 |
### roofline_quadrant (2,163 rows)
|
| 366 |
|
|
@@ -368,11 +366,13 @@ Operational intensity and achieved throughput per kernel, for roofline analysis.
|
|
| 368 |
|
| 369 |
### predictions (4,715 rows)
|
| 370 |
|
| 371 |
-
Predicted vs. measured
|
|
|
|
|
|
|
| 372 |
|
| 373 |
-
|
| 374 |
|
| 375 |
-
|
| 376 |
|
| 377 |
| Config | Rows |
|
| 378 |
|--------|------|
|
|
@@ -393,7 +393,7 @@ All benchmarks collected on PyTorch 2.10.0, CUDA 12.8.
|
|
| 393 |
| NVIDIA RTX 3090 | 24 GB | 936 GB/s | 71 |
|
| 394 |
| NVIDIA RTX 2080 Ti | 11 GB | 616 GB/s | 27 |
|
| 395 |
|
| 396 |
-
Multi-GPU configurations: 1, 2, 4, or 8 GPUs with tensor parallelism.
|
| 397 |
|
| 398 |
### Models
|
| 399 |
|
|
@@ -411,8 +411,6 @@ All models served in BF16 unless noted.
|
|
| 411 |
| gpt-oss-20b | GPT-OSS | 21B (3.6B active) | MoE | mxfp4 projections |
|
| 412 |
| gpt-oss-120b | GPT-OSS | 117B (5.1B active) | MoE | mxfp4 projections |
|
| 413 |
|
| 414 |
-
Model names in this table match the `model` column in the parquet files.
|
| 415 |
-
|
| 416 |
### Engines
|
| 417 |
|
| 418 |
- vLLM 0.19.0
|
|
@@ -450,7 +448,6 @@ Each row in `summary.parquet` (both configs):
|
|
| 450 |
```python
|
| 451 |
from datasets import load_dataset
|
| 452 |
|
| 453 |
-
# Serving benchmark results
|
| 454 |
ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
|
| 455 |
# or "distributional", "kernels_labeled", "roofline_quadrant", "predictions"
|
| 456 |
```
|
|
@@ -458,33 +455,15 @@ ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
|
|
| 458 |
## Benchmark methodology
|
| 459 |
|
| 460 |
- Closed-loop concurrency with semaphore control.
|
| 461 |
-
- Concurrency levels: {1, 5, 10, 20, 40, 80} (trace_replay), {1, 5, 10, 40, 80, 200, 320} (distributional).
|
| 462 |
- 3-request warmup before each configuration.
|
| 463 |
-
- Metrics: TTFT, TPOT, ITL, E2EL, request throughput, token throughput.
|
| 464 |
-
-
|
| 465 |
-
- At high concurrency, serving engines may reject requests due to resource limits. Latency and throughput metrics are computed over successful requests only.
|
| 466 |
- Collection period: March 2026 onwards.
|
| 467 |
-
- PyTorch 2.10.0, CUDA 12.8 on all machines. All models served in BF16 (gpt-oss: mxfp4 projection weights).
|
| 468 |
-
|
| 469 |
-
## Planned extensions
|
| 470 |
-
|
| 471 |
-
- Per-request and multi-turn granularity breakdowns.
|
| 472 |
-
- Additional workload trace corpora.
|
| 473 |
-
|
| 474 |
-
## Intended uses
|
| 475 |
-
|
| 476 |
-
- Inference engine comparison under controlled conditions.
|
| 477 |
-
- Capacity planning for LLM deployments.
|
| 478 |
-
- TTFT scaling with context length in multi-turn sessions.
|
| 479 |
|
| 480 |
## Limitations
|
| 481 |
|
| 482 |
-
-
|
| 483 |
-
- Distributional profiles are derived from fitted distributions rather than direct production replay.
|
| 484 |
-
- Hardware coverage focuses on NVIDIA datacenter and workstation GPUs (H100, A100, RTX 3090, RTX 2080 Ti).
|
| 485 |
- Closed-loop concurrency only; no open-loop (Poisson) arrivals.
|
| 486 |
-
- The benchmark covers a curated subset of model-hardware-engine combinations; exhaustive coverage of all possible configurations was not the goal.
|
| 487 |
-
- This is a systems-level performance benchmark; model output quality is outside scope.
|
| 488 |
|
| 489 |
## Ethical considerations
|
| 490 |
|
|
|
|
| 344 |
|
| 345 |
## Dataset configurations
|
| 346 |
|
|
|
|
|
|
|
| 347 |
### trace_replay (3,147 rows)
|
| 348 |
|
| 349 |
+
Replays exact ISL/OSL sequences from recorded agent sessions (SWE-Bench, TerminalBench, OSWorld, ShareGPT). 77 (model, hardware, engine) combinations, 17 profiles, 6 concurrency levels.
|
| 350 |
|
| 351 |
17 profiles: `chat-medium`, `chat-multiturn-long`, `chat-multiturn-medium`, `chat-multiturn-short`, `chat-short`, `chat-singleturn`, `coding-singleturn`, `decode-heavy`, `osworld-multiturn-long`, `osworld-multiturn-medium`, `osworld-multiturn-short`, `prefill-heavy`, `random-1k`, `swebench-multiturn-medium`, `swebench-multiturn-short`, `terminalbench-multiturn-medium`, `terminalbench-multiturn-short`
|
| 352 |
|
| 353 |
### distributional (245 rows)
|
| 354 |
|
| 355 |
+
ISL/OSL sampled from lognormal fits to real workload statistics. 42 combinations, 6 profiles, 7 concurrency levels.
|
| 356 |
|
| 357 |
6 profiles: `chat-multiturn`, `chat-singleturn`, `coding-singleturn`, `osworld-multiturn`, `swebench-multiturn`, `terminalbench-multiturn`
|
| 358 |
|
| 359 |
### kernels_labeled (148,077 rows)
|
| 360 |
|
| 361 |
+
Per-kernel CUDA profiles from NCU across 4 GPUs (A100, H100, RTX 3090, RTX 2080 Ti) and 13 model/sweep sources.
|
| 362 |
|
| 363 |
### roofline_quadrant (2,163 rows)
|
| 364 |
|
|
|
|
| 366 |
|
| 367 |
### predictions (4,715 rows)
|
| 368 |
|
| 369 |
+
Predicted vs. measured TTFT, TPOT, and E2EL for each serving configuration, with cache-aware prediction metadata. 14 hardware configs.
|
| 370 |
+
|
| 371 |
+
### Concurrency filtering
|
| 372 |
|
| 373 |
+
Concurrency is controlled by a fixed-size connection pool. Trace replay uses levels {1, 5, 10, 20, 40, 80}; distributional uses {1, 5, 10, 40, 80, 200, 320}.
|
| 374 |
|
| 375 |
+
Early runs used a session-pool size smaller than the declared concurrency (`num_sessions=100` for trace replay, `num_sessions=10` for distributional), capping actual load below the nominal value. Rows where declared concurrency exceeded the session pool were dropped.
|
| 376 |
|
| 377 |
| Config | Rows |
|
| 378 |
|--------|------|
|
|
|
|
| 393 |
| NVIDIA RTX 3090 | 24 GB | 936 GB/s | 71 |
|
| 394 |
| NVIDIA RTX 2080 Ti | 11 GB | 616 GB/s | 27 |
|
| 395 |
|
| 396 |
+
Multi-GPU configurations: 1, 2, 4, or 8 GPUs with tensor parallelism.
|
| 397 |
|
| 398 |
### Models
|
| 399 |
|
|
|
|
| 411 |
| gpt-oss-20b | GPT-OSS | 21B (3.6B active) | MoE | mxfp4 projections |
|
| 412 |
| gpt-oss-120b | GPT-OSS | 117B (5.1B active) | MoE | mxfp4 projections |
|
| 413 |
|
|
|
|
|
|
|
| 414 |
### Engines
|
| 415 |
|
| 416 |
- vLLM 0.19.0
|
|
|
|
| 448 |
```python
|
| 449 |
from datasets import load_dataset
|
| 450 |
|
|
|
|
| 451 |
ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
|
| 452 |
# or "distributional", "kernels_labeled", "roofline_quadrant", "predictions"
|
| 453 |
```
|
|
|
|
| 455 |
## Benchmark methodology
|
| 456 |
|
| 457 |
- Closed-loop concurrency with semaphore control.
|
|
|
|
| 458 |
- 3-request warmup before each configuration.
|
| 459 |
+
- Metrics: TTFT, TPOT, ITL, E2EL, request throughput, token throughput (mean, median, p90, p99).
|
| 460 |
+
- Metrics computed over successful requests only.
|
|
|
|
| 461 |
- Collection period: March 2026 onwards.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 462 |
|
| 463 |
## Limitations
|
| 464 |
|
| 465 |
+
- Distributional profiles are fitted approximations, not direct production replays.
|
|
|
|
|
|
|
| 466 |
- Closed-loop concurrency only; no open-loop (Poisson) arrivals.
|
|
|
|
|
|
|
| 467 |
|
| 468 |
## Ethical considerations
|
| 469 |
|