lynae-1219 commited on
Commit
1505fbb
·
verified ·
1 Parent(s): c97d8c8

Fix dataset card: accurate stats, failed request disclosure, croissant alignment, BF16 column fix

Browse files
Files changed (2) hide show
  1. README.md +58 -39
  2. croissant.json +6 -92
README.md CHANGED
@@ -23,39 +23,40 @@ configs:
23
  data_files:
24
  - split: summary
25
  path: distributional/summary.parquet
26
- - config_name: roofline
27
- data_files:
28
- - split: kernel_profiles
29
- path: roofline/kernel_profiles.parquet
30
  ---
31
 
32
  # AgentPerfBench
33
 
34
- LLM inference benchmark dataset: serving performance (TTFT, TPOT, ITL, throughput) across 9 models, 14 GPU configurations, 2 engines, and 20+ workload profiles covering single-turn chat, multi-turn agent sessions, and stress tests. Includes per-kernel CUDA profiling for roofline analysis.
35
 
36
- ## Dataset Configurations
37
 
38
- Two benchmark configurations, each with a different data collection method.
39
 
40
  ### trace_replay (3,147 rows)
41
 
42
- Replays exact ISL/OSL sequences from recorded agent sessions (SWE-Bench, TerminalBench, OSWorld, ShareGPT). Input distributions come from real tool-use patterns.
43
 
