lynae-1219 commited on
Commit
69a58a8
·
verified ·
1 Parent(s): f5d55fd

Upload folder using huggingface_hub

Browse files
README.md CHANGED
@@ -10,20 +10,19 @@ tags:
10
  - gpu-profiling
11
  - vllm
12
  - sglang
13
- - roofline
14
  - agentic-workloads
15
  size_categories:
16
  - 1K<n<10K
17
  pretty_name: AgentPerfBench
18
  configs:
19
- - config_name: benchmark_results
20
  data_files:
21
  - split: summary
22
- path: benchmark_results/summary.parquet
23
- - split: per_request
24
- path: benchmark_results/per_request.parquet
25
- - split: multi_turn
26
- path: benchmark_results/multi_turn.parquet
27
  - config_name: roofline
28
  data_files:
29
  - split: kernel_profiles
@@ -32,75 +31,103 @@ configs:
32
 
33
  # AgentPerfBench
34
 
35
- ## Dataset Summary
36
 
37
- AgentPerfBench measures LLM inference serving performance under agentic workloads. The dataset contains benchmark results (TTFT, TPOT, ITL, throughput) across 9 models, 3 GPU platforms, 2 serving engines, and 14+ workload profiles spanning single-turn chat, multi-turn agent sessions, and synthetic stress tests. It also includes per-kernel CUDA profiling data for roofline analysis. Data was collected in April 2026.
38
 
39
- ## Data Description
40
 
41
- ### Parquet Files
42
 
43
- | File | Description | Rows (approx.) |
44
- |------|-------------|-----------------|
45
- | `benchmark_results/summary.parquet` | One row per benchmark configuration (model x hardware x engine x profile x concurrency). Columns: `run_id`, `model`, `hardware`, `engine`, `tensor_parallelism`, `profile`, `concurrency`, plus TTFT/TPOT/ITL/E2EL percentiles and throughput metrics. | 2500-3500 |
46
- | `benchmark_results/per_request.parquet` | Per-request latency data. FK: `run_id` references `summary`. | 150K-200K |
47
- | `benchmark_results/multi_turn.parquet` | Per-turn breakdowns for multi-turn sessions. FK: `run_id` references `summary`. | varies |
48
- | `roofline/kernel_profiles.parquet` | Per-kernel CUDA profiling data from Nsight Compute. One row per kernel invocation. | varies |
49
 
50
- ### Metadata JSONs
51
 
52
- - `metadata/models.json` — model specifications (family, parameters, architecture, license)
53
- - `metadata/hardware.json` — GPU specs (VRAM, bandwidth, peak TFLOPS)
54
- - `metadata/profiles.json` — workload profile definitions (ISL/OSL ranges, source, tier)
55
 
56
- ## Benchmark Methodology
57
 
58
- - **Concurrency model**: Closed-loop with semaphore control. One request admitted per completion.
59
- - **Concurrency sweep**: 1 to 320.
60
- - **Requests per configuration**: 50, with 3-request warmup.
61
- - **Metrics**: TTFT, TPOT (time per output token), ITL (inter-token latency), E2EL (end-to-end latency), request throughput (req/s), token throughput (tok/s).
62
- - **Percentiles**: mean, median, p90, p99.
63
- - **Kernel profiling**: PyTorch profiler on 2-layer forward passes, batch sizes [1, 4, 8, 32, 64].
64
 
65
- ## Models
66
 
67
- | Model | Family | Parameters | Architecture | License |
68
- |-------|--------|-----------|--------------|---------|
69
- | Llama-3.1-8B-Instruct | Llama | 8B | Dense | Llama 3.1 Community |
70
- | Llama-3.1-70B-Instruct | Llama | 70B | Dense | Llama 3.1 Community |
71
- | Llama-3.3-70B-Instruct | Llama | 70B | Dense | Llama 3.3 Community |
72
- | Qwen2.5-72B-Instruct | Qwen | 72B | Dense | Apache 2.0 |
73
- | Qwen3.5-9B | Qwen | 9B | Dense | Apache 2.0 |
74
- | Qwen3.5-27B | Qwen | 27B | Dense | Apache 2.0 |
75
- | gpt-oss-20b | GPT-OSS | 21B (3.6B active) | MoE (32 experts, top-4) | Apache 2.0 |
76
- | gpt-oss-120b | GPT-OSS | 117B (5.1B active) | MoE (128 experts, top-4) | Apache 2.0 |
77
 
78
- ## Hardware
 
 
79
 
