Datasets:
Add kernel profiles (148k rows), workload traces, serving predictions, roofline quadrant data
Browse files
README.md
CHANGED
|
@@ -12,7 +12,7 @@ tags:
|
|
| 12 |
- sglang
|
| 13 |
- agentic-workloads
|
| 14 |
size_categories:
|
| 15 |
-
-
|
| 16 |
pretty_name: AgentPerfBench
|
| 17 |
version: "1.0"
|
| 18 |
configs:
|
|
@@ -24,6 +24,22 @@ configs:
|
|
| 24 |
data_files:
|
| 25 |
- split: summary
|
| 26 |
path: distributional/summary.parquet
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
dataset_info:
|
| 28 |
- config_name: trace_replay
|
| 29 |
features:
|
|
@@ -169,11 +185,11 @@ dataset_info:
|
|
| 169 |
|
| 170 |
# AgentPerfBench
|
| 171 |
|
| 172 |
-
LLM inference benchmark: 3,392 runs
|
| 173 |
|
| 174 |
## Dataset configurations
|
| 175 |
|
| 176 |
-
|
| 177 |
|
| 178 |
### trace_replay (3,147 rows)
|
| 179 |
|
|
@@ -187,6 +203,26 @@ Samples ISL/OSL from lognormal distributions fitted to real workload statistics.
|
|
| 187 |
|
| 188 |
6 profiles: `chat-multiturn`, `chat-singleturn`, `coding-singleturn`, `osworld-multiturn`, `swebench-multiturn`, `terminalbench-multiturn`
|
| 189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 190 |
### Concurrency filtering
|
| 191 |
|
| 192 |
The benchmark harness capped actual concurrent connections at the session pool size. Rows where declared concurrency exceeded the pool were excluded:
|
|
@@ -274,8 +310,9 @@ Each row in `summary.parquet` (both configs):
|
|
| 274 |
```python
|
| 275 |
from datasets import load_dataset
|
| 276 |
|
|
|
|
| 277 |
ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
|
| 278 |
-
# or "distributional"
|
| 279 |
```
|
| 280 |
|
| 281 |
## Benchmark methodology
|
|
@@ -291,7 +328,7 @@ ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
|
|
| 291 |
## Future releases
|
| 292 |
|
| 293 |
- Per-request and multi-turn granularity data (pending raw JSON availability from collection infrastructure).
|
| 294 |
-
-
|
| 295 |
- This is version 1.0. Updates will be tagged with semantic versions.
|
| 296 |
|
| 297 |
## Intended uses
|
|
|
|
| 12 |
- sglang
|
| 13 |
- agentic-workloads
|
| 14 |
size_categories:
|
| 15 |
+
- 100K<n<1M
|
| 16 |
pretty_name: AgentPerfBench
|
| 17 |
version: "1.0"
|
| 18 |
configs:
|
|
|
|
| 24 |
data_files:
|
| 25 |
- split: summary
|
| 26 |
path: distributional/summary.parquet
|
| 27 |
+
- config_name: kernel_profiles
|
| 28 |
+
data_files:
|
| 29 |
+
- split: kernels_labeled
|
| 30 |
+
path: kernel_profiles/kernels_labeled.parquet
|
| 31 |
+
- split: roofline_quadrant
|
| 32 |
+
path: kernel_profiles/roofline_quadrant.parquet
|
| 33 |
+
- config_name: workload_traces
|
| 34 |
+
data_files:
|
| 35 |
+
- split: coding_agent_prompts
|
| 36 |
+
path: workload_traces/coding_agent_prompts.parquet
|
| 37 |
+
- split: osworld_trajectories
|
| 38 |
+
path: workload_traces/osworld_trajectories.parquet
|
| 39 |
+
- config_name: predictions
|
| 40 |
+
data_files:
|
| 41 |
+
- split: serving_predictions
|
| 42 |
+
path: predictions/serving_predictions.parquet
|
| 43 |
dataset_info:
|
| 44 |
- config_name: trace_replay
|
| 45 |
features:
|
|
|
|
| 185 |
|
| 186 |
# AgentPerfBench
|
| 187 |
|
| 188 |
+
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.
|
| 189 |
|
| 190 |
## Dataset configurations
|
| 191 |
|
| 192 |
+
Five configurations covering serving benchmarks, kernel profiling, workload traces, and latency predictions.
|
| 193 |
|
| 194 |
### trace_replay (3,147 rows)
|
| 195 |
|
|
|
|
| 203 |
|
| 204 |
6 profiles: `chat-multiturn`, `chat-singleturn`, `coding-singleturn`, `osworld-multiturn`, `swebench-multiturn`, `terminalbench-multiturn`
|
| 205 |
|
| 206 |
+
### kernel_profiles (148,077 + 2,163 rows)
|
| 207 |
+
|
| 208 |
+
Per-kernel CUDA profiling data from NCU (Nsight Compute). Two splits:
|
| 209 |
+
|
| 210 |
+
- **kernels_labeled** (148,077 rows): 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.
|
| 211 |
+
- **roofline_quadrant** (2,163 rows): Operational intensity and achieved throughput per kernel, for roofline analysis. H100 reference hardware (989 peak TFLOPS, 3.35 TB/s HBM).
|
| 212 |
+
|
| 213 |
+
### workload_traces (500 + 60 rows)
|
| 214 |
+
|
| 215 |
+
Raw agent session recordings used to derive the trace_replay profiles.
|
| 216 |
+
|
| 217 |
+
- **coding_agent_prompts** (500 rows): System/user prompt pairs with output token counts from SWE-Bench coding agent sessions.
|
| 218 |
+
- **osworld_trajectories** (60 rows): Multi-turn OSWorld sessions with per-turn action/observation data (up to 30 turns per session).
|
| 219 |
+
|
| 220 |
+
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.
|
| 221 |
+
|
| 222 |
+
### predictions (4,715 rows)
|
| 223 |
+
|
| 224 |
+
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.
|
| 225 |
+
|
| 226 |
### Concurrency filtering
|
| 227 |
|
| 228 |
The benchmark harness capped actual concurrent connections at the session pool size. Rows where declared concurrency exceeded the pool were excluded:
|
|
|
|
| 310 |
```python
|
| 311 |
from datasets import load_dataset
|
| 312 |
|
| 313 |
+
# Serving benchmark results
|
| 314 |
ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
|
| 315 |
+
# or "distributional", "kernel_profiles", "workload_traces", "predictions"
|
| 316 |
```
|
| 317 |
|
| 318 |
## Benchmark methodology
|
|
|
|
| 328 |
## Future releases
|
| 329 |
|
| 330 |
- Per-request and multi-turn granularity data (pending raw JSON availability from collection infrastructure).
|
| 331 |
+
- SWE-Bench (1.6 GB) and TerminalBench (1.9 GB) trajectory files.
|
| 332 |
- This is version 1.0. Updates will be tagged with semantic versions.
|
| 333 |
|
| 334 |
## Intended uses
|
kernel_profiles/kernels_labeled.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3158723dcd2840b2c0080dbfc4d91e8004d7629743b679c9f970564099eb3649
|
| 3 |
+
size 656666
|
kernel_profiles/roofline_quadrant.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b3b06c80f99a3d771dac29e0e329678d2c966ad691959a12b504098e8076478b
|
| 3 |
+
size 64944
|
predictions/serving_predictions.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11041092d91db7a96816bb61ebb092987dab5bfa2f7ae437b220d5131245b051
|
| 3 |
+
size 3186089
|
workload_traces/coding_agent_prompts.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0de8f6b528531b69edb19099a6afd3d66f47195fa5dc8108f91943a187beedd
|
| 3 |
+
size 390896
|
workload_traces/osworld_trajectories.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dbe88d7d9e4bea71468c6732ff93c519a201deb2f456b6452eaf5fae5510aa16
|
| 3 |
+
size 3443036
|