44
- 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`
45
 
46
  ### distributional (245 rows)
47
 
48
- Samples ISL/OSL from parameterized distributions (e.g., lognormal) fitted to real workload statistics. Faster to run than full trace replays; MSE-validated against trace_replay.
 
 
49
 
50
- Profiles: `chat-multiturn`, `chat-singleturn`, `coding-singleturn`, `osworld-multiturn`, `swebench-multiturn`, `terminalbench-multiturn`
51
 
52
  ### Why two configurations?
53
 
54
- trace_replay grounds results in observed agent behaviour; distributional covers the model-hardware-concurrency matrix faster.
55
 
56
  ### Concurrency filtering
57
 
58
- The benchmark harness capped actual concurrent connections at the session pool size. Rows where declared concurrency exceeds the pool size never achieved the intended load and have been excluded. This affects trace_replay data at concurrency > 100 (session pool was 100) and distributional data collected before the fix at concurrency > 10 (session pool was 10). Distributional data collected after the fix has no such limitation.
 
 
 
59
 
60
  | Config | Rows |
61
  |--------|------|
@@ -63,33 +64,39 @@ The benchmark harness capped actual concurrent connections at the session pool s
63
  | distributional | 245 |
64
  | **Total** | **3,392** |
65
 
 
 
 
 
66
  ## Coverage
67
 
68
  ### Hardware
69
 
70
- | GPU | VRAM | HBM Bandwidth | Peak BF16 TFLOPS |
71
  |-----|------|---------------|------------------|
72
  | NVIDIA H100 SXM | 80 GB | 3.35 TB/s | 989 |
73
  | NVIDIA A100 SXM4 | 40 GB | 1.56 TB/s | 312 |
74
  | NVIDIA RTX 3090 | 24 GB | 936 GB/s | 71 |
75
  | NVIDIA RTX 2080 Ti | 11 GB | 616 GB/s | 27 |
76
 
77
- Multi-GPU configurations: 1, 2, 4, 8 GPUs with tensor parallelism.
78
 
79
  ### Models
80
 
81
  | Model | Family | Parameters | Architecture |
82
  |-------|--------|-----------|--------------|
83
- | Llama-3.1-8B-Instruct | Llama | 8B | Dense |
84
- | Llama-3.1-70B-Instruct | Llama | 70B | Dense |
85
- | Llama-3.3-70B-Instruct | Llama | 70B | Dense |
86
- | Qwen2.5-72B-Instruct | Qwen | 72B | Dense |
87
  | Qwen3.5-9B | Qwen | 9B | Dense |
88
  | Qwen3.5-27B | Qwen | 27B | Dense |
89
  | Mixtral-8x7B | Mixtral | 46.7B (12.9B active) | MoE |
90
  | gpt-oss-20b | GPT-OSS | 21B (3.6B active) | MoE |
91
  | gpt-oss-120b | GPT-OSS | 117B (5.1B active) | MoE |
92
 
 
 
93
  ### Engines
94
 
95
  - vLLM 0.19.0
@@ -97,7 +104,7 @@ Multi-GPU configurations: 1, 2, 4, 8 GPUs with tensor parallelism.
97
 
98
  ## Schema
99
 
100
- Each row in `summary.parquet` (both configs) contains:
101
 
102
  | Column | Type | Description |
103
  |--------|------|-------------|
@@ -122,41 +129,53 @@ Each row in `summary.parquet` (both configs) contains:
122
  | mean/median/p90/p99_itl_ms | float | Inter-token latency |
123
  | mean/median/p90/p99_e2el_ms | float | End-to-end latency |
124
 
125
- ## Benchmark Methodology
126
 
127
- - **Concurrency model**: Closed-loop with semaphore control.
128
- - **Concurrency sweep**: 1 to 320.
129
- - **Requests per configuration**: 50-100, with 3-request warmup.
130
- - **Metrics**: TTFT, TPOT, ITL, E2EL, request throughput, token throughput.
131
- - **Percentiles**: mean, median, p90, p99.
132
- - **Kernel profiling** (roofline config): PyTorch profiler on 2-layer forward passes, batch sizes [1, 4, 8, 32, 64].
133
 
134
- ## Future Releases
 
 
 
 
 
 
 
 
 
 
135
 
136
- Per-request and multi-turn granularity data will be added when full result JSON files are available from the collection infrastructure.
137
 
138
- ## Intended Uses
 
 
 
139
 
140
  - Inference engine comparison under controlled conditions.
141
- - Capacity planning for agentic LLM deployments.
142
- - GPU roofline analysis across workload types.
143
- - Studying TTFT degradation under multi-turn context accumulation.
144
 
145
  ## Limitations
146
 
147
  - Results are specific to tested hardware and software versions (vLLM 0.19.0, SGLang 0.5.9).
148
- - Distributional profiles approximate but do not replicate exact production traffic patterns.
149
  - No consumer GPUs beyond RTX 3090; no non-NVIDIA accelerators.
150
- - Closed-loop concurrency only; no open-loop (Poisson arrival).
151
  - No model quality metrics. This is a systems benchmark.
152
 
153
- ## Ethical Considerations
 
 
 
 
154
 
155
- No PII. Synthetic profiles use random tokens; trace-replay profiles derive from open benchmarks (SWE-Bench MIT, TerminalBench, OSWorld). Not a basis for hardware purchasing decisions on its own.
156
 
157
- ## Source Datasets
158
 
159
- - [SWE-Bench](https://github.com/princeton-nlp/SWE-bench) (MIT License)
160
  - [TerminalBench](https://github.com/TerminalBench/TerminalBench)
161
  - [ShareGPT (Aeala/ShareGPT_Vicuna_unfiltered)](https://huggingface.co/datasets/Aeala/ShareGPT_Vicuna_unfiltered)
162
  - [OSWorld](https://github.com/xlang-ai/OSWorld)
 
23
  data_files:
24
  - split: summary
25
  path: distributional/summary.parquet
 
 
 
 
26
  ---
27
 
28
  # AgentPerfBench
29
 
30
+ LLM inference benchmark measuring TTFT, TPOT, ITL, and throughput across 9 models, up to 14 GPU configurations, 2 engines, and 21 workload profiles.
31
 
32
+ ## Dataset configurations
33
 
34
+ Two configs with different data collection methods.
35
 
36
  ### trace_replay (3,147 rows)
37
 
38
+ Replays exact ISL/OSL sequences from recorded agent sessions (SWE-Bench, TerminalBench, OSWorld, ShareGPT).
39
 
40
+ 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`
41
 
42
  ### distributional (245 rows)
43
 
44
+ Samples ISL/OSL from parameterized distributions (lognormal) fitted to real workload statistics. Validated against trace_replay.
45
+
46
+ 8 of 9 models covered (`gpt-oss-120b` excluded). 12 of 14 hardware configs (`3090x8`, `A100-40GBx8` excluded).
47
 
