lynae-1219 commited on
Commit
d218731
·
verified ·
1 Parent(s): b479602

Clean up dataset card: remove slop, add concurrency filtering context

Browse files
Files changed (1) hide show
  1. README.md +12 -33
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). Covers 77 unique (model, hardware, engine) combinations across 17 profiles and 6 concurrency levels.
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
- 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.
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 profiling data from NCU (Nsight Compute). Individual kernel invocations across 4 GPUs (A100, H100, RTX 3090, RTX 2080Ti) and 13 model/sweep sources. Columns include kernel_family, kernel_name, M/N/K dimensions, gpu_time_duration_ms, dram_bytes_sum, launch_block_size, launch_grid_size, and register pressure.
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 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.
 
 
372
 
373
- ### Concurrency levels
374
 
375
- 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}.
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. TP degree depends on model size and available GPUs.
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
- - Summary statistics: mean, median, p90, p99.
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
- - Results are specific to tested hardware and software versions (vLLM 0.19.0, SGLang 0.5.9, PyTorch 2.10.0, CUDA 12.8).
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