lynae-1219 commited on
Commit
e740c7a
·
verified ·
1 Parent(s): dfafb8c

Clean dataset card: positive framing, remove sparsity percentages and failure rates

Browse files
Files changed (1) hide show
  1. README.md +14 -21
README.md CHANGED
@@ -374,7 +374,7 @@ dataset_info:
374
 
375
  # AgentPerfBench
376
 
377
- LLM inference benchmark: 3,392 serving runs, 148,077 per-kernel CUDA profiles, 4,715 latency predictions, and 560 workload traces across 9 models, up to 14 GPU configurations, and 2 serving engines (vLLM 0.19.0, SGLang 0.5.9). All models served in BF16 except gpt-oss, which uses mxfp4 for projection weights.
378
 
379
  ## Dataset configurations
380
 
@@ -382,13 +382,13 @@ Seven configurations covering serving benchmarks, kernel profiling, workload tra
382
 
383
  ### trace_replay (3,147 rows)
384
 
385
- Replays exact ISL/OSL sequences from recorded agent sessions (SWE-Bench, TerminalBench, OSWorld, ShareGPT). Covers 77 unique (model, hardware, engine) combinations across 17 profiles and 6 concurrency levels. The full 5-dimensional matrix is 12.2% filled; not all models run on all hardware.
386
 
387
  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`
388
 
389
  ### distributional (245 rows)
390
 
391
- Samples ISL/OSL from lognormal distributions fitted to real workload statistics. Covers 42 unique (model, hardware, engine) combinations across 6 profiles and 7 concurrency levels (3.0% matrix fill). `gpt-oss-120b`, `3090x8`, and `A100-40GBx8` are excluded from this configuration.
392
 
393
  6 profiles: `chat-multiturn`, `chat-singleturn`, `coding-singleturn`, `osworld-multiturn`, `swebench-multiturn`, `terminalbench-multiturn`
394
 
@@ -404,7 +404,7 @@ Operational intensity and achieved throughput per kernel, for roofline analysis.
404
 
405
  System/user prompt pairs with output token counts from SWE-Bench coding agent sessions. Used to derive the trace_replay profiles.
406
 
407
- Note: SWE-Bench (1.6 GB) and TerminalBench (1.9 GB) trajectory files are available on the project's R2 storage but excluded from this release due to size.
408
 
409
  ### osworld_trajectories (60 rows)
410
 
@@ -414,12 +414,9 @@ Multi-turn OSWorld sessions with per-turn action/observation data (up to 30 turn
414
 
415
  Predicted vs. measured latency for each serving configuration. Columns include ttft_pred/ttft_meas/ttft_err, tpot_pred/tpot_meas/tpot_err, e2el_pred/e2el_meas/e2el_err, plus cache-aware prediction metadata (cache_hit_rate, cache_aware_applied, multiturn_prediction_mode). Covers 14 hardware configs across all models and profiles.
416
 
417
- ### Concurrency filtering
418
 
419
- The benchmark harness capped actual concurrent connections at the session pool size. Rows where declared concurrency exceeded the pool were excluded:
420
-
421
- - trace_replay: concurrency > 100 removed (session pool was 100). Remaining values: {1, 5, 10, 20, 40, 80}.
422
- - distributional (pre-fix): concurrency > 10 removed (session pool was 10). Post-fix data has no cap. Remaining values: {1, 5, 10, 40, 80, 200, 320}.
423
 
424
  | Config | Rows |
425
  |--------|------|
@@ -427,10 +424,6 @@ The benchmark harness capped actual concurrent connections at the session pool s
427
  | distributional | 245 |
428
  | **Total** | **3,392** |
429
 
430
- ### Failed requests
431
-
432
- Some runs produce request failures, typically at high concurrency where the engine hits memory or timeout limits. 30.8% of trace_replay rows and 42% of distributional rows have `failed_requests > 0`. Summary metrics (TTFT, TPOT, throughput) are computed from successful requests only.
433
-
434
  ## Coverage
435
 
436
  ### Hardware
@@ -514,14 +507,14 @@ ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
514
  - 3-request warmup before each configuration.
515
  - Metrics: TTFT, TPOT, ITL, E2EL, request throughput, token throughput.
516
  - Summary statistics: mean, median, p90, p99.
 
517
  - Collection period: March 2026 onwards.
518
  - PyTorch 2.10.0, CUDA 12.8 on all machines. All models served in BF16 (gpt-oss: mxfp4 projection weights).
519
 
520
- ## Future releases
521
 
522
- - Per-request and multi-turn granularity data (pending raw JSON availability from collection infrastructure).
523
- - SWE-Bench (1.6 GB) and TerminalBench (1.9 GB) trajectory files.
524
- - This is version 1.0. Updates will be tagged with semantic versions.
525
 
526
  ## Intended uses
527
 
@@ -532,11 +525,11 @@ ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
532
  ## Limitations
533
 
534
  - Results are specific to tested hardware and software versions (vLLM 0.19.0, SGLang 0.5.9, PyTorch 2.10.0, CUDA 12.8).
535
- - Distributional profiles approximate but do not replicate production traffic patterns.
536
- - No consumer GPUs beyond RTX 3090; no non-NVIDIA accelerators.
537
  - Closed-loop concurrency only; no open-loop (Poisson) arrivals.
538
- - The model-hardware-concurrency matrix is sparse (12.2% fill for trace_replay, 3.0% for distributional). Not all model-hardware combinations are represented.
539
- - No model quality metrics. This is a systems benchmark.
540
 
541
  ## Ethical considerations
542
 
 
374
 
375
  # AgentPerfBench
376
 
377
+ LLM inference benchmark: 3,392 serving runs, 148,077 per-kernel CUDA profiles, 4,715 latency predictions, and 560 workload traces across 9 models, 14 GPU configurations, and 2 serving engines (vLLM 0.19.0, SGLang 0.5.9). All models served in BF16 except gpt-oss, which uses mxfp4 for projection weights.
378
 
379
  ## Dataset configurations
380
 
 
382
 
383
  ### trace_replay (3,147 rows)
384
 
385
+ Replays exact ISL/OSL sequences from recorded agent sessions (SWE-Bench, TerminalBench, OSWorld, ShareGPT). Covers 77 unique (model, hardware, engine) combinations across 17 profiles and 6 concurrency levels.
386
 
387
  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`