80
  | GPU | VRAM | HBM Bandwidth | Peak BF16 TFLOPS |
81
  |-----|------|---------------|------------------|
82
  | NVIDIA H100 SXM | 80 GB | 3.35 TB/s | 989 |
83
  | NVIDIA A100 SXM4 | 40 GB | 1.56 TB/s | 312 |
84
  | NVIDIA RTX 3090 | 24 GB | 936 GB/s | 71 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
 
86
- ## Workload Profiles
87
-
88
- | Profile | Tier | ISL | OSL | Source | Synthetic? |
89
- |---------|------|-----|-----|--------|------------|
90
- | chat-short | 2 (Chat) | 500 | 300 | ShareGPT | No |
91
- | chat-medium | 2 (Chat) | 2000 | 1000 | ShareGPT | No |
92
- | chat-long | 2 (Chat) | 8000 | 2000 | ShareGPT | No |
93
- | coding-agent | 1 (Agentic) | 17000 | 800 | SWE-Bench | No |
94
- | chat-multiturn-short | 2 (Chat MT) | 8192 | 1000 | ShareGPT | No |
95
- | chat-multiturn-medium | 2 (Chat MT) | 16384 | 1500 | ShareGPT | No |
96
- | chat-multiturn-long | 2 (Chat MT) | 32768 | 2000 | ShareGPT | No |
97
- | swebench-multiturn-short | 1 (Agentic MT) | 32768 | 2000 | SWE-Bench | No |
98
- | swebench-multiturn-medium | 1 (Agentic MT) | 65536 | 2000 | SWE-Bench | No |
99
- | terminalbench-multiturn-short | 1 (Agentic MT) | 32768 | 2000 | TerminalBench | No |
100
- | terminalbench-multiturn-medium | 1 (Agentic MT) | 65536 | 2000 | TerminalBench | No |
101
- | decode-heavy | 3 (Synthetic) | 256 | 4096 | Random | Yes |
102
- | prefill-heavy | 3 (Synthetic) | 8192 | 256 | Random | Yes |
103
- | random-1k | 3 (Synthetic) | 1024 | 1024 | Random | Yes |
104
 
105
  ## Intended Uses
106
 
@@ -112,7 +139,7 @@ AgentPerfBench measures LLM inference serving performance under agentic workload
112
  ## Limitations
113
 
114
  - Results are specific to tested hardware and software versions (vLLM 0.19.0, SGLang 0.5.9).
115
- - Synthetic profiles approximate but do not replicate production traffic patterns.
116
  - No consumer GPUs beyond RTX 3090; no non-NVIDIA accelerators.
117
  - Closed-loop concurrency only; open-loop (Poisson arrival) not included.
118
  - No model quality metrics. This is a systems benchmark.
@@ -120,15 +147,15 @@ AgentPerfBench measures LLM inference serving performance under agentic workload
120
  ## Ethical Considerations
121
 
122
  - No PII in the dataset.
123
- - Synthetic profiles use random tokens. Real-trace profiles derive from open benchmarks (SWE-Bench MIT, TerminalBench).
124
  - Benchmark results should not be used as sole basis for hardware purchasing decisions.
125
 
126
  ## Source Datasets
127
 
