Datasets:
Remove workload trace configs from dataset card
Browse files
README.md
CHANGED
|
@@ -32,14 +32,6 @@ configs:
|
|
| 32 |
data_files:
|
| 33 |
- split: train
|
| 34 |
path: kernel_profiles/roofline_quadrant.parquet
|
| 35 |
-
- config_name: coding_agent_prompts
|
| 36 |
-
data_files:
|
| 37 |
-
- split: train
|
| 38 |
-
path: workload_traces/coding_agent_prompts.parquet
|
| 39 |
-
- config_name: osworld_trajectories
|
| 40 |
-
data_files:
|
| 41 |
-
- split: train
|
| 42 |
-
path: workload_traces/osworld_trajectories.parquet
|
| 43 |
- config_name: predictions
|
| 44 |
data_files:
|
| 45 |
- split: train
|
|
@@ -259,32 +251,6 @@ dataset_info:
|
|
| 259 |
splits:
|
| 260 |
- name: train
|
| 261 |
num_examples: 2163
|
| 262 |
-
- config_name: coding_agent_prompts
|
| 263 |
-
features:
|
| 264 |
-
- name: system
|
| 265 |
-
dtype: string
|
| 266 |
-
- name: user
|
| 267 |
-
dtype: string
|
| 268 |
-
- name: osl_tokens
|
| 269 |
-
dtype: int64
|
| 270 |
-
splits:
|
| 271 |
-
- name: train
|
| 272 |
-
num_examples: 500
|
| 273 |
-
- config_name: osworld_trajectories
|
| 274 |
-
features:
|
| 275 |
-
- name: session_id
|
| 276 |
-
dtype: string
|
| 277 |
-
- name: source
|
| 278 |
-
dtype: string
|
| 279 |
-
- name: num_turns
|
| 280 |
-
dtype: int64
|
| 281 |
-
- name: turns
|
| 282 |
-
dtype: string
|
| 283 |
-
- name: run
|
| 284 |
-
dtype: string
|
| 285 |
-
splits:
|
| 286 |
-
- name: train
|
| 287 |
-
num_examples: 60
|
| 288 |
- config_name: predictions
|
| 289 |
features:
|
| 290 |
- name: hardware_config
|
|
@@ -374,11 +340,11 @@ dataset_info:
|
|
| 374 |
|
| 375 |
# AgentPerfBench
|
| 376 |
|
| 377 |
-
LLM inference benchmark: 3,392 serving runs, 148,077 per-kernel CUDA profiles, 4,715 latency predictions
|
| 378 |
|
| 379 |
## Dataset configurations
|
| 380 |
|
| 381 |
-
|
| 382 |
|
| 383 |
### trace_replay (3,147 rows)
|
| 384 |
|
|
@@ -400,16 +366,6 @@ Per-kernel CUDA profiling data from NCU (Nsight Compute). Individual kernel invo
|
|
| 400 |
|
| 401 |
Operational intensity and achieved throughput per kernel, for roofline analysis. H100 reference hardware (989 peak TFLOPS, 3.35 TB/s HBM).
|
| 402 |
|
| 403 |
-
### coding_agent_prompts (500 rows)
|
| 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 |
-
|
| 411 |
-
Multi-turn OSWorld sessions with per-turn action/observation data (up to 30 turns per session). Used to derive the trace_replay profiles.
|
| 412 |
-
|
| 413 |
### predictions (4,715 rows)
|
| 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.
|
|
@@ -496,8 +452,7 @@ from datasets import load_dataset
|
|
| 496 |
|
| 497 |
# Serving benchmark results
|
| 498 |
ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
|
| 499 |
-
# or "distributional", "kernels_labeled", "roofline_quadrant",
|
| 500 |
-
# "coding_agent_prompts", "osworld_trajectories", "predictions"
|
| 501 |
```
|
| 502 |
|
| 503 |
## Benchmark methodology
|
|
|
|
| 32 |
data_files:
|
| 33 |
- split: train
|
| 34 |
path: kernel_profiles/roofline_quadrant.parquet
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
- config_name: predictions
|
| 36 |
data_files:
|
| 37 |
- split: train
|
|
|
|
| 251 |
splits:
|
| 252 |
- name: train
|
| 253 |
num_examples: 2163
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 254 |
- config_name: predictions
|
| 255 |
features:
|
| 256 |
- name: hardware_config
|
|
|
|
| 340 |
|
| 341 |
# AgentPerfBench
|
| 342 |
|
| 343 |
+
LLM inference benchmark: 3,392 serving runs, 148,077 per-kernel CUDA profiles, and 4,715 latency predictions 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.
|
| 344 |
|
| 345 |
## Dataset configurations
|
| 346 |
|
| 347 |
+
Five configurations covering serving benchmarks, kernel profiling, and latency predictions.
|
| 348 |
|
| 349 |
### trace_replay (3,147 rows)
|
| 350 |
|
|
|
|
| 366 |
|
| 367 |
Operational intensity and achieved throughput per kernel, for roofline analysis. H100 reference hardware (989 peak TFLOPS, 3.35 TB/s HBM).
|
| 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.
|
|
|
|
| 452 |
|
| 453 |
# Serving benchmark results
|
| 454 |
ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
|
| 455 |
+
# or "distributional", "kernels_labeled", "roofline_quadrant", "predictions"
|
|
|
|
| 456 |
```
|
| 457 |
|
| 458 |
## Benchmark methodology
|