lynae-1219 commited on
Commit
50cee81
·
verified ·
1 Parent(s): 5dc7f77

Split multi-schema configs into individual configs (5 -> 7) for datasets lib compat

Browse files
Files changed (1) hide show
  1. README.md +119 -24
README.md CHANGED
@@ -24,21 +24,25 @@ 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
@@ -181,17 +185,105 @@ dataset_info:
181
  - name: summary
182
  num_examples: 245
183
  num_bytes: 70836
184
- - config_name: kernel_profiles
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
  splits:
186
- - name: kernels_labeled
187
  num_examples: 148077
188
- - name: roofline_quadrant
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189
  num_examples: 2163
190
- - config_name: workload_traces
 
 
 
 
 
 
 
191
  splits:
192
- - name: coding_agent_prompts
193
  num_examples: 500
194
- - name: osworld_trajectories
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  num_examples: 60
196
  - config_name: predictions
197
  features:
@@ -276,7 +368,7 @@ dataset_info:
276
  - name: measurement_semantics_warning
277
  dtype: string
278
  splits:
279
- - name: serving_predictions
280
  num_examples: 4715
281
  ---
282
 
@@ -286,7 +378,7 @@ LLM inference benchmark: 3,392 serving runs, 148,077 per-kernel CUDA profiles, 4
286
 
287
  ## Dataset configurations
288
 
289
- Five configurations covering serving benchmarks, kernel profiling, workload traces, and latency predictions.
290
 
291
  ### trace_replay (3,147 rows)
292
 
@@ -300,22 +392,24 @@ Samples ISL/OSL from lognormal distributions fitted to real workload statistics.
300
 
301
  6 profiles: `chat-multiturn`, `chat-singleturn`, `coding-singleturn`, `osworld-multiturn`, `swebench-multiturn`, `terminalbench-multiturn`
302
 
303
- ### kernel_profiles (148,077 + 2,163 rows)
304
 
305
- Per-kernel CUDA profiling data from NCU (Nsight Compute). Two splits:
306
 
307
- - **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.
308
- - **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).
309
 
310
- ### workload_traces (500 + 60 rows)
311
 
312
- Raw agent session recordings used to derive the trace_replay profiles.
313
 
314
- - **coding_agent_prompts** (500 rows): System/user prompt pairs with output token counts from SWE-Bench coding agent sessions.
315
- - **osworld_trajectories** (60 rows): Multi-turn OSWorld sessions with per-turn action/observation data (up to 30 turns per session).
316
 
317
  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.
318
 
 
 
 
 
319
  ### predictions (4,715 rows)
320
 
321
  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.
@@ -409,7 +503,8 @@ from datasets import load_dataset
409
 
410
  # Serving benchmark results
411
  ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
412
- # or "distributional", "kernel_profiles", "workload_traces", "predictions"
 
413
  ```
414
 
415
  ## Benchmark methodology
 
24
  data_files:
25
  - split: summary
26
  path: distributional/summary.parquet
27
+ - config_name: kernels_labeled
28
  data_files:
29
+ - split: train
30
  path: kernel_profiles/kernels_labeled.parquet
31
+ - config_name: roofline_quadrant
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
46
  path: predictions/serving_predictions.parquet
47
  dataset_info:
48
  - config_name: trace_replay
 
185
  - name: summary
186
  num_examples: 245
187
  num_bytes: 70836
188
+ - config_name: kernels_labeled
189
+ features:
190
+ - name: source
191
+ dtype: string
192
+ - name: gpu
193
+ dtype: string
194
+ - name: model
195
+ dtype: string
196
+ - name: kernel_family
197
+ dtype: string
198
+ - name: kernel_name
199
+ dtype: string
200
+ - name: dtype
201
+ dtype: string
202
+ - name: held_out
203
+ dtype: bool
204
+ - name: M
205
+ dtype: float64
206
+ - name: N
207
+ dtype: float64
208
+ - name: K
209
+ dtype: float64
210
+ - name: bs
211
+ dtype: float64
212
+ - name: seq
213
+ dtype: float64
214
+ - name: n_heads
215
+ dtype: float64
216
+ - name: head_dim
217
+ dtype: float64
218
+ - name: kv_heads
219
+ dtype: float64
220
+ - name: numel
221
+ dtype: float64
222
+ - name: op_type
223
+ dtype: string
224
+ - name: gpu_time_duration_ms
225
+ dtype: float64
226
+ - name: launch_block_size
227
+ dtype: float64
228
+ - name: launch_grid_size
229
+ dtype: float64
230
+ - name: dram_bytes_sum
231
+ dtype: float64
232
+ - name: launch_registers_per_thread
233
+ dtype: float64
234
  splits:
235
+ - name: train
236
  num_examples: 148077
237
+ - config_name: roofline_quadrant
238
+ features:
239
+ - name: model
240
+ dtype: string
241
+ - name: profile
242
+ dtype: string
243
+ - name: concurrency
244
+ dtype: int64
245
+ - name: engine
246
+ dtype: string
247
+ - name: hardware
248
+ dtype: string
249
+ - name: oi
250
+ dtype: float64
251
+ - name: cf_gb
252
+ dtype: float64
253
+ - name: output_tput
254
+ dtype: float64
255
+ - name: tpot_ms
256
+ dtype: float64
257
+ - name: ttft_ms
258
+ dtype: float64
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:
 
368
  - name: measurement_semantics_warning
369
  dtype: string
370
  splits:
371
+ - name: train
372
  num_examples: 4715
373
  ---
374
 
 
378
 
379
  ## Dataset configurations
380
 
381
+ Seven configurations covering serving benchmarks, kernel profiling, workload traces, and latency predictions.
382
 
383
  ### trace_replay (3,147 rows)
384
 
 
392
 
393
  6 profiles: `chat-multiturn`, `chat-singleturn`, `coding-singleturn`, `osworld-multiturn`, `swebench-multiturn`, `terminalbench-multiturn`
394
 
395
+ ### kernels_labeled (148,077 rows)
396
 
397
+ 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.
398
 
399
+ ### roofline_quadrant (2,163 rows)
 
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
  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.
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.
 
503
 
504
  # Serving benchmark results
505
  ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
506
+ # or "distributional", "kernels_labeled", "roofline_quadrant",
507
+ # "coding_agent_prompts", "osworld_trajectories", "predictions"
508
  ```
509
 
510
  ## Benchmark methodology