48
+ 6 profiles: `chat-multiturn`, `chat-singleturn`, `coding-singleturn`, `osworld-multiturn`, `swebench-multiturn`, `terminalbench-multiturn`
49
 
50
  ### Why two configurations?
51
 
52
+ trace_replay uses exact sequences from recorded sessions; distributional samples from fitted distributions for broader coverage with shorter runs.
53
 
54
  ### Concurrency filtering
55
 
56
+ The benchmark harness capped actual concurrent connections at the session pool size. Rows where declared concurrency exceeded the pool were excluded.
57
+
58
+ - trace_replay: concurrency > 100 removed (session pool was 100). Remaining values: {1, 5, 10, 20, 40, 80}.
59
+ - 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}.
60
 
61
  | Config | Rows |
62
  |--------|------|
 
64
  | distributional | 245 |
65
  | **Total** | **3,392** |
66
 
67
+ ### Failed requests
68
+
69
+ Some configurations 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. The `failed_requests` column is included for transparency.
70
+
71
  ## Coverage
72
 
73
  ### Hardware
74
 
75
+ | GPU | VRAM | HBM bandwidth | Peak half-precision TFLOPS |
76
  |-----|------|---------------|------------------|
77
  | NVIDIA H100 SXM | 80 GB | 3.35 TB/s | 989 |
78
  | NVIDIA A100 SXM4 | 40 GB | 1.56 TB/s | 312 |
79
  | NVIDIA RTX 3090 | 24 GB | 936 GB/s | 71 |
80
  | NVIDIA RTX 2080 Ti | 11 GB | 616 GB/s | 27 |
81
 
82
+ Multi-GPU configurations: 1, 2, 4, or 8 GPUs with tensor parallelism (TP degree depends on GPU and model).
83
 
84
  ### Models
85
 
86
  | Model | Family | Parameters | Architecture |
87
  |-------|--------|-----------|--------------|
88
+ | Llama-3.1-8B | Llama | 8B | Dense |
89
+ | Llama-3.1-70B | Llama | 70B | Dense |
90
+ | Llama-3.3-70B | Llama | 70B | Dense |
91
+ | Qwen2.5-72B | Qwen | 72B | Dense |
92
  | Qwen3.5-9B | Qwen | 9B | Dense |
93
  | Qwen3.5-27B | Qwen | 27B | Dense |
94
  | Mixtral-8x7B | Mixtral | 46.7B (12.9B active) | MoE |
95
  | gpt-oss-20b | GPT-OSS | 21B (3.6B active) | MoE |
96
  | gpt-oss-120b | GPT-OSS | 117B (5.1B active) | MoE |
97
 
98
+ Model names in this table match the `model` column in the parquet files.
99
+
100
  ### Engines
101
 
102
  - vLLM 0.19.0
 
104
 
105
  ## Schema
106
 
107
+ Each row in `summary.parquet` (both configs):
108
 
109
  | Column | Type | Description |
110
  |--------|------|-------------|
 
129
  | mean/median/p90/p99_itl_ms | float | Inter-token latency |
130
  | mean/median/p90/p99_e2el_ms | float | End-to-end latency |
131
 
132
+ ## Loading
133
 
134
+ ```python
135
+ from datasets import load_dataset
 
 
 
 
136
 
137
+ ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
138
+ # or "distributional"
139
+ ```
140
+
141
+ ## Benchmark methodology
142
+
143
+ - Closed-loop concurrency with semaphore control.
144
+ - Concurrency levels: {1, 5, 10, 20, 40, 80} (trace_replay), {1, 5, 10, 40, 80, 200, 320} (distributional).
145
+ - 3-request warmup before each configuration.
146
+ - Metrics: TTFT, TPOT, ITL, E2EL, request throughput, token throughput.
147
+ - Summary statistics: mean, median, p90, p99.
148
 
149
+ ## Future releases
150
 
151
+ - Per-request and multi-turn granularity data (pending raw JSON availability).
152
+ - Per-kernel CUDA roofline profiles (PyTorch profiler, 2-layer forward passes, batch sizes 1/4/8/32/64).
153
+
154
+ ## Intended uses
155
 