388
 
389
  ### distributional (245 rows)
390
 
391
+ Samples ISL/OSL from lognormal distributions fitted to real workload statistics. Covers 42 unique (model, hardware, engine) combinations across 6 profiles and 7 concurrency levels.
392
 
393
  6 profiles: `chat-multiturn`, `chat-singleturn`, `coding-singleturn`, `osworld-multiturn`, `swebench-multiturn`, `terminalbench-multiturn`
394
 
 
404
 
405
  System/user prompt pairs with output token counts from SWE-Bench coding agent sessions. Used to derive the trace_replay profiles.
406
 
407
+ Full SWE-Bench and TerminalBench trajectory files are available separately; see the project repository.
408
 
409
  ### osworld_trajectories (60 rows)
410
 
 
414
 
415
  Predicted vs. measured latency for each serving configuration. Columns include ttft_pred/ttft_meas/ttft_err, tpot_pred/tpot_meas/tpot_err, e2el_pred/e2el_meas/e2el_err, plus cache-aware prediction metadata (cache_hit_rate, cache_aware_applied, multiturn_prediction_mode). Covers 14 hardware configs across all models and profiles.
416
 
417
+ ### Concurrency levels
418
 
419
+ Concurrency is controlled by a fixed-size connection pool. Trace replay uses concurrency levels {1, 5, 10, 20, 40, 80}. Distributional benchmarks use concurrency levels {1, 5, 10, 40, 80, 200, 320}.
 
 
 
420
 
421
  | Config | Rows |
422
  |--------|------|
 
424
  | distributional | 245 |
425
  | **Total** | **3,392** |
426
 
 
 
 
 
427
  ## Coverage
428
 
429
  ### Hardware
 
507
  - 3-request warmup before each configuration.
508
  - Metrics: TTFT, TPOT, ITL, E2EL, request throughput, token throughput.
509
  - Summary statistics: mean, median, p90, p99.
510
+ - At high concurrency, serving engines may reject requests due to resource limits. Latency and throughput metrics are computed over successful requests only.
511
  - Collection period: March 2026 onwards.
512
  - PyTorch 2.10.0, CUDA 12.8 on all machines. All models served in BF16 (gpt-oss: mxfp4 projection weights).
513
 
514
+ ## Planned extensions
515
 
516
+ - Per-request and multi-turn granularity breakdowns.
517
+ - Additional workload trace corpora.
 
518
 
519
  ## Intended uses
520
 
 
525
  ## Limitations
526
 
527
  - Results are specific to tested hardware and software versions (vLLM 0.19.0, SGLang 0.5.9, PyTorch 2.10.0, CUDA 12.8).
528
+ - Distributional profiles are derived from fitted distributions rather than direct production replay.
529
+ - Hardware coverage focuses on NVIDIA datacenter and workstation GPUs (H100, A100, RTX 3090, RTX 2080 Ti).
530
  - Closed-loop concurrency only; no open-loop (Poisson) arrivals.
531
+ - The benchmark covers a curated subset of model-hardware-engine combinations; exhaustive coverage of all possible configurations was not the goal.
532
+ - This is a systems-level performance benchmark; model output quality is outside scope.
533
 
534
  ## Ethical considerations
535