128
- - [SWE-Bench](https://github.com/princeton-nlp/SWE-bench) (MIT License) — coding agent traces
129
- - [TerminalBench](https://github.com/TerminalBench/TerminalBench) — terminal agent traces
130
- - [ShareGPT (Aeala/ShareGPT_Vicuna_unfiltered)](https://huggingface.co/datasets/Aeala/ShareGPT_Vicuna_unfiltered) — chat baseline prompts (used as input length distribution, not redistributed)
131
- - [OSWorld](https://github.com/xlang-ai/OSWorld) — computer-use agent traces
132
 
133
  ## Citation
134
 
 
10
  - gpu-profiling
11
  - vllm
12
  - sglang
 
13
  - agentic-workloads
14
  size_categories:
15
  - 1K<n<10K
16
  pretty_name: AgentPerfBench
17
  configs:
18
+ - config_name: trace_replay
19
  data_files:
20
  - split: summary
21
+ path: trace_replay/summary.parquet
22
+ - config_name: distributional
23
+ data_files:
24
+ - split: summary
25
+ path: distributional/summary.parquet
26
  - config_name: roofline
27
  data_files:
28
  - split: kernel_profiles
 
31
 
32
  # AgentPerfBench
33
 
34
+ LLM inference benchmark dataset measuring serving performance (TTFT, TPOT, ITL, throughput) across 9 models, 14 GPU configurations, 2 serving engines, and 20+ workload profiles spanning single-turn chat, multi-turn agent sessions, and synthetic stress tests. Includes per-kernel CUDA profiling data for roofline analysis.
35
 
36
+ ## Dataset Configurations
37
 
38
+ This dataset provides two benchmark configurations reflecting distinct data collection methodologies:
39
 
40
+ ### trace_replay
41
 
42
+ Requests replay exact ISL/OSL sequences from recorded agent sessions (SWE-Bench, TerminalBench, OSWorld, ShareGPT). Input distributions are empirically grounded in real tool-use patterns, capturing realistic burstiness and turn-depth correlations.
 
 
 
 
 
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
 
 
47
 
48
+ Requests sample ISL/OSL from parameterized statistical distributions (e.g., lognormal) fitted to real workload statistics. Provides controlled experimental variation while matching aggregate characteristics.
49
 
50
+ Profiles: `chat-multiturn`, `chat-singleturn`, `coding-singleturn`, `osworld-multiturn`, `swebench-multiturn`, `terminalbench-multiturn`
51
+
52
+ ### Why two configurations?
53
+
54
+ **trace_replay** proves relevance: patterns are drawn from real agent sessions, grounding results in observed behavior. **distributional** proves mechanism: controlled statistical sampling isolates the effects of workload parameters from incidental correlations. Together they support both ecological validity and experimental control.
 
55
 
56
+ ### Concurrency filtering
57
 
58
+ Rows where declared concurrency exceeds the session pool size have been excluded. This affects trace_replay data at concurrency > 100 (session pool was 100) and distributional/current data at concurrency > 10 (session pool was 10). Distributional data collected after the fix has no such limitation.
 
 
 
 
 
 
 
 
 
59
 
60
+ ## Coverage
61
+
62
+ ### Hardware
63
 
64
  | GPU | VRAM | HBM Bandwidth | Peak BF16 TFLOPS |
65
  |-----|------|---------------|------------------|
66
  | NVIDIA H100 SXM | 80 GB | 3.35 TB/s | 989 |
67
  | NVIDIA A100 SXM4 | 40 GB | 1.56 TB/s | 312 |
68
  | NVIDIA RTX 3090 | 24 GB | 936 GB/s | 71 |
69
+ | NVIDIA RTX 2080 Ti | 11 GB | 616 GB/s | 27 |
70
+
71
+ Multi-GPU configurations: 1, 2, 4, 8 GPUs with tensor parallelism.
72
+
73
+ ### Models
74
+
75
+ | Model | Family | Parameters | Architecture |
76
+ |-------|--------|-----------|--------------|
77
+ | Llama-3.1-8B-Instruct | Llama | 8B | Dense |
78
+ | Llama-3.1-70B-Instruct | Llama | 70B | Dense |
79
+ | Llama-3.3-70B-Instruct | Llama | 70B | Dense |
80
+ | Qwen2.5-72B-Instruct | Qwen | 72B | Dense |
81
+ | Qwen3.5-9B | Qwen | 9B | Dense |
82
+ | Qwen3.5-27B | Qwen | 27B | Dense |
83
+ | Mixtral-8x7B | Mixtral | 46.7B (12.9B active) | MoE |
84
+ | gpt-oss-20b | GPT-OSS | 21B (3.6B active) | MoE |
85
+ | gpt-oss-120b | GPT-OSS | 117B (5.1B active) | MoE |
86
+
87
+ ### Engines
88
+
89
+ - vLLM 0.19.0
90
+ - SGLang 0.5.9
91
+
92
+ ## Schema
93
+
94
+ Each row in `summary.parquet` (both configs) contains:
95
+
96
+ | Column | Type | Description |
97
+ |--------|------|-------------|
98
+ | run_id | string | Deterministic hash of run parameters |
99
+ | model | string | Model short name |
100
+ | model_family | string | Model family (llama, qwen, gpt-oss, mixtral) |
101
+ | hardware | string | GPU configuration (e.g., H100x4) |
102
+ | engine | string | Serving engine (vllm, sglang) |
103
+ | tensor_parallelism | int | TP degree |
104
+ | profile | string | Workload profile name |
105
+ | concurrency | int | Concurrent request level |
106
+ | num_requests | int | Total requests in run |
107
+ | duration_s | float | Total run duration |
108
+ | successful_requests | int | Completed requests |
109
+ | failed_requests | int | Failed requests |
110
+ | request_throughput | float | Requests/second |
111
+ | input_token_throughput | float | Input tokens/second |
112
+ | output_token_throughput | float | Output tokens/second |
113
+ | total_token_throughput | float | Total tokens/second |
114
+ | mean/median/p90/p99_ttft_ms | float | Time to first token |
115
+ | mean/median/p90/p99_tpot_ms | float | Time per output token |
116
+ | mean/median/p90/p99_itl_ms | float | Inter-token latency |
117
+ | mean/median/p90/p99_e2el_ms | float | End-to-end latency |
118
+
119
+ ## Benchmark Methodology
120
+
121
+ - **Concurrency model**: Closed-loop with semaphore control.
122
+ - **Concurrency sweep**: 1 to 320.
123
+ - **Requests per configuration**: 50-100, with 3-request warmup.
124
+ - **Metrics**: TTFT, TPOT, ITL, E2EL, request throughput, token throughput.
125
+ - **Percentiles**: mean, median, p90, p99.
126
+ - **Kernel profiling** (roofline config): PyTorch profiler on 2-layer forward passes, batch sizes [1, 4, 8, 32, 64].
127
+
128
+ ## Future Releases
129
 
130
+ Per-request and multi-turn granularity data will be added when full result JSON files are available from the collection infrastructure.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
 
132
  ## Intended Uses
133
 
 
139
  ## Limitations
140
 
141
  - Results are specific to tested hardware and software versions (vLLM 0.19.0, SGLang 0.5.9).
142
+ - Distributional profiles approximate but do not replicate exact production traffic patterns.
143
  - No consumer GPUs beyond RTX 3090; no non-NVIDIA accelerators.
144
  - Closed-loop concurrency only; open-loop (Poisson arrival) not included.
145
  - No model quality metrics. This is a systems benchmark.
 
147
  ## Ethical Considerations
148
 
149
  - No PII in the dataset.
150
+ - Synthetic profiles use random tokens. Trace-replay profiles derive from open benchmarks (SWE-Bench MIT, TerminalBench, OSWorld).
151
  - Benchmark results should not be used as sole basis for hardware purchasing decisions.
152
 
153
  ## Source Datasets
154
 
155
+ - [SWE-Bench](https://github.com/princeton-nlp/SWE-bench) (MIT License)
156
+ - [TerminalBench](https://github.com/TerminalBench/TerminalBench)
157
+ - [ShareGPT (Aeala/ShareGPT_Vicuna_unfiltered)](https://huggingface.co/datasets/Aeala/ShareGPT_Vicuna_unfiltered)
158
+ - [OSWorld](https://github.com/xlang-ai/OSWorld)
159
 
160
  ## Citation
161
 
benchmark_results/multi_turn.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b357a1e1a233ab00e0c57e39fd7c7c0be07e4d3c3f1ec3419ed43757afff4a8b
3
+ size 1831697
benchmark_results/per_request.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd4b87d4365983bed1184d5ae024e2d0056f53e45d183f4dd178f673340fc3d5
3
+ size 15337735
benchmark_results/summary.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0123d2758fd1aee6161b36786e5b879f0bae5cf96dad1e51a79fe64035ec9fbd
3
+ size 540814
croissant.json CHANGED
@@ -49,12 +49,12 @@
49
  },
50
  "@type": "sc:Dataset",
51
  "name": "AgentPerfBench",
52
- "description": "LLM inference benchmark dataset measuring serving performance (TTFT, TPOT, throughput) across 9 models, 3 GPU platforms, 2 serving engines under agentic and chat workloads.",
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-03",
57
- "version": "1.0.0",
58
  "citeAs": "@inproceedings{agentperfbench2026, title={AgentPerfBench: A Benchmarking and Evaluation Suite for Inference Performance of Agentic LLMs}, author={Anonymous}, booktitle={NeurIPS 2026 Evaluations and Datasets Track}, year={2026}}",
59
  "creator": {
60
  "@type": "sc:Organization",
@@ -63,32 +63,24 @@
63
  "distribution": [
64
  {
65
  "@type": "cr:FileObject",
66
- "@id": "summary-parquet",
67
- "name": "summary.parquet",
68
- "contentUrl": "https://huggingface.co/datasets/lynae-1219/AgentPerfBench/resolve/main/benchmark_results/summary.parquet",
69
  "encodingFormat": "application/x-parquet",
70
- "sha256": "b59eea237b64b0abe21b9d981e1d5dbb935a970333a091dbeca53a4f9f9c7a5b"
71
  },
72
  {
73
  "@type": "cr:FileObject",
74
- "@id": "per-request-parquet",
75
- "name": "per_request.parquet",
76
- "contentUrl": "https://huggingface.co/datasets/lynae-1219/AgentPerfBench/resolve/main/benchmark_results/per_request.parquet",
77
  "encodingFormat": "application/x-parquet",
78
- "sha256": "fd4b87d4365983bed1184d5ae024e2d0056f53e45d183f4dd178f673340fc3d5"
79
- },
80
- {
81
- "@type": "cr:FileObject",
82
- "@id": "multi-turn-parquet",
83
- "name": "multi_turn.parquet",
84
- "contentUrl": "https://huggingface.co/datasets/lynae-1219/AgentPerfBench/resolve/main/benchmark_results/multi_turn.parquet",
85
- "encodingFormat": "application/x-parquet",
86
- "sha256": "b357a1e1a233ab00e0c57e39fd7c7c0be07e4d3c3f1ec3419ed43757afff4a8b"
87
  },
88
  {
89
  "@type": "cr:FileObject",
90
  "@id": "kernel-profiles-parquet",
91
- "name": "kernel_profiles.parquet",
92
  "contentUrl": "https://huggingface.co/datasets/lynae-1219/AgentPerfBench/resolve/main/roofline/kernel_profiles.parquet",
93
  "encodingFormat": "application/x-parquet",
94
  "sha256": "109cf3206b6cef47ad033f93db2e943a124c0a5a55e9db7bdf2bdbc9b864290a"
@@ -97,18 +89,18 @@
97
  "recordSet": [
98
  {
99
  "@type": "cr:RecordSet",
100
- "@id": "benchmark-summary",
101
- "name": "Benchmark Summary",
102
- "description": "One row per benchmark configuration with aggregated serving metrics.",
103
  "field": [
104
  {
105
  "@type": "cr:Field",
106
- "@id": "benchmark-summary/run_id",
107
  "name": "run_id",
108
  "dataType": "sc:Text",
109
  "source": {
110
  "fileObject": {
111
- "@id": "summary-parquet"
112
  },
113
  "extract": {
114
  "column": "run_id"
@@ -117,12 +109,12 @@
117
  },
118
  {
119
  "@type": "cr:Field",
120
- "@id": "benchmark-summary/model",
121
  "name": "model",
122
  "dataType": "sc:Text",
123
  "source": {
124
  "fileObject": {
125
- "@id": "summary-parquet"
126
  },
127
  "extract": {
128
  "column": "model"
@@ -131,12 +123,12 @@
131
  },
132
  {
133
  "@type": "cr:Field",
134
- "@id": "benchmark-summary/hardware",
135
  "name": "hardware",
136
  "dataType": "sc:Text",
137
  "source": {
138
  "fileObject": {
139
- "@id": "summary-parquet"
140
  },
141
  "extract": {
142
  "column": "hardware"
@@ -145,12 +137,12 @@
145
  },
146
  {
147
  "@type": "cr:Field",
148
- "@id": "benchmark-summary/engine",
149
  "name": "engine",
150
  "dataType": "sc:Text",
151
  "source": {
152
  "fileObject": {
153
- "@id": "summary-parquet"
154
  },
155
  "extract": {
156
  "column": "engine"
@@ -159,12 +151,12 @@
159
  },
160
  {
161
  "@type": "cr:Field",
162
- "@id": "benchmark-summary/profile",
163
  "name": "profile",
164
  "dataType": "sc:Text",
165
  "source": {
166
  "fileObject": {
167
- "@id": "summary-parquet"
168
  },
169
  "extract": {
170
  "column": "profile"
@@ -173,12 +165,12 @@
173
  },
174
  {
175
  "@type": "cr:Field",
176
- "@id": "benchmark-summary/concurrency",
177
  "name": "concurrency",
178
  "dataType": "sc:Integer",
179
  "source": {
180
  "fileObject": {
181
- "@id": "summary-parquet"
182
  },
183
  "extract": {
184
  "column": "concurrency"
@@ -187,43 +179,43 @@
187
  },
188
  {
189
  "@type": "cr:Field",
190
- "@id": "benchmark-summary/median_ttft_ms",
191
- "name": "median_ttft_ms",
192
  "dataType": "sc:Float",
193
  "source": {
194
  "fileObject": {
195
- "@id": "summary-parquet"
196
  },
197
  "extract": {
198
- "column": "median_ttft_ms"
199
  }
200
  }
201
  },
202
  {
203
  "@type": "cr:Field",
204
- "@id": "benchmark-summary/median_tpot_ms",
205
- "name": "median_tpot_ms",
206
  "dataType": "sc:Float",
207
  "source": {
208
  "fileObject": {
209
- "@id": "summary-parquet"
210
  },
211
  "extract": {
212
- "column": "median_tpot_ms"
213
  }
214
  }
215
  },
216
  {
217
  "@type": "cr:Field",
218
- "@id": "benchmark-summary/request_throughput",
219
- "name": "request_throughput",
220
  "dataType": "sc:Float",
221
  "source": {
222
  "fileObject": {
223
- "@id": "summary-parquet"
224
  },
225
  "extract": {
226
- "column": "request_throughput"
227
  }
228
  }
229
  }
@@ -231,18 +223,18 @@
231
  },
232
  {
233
  "@type": "cr:RecordSet",
234
- "@id": "per-request-data",
235
- "name": "Per-Request Latency",
236
- "description": "Individual request latency measurements. Foreign key: run_id references benchmark-summary.",
237
  "field": [
238
  {
239
  "@type": "cr:Field",
240
- "@id": "per-request-data/run_id",
241
  "name": "run_id",
242
  "dataType": "sc:Text",
243
  "source": {
244
  "fileObject": {
245
- "@id": "per-request-parquet"
246
  },
247
  "extract": {
248
  "column": "run_id"
@@ -251,57 +243,113 @@
251
  },
252
  {
253
  "@type": "cr:Field",
254
- "@id": "per-request-data/request_idx",
255
- "name": "request_idx",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
256
  "dataType": "sc:Integer",
257
  "source": {
258
  "fileObject": {
259
- "@id": "per-request-parquet"
260
  },
261
  "extract": {
262
- "column": "request_idx"
263
  }
264
  }
265
  },
266
  {
267
  "@type": "cr:Field",
268
- "@id": "per-request-data/ttft_ms",
269
- "name": "ttft_ms",
270
  "dataType": "sc:Float",
271
  "source": {
272
  "fileObject": {
273
- "@id": "per-request-parquet"
274
  },
275
  "extract": {
276
- "column": "ttft_ms"
277
  }
278
  }
279
  },
280
  {
281
  "@type": "cr:Field",
282
- "@id": "per-request-data/tpot_ms",
283
- "name": "tpot_ms",
284
  "dataType": "sc:Float",
285
  "source": {
286
  "fileObject": {
287
- "@id": "per-request-parquet"
288
  },
289
  "extract": {
290
- "column": "tpot_ms"
291
  }
292
  }
293
  },
294
  {
295
  "@type": "cr:Field",
296
- "@id": "per-request-data/success",
297
- "name": "success",
298
- "dataType": "sc:Boolean",
299
  "source": {
300
  "fileObject": {
301
- "@id": "per-request-parquet"
302
  },
303
  "extract": {
304
- "column": "success"
305
  }
306
  }
307
  }
@@ -386,11 +434,11 @@
386
  ]
387
  }
388
  ],
389
- "rai:dataLimitations": "Results cover NVIDIA H100, A100, and RTX 3090 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.",
390
- "rai:dataBiases": "Model selection over-represents Meta Llama and Alibaba Qwen families. Hardware is exclusively NVIDIA datacenter GPUs. Workload profiles are author-designed approximations of production traffic; real deployment patterns may differ. ShareGPT chat baselines reflect English-language conversations only.",
391
- "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. Raw user conversations from ShareGPT are not included in this dataset.",
392
  "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.",
393
- "rai:dataSocialImpact": "Enables reproducible comparison of open-source LLM serving systems, supporting infrastructure research and reducing vendor lock-in. Could be misused for misleading marketing claims about model or hardware performance without proper context.",
394
  "rai:hasSyntheticData": true,
395
  "prov:wasDerivedFrom": [
396
  {
@@ -400,11 +448,15 @@
400
  {
401
  "@id": "https://github.com/TerminalBench/TerminalBench",
402
  "name": "TerminalBench"
 
 
 
 
403
  }
404
  ],
405
  "prov:wasGeneratedBy": {
406
  "@type": "prov:Activity",
407
  "name": "AgentPerfBench benchmark collection",
408
- "description": "Deploy model on target GPU with specified engine and tensor parallelism. Send 50 requests per configuration after 3-request warmup using closed-loop concurrency control. Record per-request TTFT, TPOT, ITL, E2EL, and token counts. Compute summary percentiles. For roofline data: profile 2 transformer layers using PyTorch profiler. Sanitize credentials and convert to Parquet."
409
  }
410
- }
 
49
  },
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",
57
+ "version": "2.0.0",
58
  "citeAs": "@inproceedings{agentperfbench2026, title={AgentPerfBench: A Benchmarking and Evaluation Suite for Inference Performance of Agentic LLMs}, author={Anonymous}, booktitle={NeurIPS 2026 Evaluations and Datasets Track}, year={2026}}",
59
  "creator": {
60
  "@type": "sc:Organization",
 
63
  "distribution": [
64
  {
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
  },
72
  {
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": "b97f8709d2cc87725697b26e2dbc2c3f6a5db52b7883ea6888e5626c9be25d7b"
 
 
 
 
 
 
 
 
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"
 
89
  "recordSet": [
90
  {
91
  "@type": "cr:RecordSet",
92
+ "@id": "trace-replay-summary",
93
+ "name": "Trace Replay Summary",
94
+ "description": "One row per benchmark configuration from trace replay runs (empirical agent session replays).",
95
  "field": [
96
  {
97
  "@type": "cr:Field",
98
+ "@id": "trace-replay-summary/run_id",
99
  "name": "run_id",
100
  "dataType": "sc:Text",
101
  "source": {
102
  "fileObject": {
103
+ "@id": "trace-replay-summary-parquet"
104
  },
105
  "extract": {
106
  "column": "run_id"
 
109
  },
110
  {
111
  "@type": "cr:Field",
112
+ "@id": "trace-replay-summary/model",
113
  "name": "model",
114
  "dataType": "sc:Text",
115
  "source": {
116
  "fileObject": {
117
+ "@id": "trace-replay-summary-parquet"
118
  },
119
  "extract": {
120
  "column": "model"
 
123
  },
124
  {
125
  "@type": "cr:Field",
126
+ "@id": "trace-replay-summary/hardware",
127
  "name": "hardware",
128
  "dataType": "sc:Text",
129
  "source": {
130
  "fileObject": {
131
+ "@id": "trace-replay-summary-parquet"
132
  },
133
  "extract": {
134
  "column": "hardware"
 
137
  },
138
  {
139
  "@type": "cr:Field",
140
+ "@id": "trace-replay-summary/engine",
141
  "name": "engine",
142
  "dataType": "sc:Text",
143
  "source": {
144
  "fileObject": {
145
+ "@id": "trace-replay-summary-parquet"
146
  },
147
  "extract": {
148
  "column": "engine"
 
151
  },
152
  {
153
  "@type": "cr:Field",
154
+ "@id": "trace-replay-summary/profile",
155
  "name": "profile",
156
  "dataType": "sc:Text",
157
  "source": {
158
  "fileObject": {
159
+ "@id": "trace-replay-summary-parquet"
160
  },
161
  "extract": {
162
  "column": "profile"
 
165
  },
166
  {
167
  "@type": "cr:Field",
168
+ "@id": "trace-replay-summary/concurrency",
169
  "name": "concurrency",
170
  "dataType": "sc:Integer",
171
  "source": {
172
  "fileObject": {
173
+ "@id": "trace-replay-summary-parquet"
174
  },
175
  "extract": {
176
  "column": "concurrency"
 
179
  },
180
  {
181
  "@type": "cr:Field",
182
+ "@id": "trace-replay-summary/request_throughput",
183
+ "name": "request_throughput",
184
  "dataType": "sc:Float",
185
  "source": {
186
  "fileObject": {
187
+ "@id": "trace-replay-summary-parquet"
188
  },
189
  "extract": {
190
+ "column": "request_throughput"
191
  }
192
  }
193
  },
194
  {
195
  "@type": "cr:Field",
196
+ "@id": "trace-replay-summary/median_ttft_ms",
197
+ "name": "median_ttft_ms",
198
  "dataType": "sc:Float",
199
  "source": {
200
  "fileObject": {
201
+ "@id": "trace-replay-summary-parquet"
202
  },
203
  "extract": {
204
+ "column": "median_ttft_ms"
205
  }
206
  }
207
  },
208
  {
209
  "@type": "cr:Field",
210
+ "@id": "trace-replay-summary/median_tpot_ms",
211
+ "name": "median_tpot_ms",
212
  "dataType": "sc:Float",
213
  "source": {
214
  "fileObject": {
215
+ "@id": "trace-replay-summary-parquet"
216
  },
217
  "extract": {
218
+ "column": "median_tpot_ms"
219
  }
220
  }
221
  }
 
223
  },
224
  {
225
  "@type": "cr:RecordSet",
226
+ "@id": "distributional-summary",
227
+ "name": "Distributional Summary",
228
+ "description": "One row per benchmark configuration from distributional runs (statistical sampling from fitted distributions).",
229
  "field": [
230
  {
231
  "@type": "cr:Field",
232
+ "@id": "distributional-summary/run_id",
233
  "name": "run_id",
234
  "dataType": "sc:Text",
235
  "source": {
236
  "fileObject": {
237
+ "@id": "distributional-summary-parquet"
238
  },
239
  "extract": {
240
  "column": "run_id"
 
243
  },
244
  {
245
  "@type": "cr:Field",
246
+ "@id": "distributional-summary/model",
247
+ "name": "model",
248
+ "dataType": "sc:Text",
249
+ "source": {
250
+ "fileObject": {
251
+ "@id": "distributional-summary-parquet"
252
+ },
253
+ "extract": {
254
+ "column": "model"
255
+ }
256
+ }
257
+ },
258
+ {
259
+ "@type": "cr:Field",
260
+ "@id": "distributional-summary/hardware",
261
+ "name": "hardware",
262
+ "dataType": "sc:Text",
263
+ "source": {
264
+ "fileObject": {
265
+ "@id": "distributional-summary-parquet"
266
+ },
267
+ "extract": {
268
+ "column": "hardware"
269
+ }
270
+ }
271
+ },
272
+ {
273
+ "@type": "cr:Field",
274
+ "@id": "distributional-summary/engine",
275
+ "name": "engine",
276
+ "dataType": "sc:Text",
277
+ "source": {
278
+ "fileObject": {
279
+ "@id": "distributional-summary-parquet"
280
+ },
281
+ "extract": {
282
+ "column": "engine"
283
+ }
284
+ }
285
+ },
286
+ {
287
+ "@type": "cr:Field",
288
+ "@id": "distributional-summary/profile",
289
+ "name": "profile",
290
+ "dataType": "sc:Text",
291
+ "source": {
292
+ "fileObject": {
293
+ "@id": "distributional-summary-parquet"
294
+ },
295
+ "extract": {
296
+ "column": "profile"
297
+ }
298
+ }
299
+ },
300
+ {
301
+ "@type": "cr:Field",
302
+ "@id": "distributional-summary/concurrency",
303
+ "name": "concurrency",
304
  "dataType": "sc:Integer",
305
  "source": {
306
  "fileObject": {
307
+ "@id": "distributional-summary-parquet"
308
  },
309
  "extract": {
310
+ "column": "concurrency"
311
  }
312
  }
313
  },
314
  {
315
  "@type": "cr:Field",
316
+ "@id": "distributional-summary/request_throughput",
317
+ "name": "request_throughput",
318
  "dataType": "sc:Float",
319
  "source": {
320
  "fileObject": {
321
+ "@id": "distributional-summary-parquet"
322
  },
323
  "extract": {
324
+ "column": "request_throughput"
325
  }
326
  }
327
  },
328
  {
329
  "@type": "cr:Field",
330
+ "@id": "distributional-summary/median_ttft_ms",
331
+ "name": "median_ttft_ms",
332
  "dataType": "sc:Float",
333
  "source": {
334
  "fileObject": {
335
+ "@id": "distributional-summary-parquet"
336
  },
337
  "extract": {
338
+ "column": "median_ttft_ms"
339
  }
340
  }
341
  },
342
  {
343
  "@type": "cr:Field",
344
+ "@id": "distributional-summary/median_tpot_ms",
345
+ "name": "median_tpot_ms",
346
+ "dataType": "sc:Float",
347
  "source": {
348
  "fileObject": {
349
+ "@id": "distributional-summary-parquet"
350
  },
351
  "extract": {
352
+ "column": "median_tpot_ms"
353
  }
354
  }
355
  }
 
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": [
444
  {
 
448
  {
449
  "@id": "https://github.com/TerminalBench/TerminalBench",
450
  "name": "TerminalBench"
451
+ },
452
+ {
453
+ "@id": "https://github.com/xlang-ai/OSWorld",
454
+ "name": "OSWorld"
455
  }
456
  ],
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
+ }
distributional/summary.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b97f8709d2cc87725697b26e2dbc2c3f6a5db52b7883ea6888e5626c9be25d7b
3
+ size 50325
trace_replay/summary.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9cd2565a9292e75f54791e8108f2491b7bb371fdfeeefb81cdb00833860dd23
3
+ size 694254