156
  - Inference engine comparison under controlled conditions.
157
+ - Capacity planning for LLM deployments.
158
+ - TTFT scaling with context length in multi-turn sessions.
 
159
 
160
  ## Limitations
161
 
162
  - Results are specific to tested hardware and software versions (vLLM 0.19.0, SGLang 0.5.9).
163
+ - Distributional profiles approximate but do not replicate production traffic patterns.
164
  - No consumer GPUs beyond RTX 3090; no non-NVIDIA accelerators.
165
+ - Closed-loop concurrency only; no open-loop (Poisson) arrivals.
166
  - No model quality metrics. This is a systems benchmark.
167
 
168
+ ## Ethical considerations
169
+
170
+ No PII. Trace-replay profiles derive from open benchmarks (SWE-Bench MIT, TerminalBench, OSWorld). Synthetic profiles use random tokens.
171
+
172
+ ## License
173
 
174
+ The benchmark data is released under Apache-2.0. Source datasets retain their original licenses (see below).
175
 
176
+ ## Source datasets
177
 
178
+ - [SWE-Bench](https://github.com/princeton-nlp/SWE-bench) (MIT)
179
  - [TerminalBench](https://github.com/TerminalBench/TerminalBench)
180
  - [ShareGPT (Aeala/ShareGPT_Vicuna_unfiltered)](https://huggingface.co/datasets/Aeala/ShareGPT_Vicuna_unfiltered)
181
  - [OSWorld](https://github.com/xlang-ai/OSWorld)
croissant.json CHANGED
@@ -50,7 +50,7 @@
50
  "@type": "sc:Dataset",
51
  "name": "AgentPerfBench",
52
  "description": "LLM inference benchmark dataset measuring serving performance (TTFT, TPOT, throughput) across 9 models, 4 GPU platforms, 2 serving engines under agentic and chat workloads. Provides two dataset configurations: trace_replay (empirical session replays) and distributional (statistical sampling).",
53
- "url": "https://huggingface.co/datasets/lynae-1219/AgentPerfBench",
54
  "license": "https://spdx.org/licenses/Apache-2.0.html",
55
  "conformsTo": "http://mlcommons.org/croissant/1.1",
56
  "datePublished": "2026-05-04",
@@ -65,7 +65,7 @@
65
  "@type": "cr:FileObject",
66
  "@id": "trace-replay-summary-parquet",
67
  "name": "trace_replay/summary.parquet",
68
- "contentUrl": "https://huggingface.co/datasets/lynae-1219/AgentPerfBench/resolve/main/trace_replay/summary.parquet",
69
  "encodingFormat": "application/x-parquet",
70
  "sha256": "a9cd2565a9292e75f54791e8108f2491b7bb371fdfeeefb81cdb00833860dd23"
71
  },
@@ -73,17 +73,9 @@
73
  "@type": "cr:FileObject",
74
  "@id": "distributional-summary-parquet",
75
  "name": "distributional/summary.parquet",
76
- "contentUrl": "https://huggingface.co/datasets/lynae-1219/AgentPerfBench/resolve/main/distributional/summary.parquet",
77
  "encodingFormat": "application/x-parquet",
78
  "sha256": "bb9a48351e0b612b3125c5d0a8e200638d790269f821e45aae342a4042bfd951"
79
- },
80
- {
81
- "@type": "cr:FileObject",
82
- "@id": "kernel-profiles-parquet",
83
- "name": "roofline/kernel_profiles.parquet",
84
- "contentUrl": "https://huggingface.co/datasets/lynae-1219/AgentPerfBench/resolve/main/roofline/kernel_profiles.parquet",
85
- "encodingFormat": "application/x-parquet",
86
- "sha256": "109cf3206b6cef47ad033f93db2e943a124c0a5a55e9db7bdf2bdbc9b864290a"
87
  }
88
  ],
89
  "recordSet": [
@@ -225,7 +217,7 @@
225
  "@type": "cr:RecordSet",
226
  "@id": "distributional-summary",
227
  "name": "Distributional Summary",
228
- "description": "One row per benchmark configuration from distributional runs (statistical sampling, shorter to run, MSE-validated against trace replays).",
229
  "field": [
230
  {
231
  "@type": "cr:Field",
@@ -354,90 +346,12 @@
354
  }
355
  }
356
  ]
357
- },
358
- {
359
- "@type": "cr:RecordSet",
360
- "@id": "kernel-profile-data",
361
- "name": "Kernel Profiles",
362
- "description": "Per-kernel CUDA profiling data for roofline analysis.",
363
- "field": [
364
- {
365
- "@type": "cr:Field",
366
- "@id": "kernel-profile-data/model",
367
- "name": "model",
368
- "dataType": "sc:Text",
369
- "source": {
370
- "fileObject": {
371
- "@id": "kernel-profiles-parquet"
372
- },
373
- "extract": {
374
- "column": "model"
375
- }
376
- }
377
- },
378
- {
379
- "@type": "cr:Field",
380
- "@id": "kernel-profile-data/phase",
381
- "name": "phase",
382
- "dataType": "sc:Text",
383
- "source": {
384
- "fileObject": {
385
- "@id": "kernel-profiles-parquet"
386
- },
387
- "extract": {
388
- "column": "phase"
389
- }
390
- }
391
- },
392
- {
393
- "@type": "cr:Field",
394
- "@id": "kernel-profile-data/kernel_name",
395
- "name": "kernel_name",
396
- "dataType": "sc:Text",
397
- "source": {
398
- "fileObject": {
399
- "@id": "kernel-profiles-parquet"
400
- },
401
- "extract": {
402
- "column": "kernel_name"
403
- }
404
- }
405
- },
406
- {
407
- "@type": "cr:Field",
408
- "@id": "kernel-profile-data/arithmetic_intensity",
409
- "name": "arithmetic_intensity",
410
- "dataType": "sc:Float",
411
- "source": {
412
- "fileObject": {
413
- "@id": "kernel-profiles-parquet"
414
- },
415
- "extract": {
416
- "column": "arithmetic_intensity"
417
- }
418
- }
419
- },
420
- {
421
- "@type": "cr:Field",
422
- "@id": "kernel-profile-data/achieved_tflops",
423
- "name": "achieved_tflops",
424
- "dataType": "sc:Float",
425
- "source": {
426
- "fileObject": {
427
- "@id": "kernel-profiles-parquet"
428
- },
429
- "extract": {
430
- "column": "achieved_tflops"
431
- }
432
- }
433
- }
434
- ]
435
  }
436
  ],
437
  "rai:dataLimitations": "Results cover NVIDIA H100, A100, RTX 3090, and RTX 2080 Ti GPUs only and may not generalize to other accelerators (AMD, Intel, TPU). Benchmark configurations are pinned to vLLM 0.19.0 and SGLang 0.5.9; results do not represent other engine versions. Concurrency levels (1-320) may not cover extreme-scale deployments. Not recommended as sole basis for hardware purchasing decisions or for comparing model task quality.",
438
  "rai:dataBiases": "Model selection over-represents Meta Llama and Alibaba Qwen families. Hardware is exclusively NVIDIA GPUs. Workload profiles are author-designed approximations of production traffic; real deployment patterns may differ.",
439
  "rai:personalSensitiveInformation": "No personally identifiable information is present. All API endpoints and credentials are stripped. Workload traces use synthetic random tokens or publicly available coding benchmarks.",
440
- "rai:dataUseCases": "Established uses: relative comparison of inference engine throughput, latency benchmarking under controlled conditions, GPU roofline analysis, studying TTFT degradation under multi-turn context growth. Not established: absolute latency prediction for production, model quality comparison, cost estimation.",
441
  "rai:dataSocialImpact": "Enables reproducible comparison of open-source LLM serving systems, supporting infrastructure research and reducing vendor lock-in.",
442
  "rai:hasSyntheticData": true,
443
  "prov:wasDerivedFrom": [
@@ -457,6 +371,6 @@
457
  "prov:wasGeneratedBy": {
458
  "@type": "prov:Activity",
459
  "name": "AgentPerfBench benchmark collection",
460
- "description": "Deploy model on target GPU with specified engine and tensor parallelism. Send requests per configuration after warmup using closed-loop concurrency control. Record per-request TTFT, TPOT, ITL, E2EL, and token counts. Compute summary percentiles. Sanitize credentials and convert to Parquet."
461
  }
462
  }
 
50
  "@type": "sc:Dataset",
51
  "name": "AgentPerfBench",
52
  "description": "LLM inference benchmark dataset measuring serving performance (TTFT, TPOT, throughput) across 9 models, 4 GPU platforms, 2 serving engines under agentic and chat workloads. Provides two dataset configurations: trace_replay (empirical session replays) and distributional (statistical sampling).",
53
+ "url": "https://huggingface.co/datasets/agent-perf-bench/AgentPerfBench",
54
  "license": "https://spdx.org/licenses/Apache-2.0.html",
55
  "conformsTo": "http://mlcommons.org/croissant/1.1",
56
  "datePublished": "2026-05-04",
 
65
  "@type": "cr:FileObject",
66
  "@id": "trace-replay-summary-parquet",
67
  "name": "trace_replay/summary.parquet",
68
+ "contentUrl": "https://huggingface.co/datasets/agent-perf-bench/AgentPerfBench/resolve/main/trace_replay/summary.parquet",
69
  "encodingFormat": "application/x-parquet",
70
  "sha256": "a9cd2565a9292e75f54791e8108f2491b7bb371fdfeeefb81cdb00833860dd23"
71
  },
 
73
  "@type": "cr:FileObject",
74
  "@id": "distributional-summary-parquet",
75
  "name": "distributional/summary.parquet",
76
+ "contentUrl": "https://huggingface.co/datasets/agent-perf-bench/AgentPerfBench/resolve/main/distributional/summary.parquet",
77
  "encodingFormat": "application/x-parquet",
78
  "sha256": "bb9a48351e0b612b3125c5d0a8e200638d790269f821e45aae342a4042bfd951"
 
 
 
 
 
 
 
 
79
  }
80
  ],
81
  "recordSet": [
 
217
  "@type": "cr:RecordSet",
218
  "@id": "distributional-summary",
219
  "name": "Distributional Summary",
220
+ "description": "One row per benchmark configuration from distributional runs (statistical sampling, validated against trace_replay).",
221
  "field": [
222
  {
223
  "@type": "cr:Field",
 
346
  }
347
  }
348
  ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
  }
350
  ],
351
  "rai:dataLimitations": "Results cover NVIDIA H100, A100, RTX 3090, and RTX 2080 Ti GPUs only and may not generalize to other accelerators (AMD, Intel, TPU). Benchmark configurations are pinned to vLLM 0.19.0 and SGLang 0.5.9; results do not represent other engine versions. Concurrency levels (1-320) may not cover extreme-scale deployments. Not recommended as sole basis for hardware purchasing decisions or for comparing model task quality.",
352
  "rai:dataBiases": "Model selection over-represents Meta Llama and Alibaba Qwen families. Hardware is exclusively NVIDIA GPUs. Workload profiles are author-designed approximations of production traffic; real deployment patterns may differ.",
353
  "rai:personalSensitiveInformation": "No personally identifiable information is present. All API endpoints and credentials are stripped. Workload traces use synthetic random tokens or publicly available coding benchmarks.",
354
+ "rai:dataUseCases": "Established uses: relative comparison of inference engine throughput, latency benchmarking under controlled conditions, GPU roofline analysis, TTFT scaling with context length in multi-turn sessions. Not established: absolute latency prediction for production, model quality comparison, cost estimation.",
355
  "rai:dataSocialImpact": "Enables reproducible comparison of open-source LLM serving systems, supporting infrastructure research and reducing vendor lock-in.",
356
  "rai:hasSyntheticData": true,
357
  "prov:wasDerivedFrom": [
 
371
  "prov:wasGeneratedBy": {
372
  "@type": "prov:Activity",
373
  "name": "AgentPerfBench benchmark collection",
374
+ "description": "Deploy model on target GPU with specified engine and tensor parallelism. Send requests per configuration after warmup using closed-loop concurrency control. Record per-request TTFT, TPOT, ITL, E2EL, and token counts. Compute summary statistics. Sanitize credentials and convert to Parquet."
375
  }
376
  }