Expose layer_roofline as loadable dataset config

#7
Files changed (2) hide show
  1. README.md +97 -4
  2. layer_roofline/summary.parquet +3 -0
README.md CHANGED
@@ -32,6 +32,10 @@ configs:
32
  data_files:
33
  - split: summary
34
  path: mse_validation/summary.parquet
 
 
 
 
35
  dataset_info:
36
  - config_name: trace_replay
37
  features:
@@ -328,15 +332,97 @@ dataset_info:
328
  - name: summary
329
  num_examples: 28
330
  num_bytes: 40940
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
  ---
332
 
333
  # AgentPerfBench
334
 
335
- LLM inference benchmark: 3,392 main sweep rows measuring TTFT, TPOT, ITL, and throughput 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. The dataset also includes 148,077 per-kernel NCU profiles and 28 curated MSE validation rows for the distributional synthetic replay generator.
336
 
337
  ## Dataset configurations
338
 
339
- The dataset provides four configurations. `trace_replay` replays exact input/output sequences from recorded agent sessions. `synthetic_distributional` samples from statistical distributions fitted to those same workloads, trading fidelity for faster sweeps across the hardware matrix. `kernels_labeled` contains per-kernel Nsight Compute labels. `mse_validation` contains paired synthetic-vs-real validation runs and ablations for the final APC-aware synthetic generator.
340
 
341
  ### trace_replay (3,147 rows)
342
 
@@ -369,6 +455,12 @@ The headline SWE-bench C=5 source-locked cascade is:
369
 
370
  See `mse_validation/README.md`, `mse_validation/manifest.csv`, and `mse_validation/fidelity_deltas.csv` for the filtering rule and raw JSON pointers.
371
 
 
 
 
 
 
 
372
  ### Concurrency filtering
373
 
374
  The benchmark harness capped actual concurrent connections at the session pool size. Rows where declared concurrency exceeded the pool were excluded:
@@ -381,6 +473,7 @@ The benchmark harness capped actual concurrent connections at the session pool s
381
  | trace_replay | 3,147 |
382
  | synthetic_distributional | 245 |
383
  | mse_validation | 28 |
 
384
  | kernels_labeled | 148,077 |
385
 
386
  ### Failed requests
@@ -458,7 +551,7 @@ Each row in the serving `summary.parquet` configs:
458
  from datasets import load_dataset
459
 
460
  ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
461
- # or "synthetic_distributional", "kernels_labeled", "mse_validation"
462
  ```
463
 
464
  ## Benchmark methodology
@@ -474,7 +567,7 @@ ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
474
  ## Future releases
475
 
476
  - Full per-request and multi-turn granularity data for the main sweep (pending raw JSON availability from collection infrastructure). Curated raw JSONs are included for `mse_validation`.
477
- - Additional per-kernel roofline profiles beyond the included `kernels_labeled` and `per_layer_oi_cf` artifacts.
478
  - This is version 1.0. Updates will be tagged with semantic versions.
479
 
480
  ## Intended uses
 
32
  data_files:
33
  - split: summary
34
  path: mse_validation/summary.parquet
35
+ - config_name: layer_roofline
36
+ data_files:
37
+ - split: summary
38
+ path: layer_roofline/summary.parquet
39
  dataset_info:
40
  - config_name: trace_replay
41
  features:
 
332
  - name: summary
333
  num_examples: 28
334
  num_bytes: 40940
335
+ - config_name: layer_roofline
336
+ features:
337
+ - name: record_type
338
+ dtype: string
339
+ - name: source_file
340
+ dtype: string
341
+ - name: model
342
+ dtype: string
343
+ - name: hardware
344
+ dtype: string
345
+ - name: engine
346
+ dtype: string
347
+ - name: dtype
348
+ dtype: string
349
+ - name: tensor_parallelism
350
+ dtype: int64
351
+ - name: phase
352
+ dtype: string
353
+ - name: batch_size
354
+ dtype: int64
355
+ - name: sequence_length
356
+ dtype: int64
357
+ - name: q_len
358
+ dtype: int64
359
+ - name: kv_len
360
+ dtype: int64
361
+ - name: component_name
362
+ dtype: string
363
+ - name: component_bound
364
+ dtype: string
365
+ - name: flops
366
+ dtype: float64
367
+ - name: bytes
368
+ dtype: float64
369
+ - name: operational_intensity_flop_per_byte
370
+ dtype: float64
371
+ - name: ridge_point_flop_per_byte
372
+ dtype: float64
373
+ - name: total_flops
374
+ dtype: float64
375
+ - name: total_bytes
376
+ dtype: float64
377
+ - name: overall_bound
378
+ dtype: string
379
+ - name: kernel_id
380
+ dtype: int64
381
+ - name: kernel_name
382
+ dtype: string
383
+ - name: block_size
384
+ dtype: string
385
+ - name: grid_size
386
+ dtype: string
387
+ - name: duration_us
388
+ dtype: float64
389
+ - name: compute_sm_throughput_pct
390
+ dtype: float64
391
+ - name: dram_throughput_pct
392
+ dtype: float64
393
+ - name: memory_throughput_pct
394
+ dtype: float64
395
+ - name: l1_tex_cache_throughput_pct
396
+ dtype: float64
397
+ - name: l2_cache_throughput_pct
398
+ dtype: float64
399
+ - name: sm_frequency_ghz
400
+ dtype: float64
401
+ - name: dram_frequency_ghz
402
+ dtype: float64
403
+ - name: artifact_path
404
+ dtype: string
405
+ - name: artifact_kind
406
+ dtype: string
407
+ - name: artifact_bytes
408
+ dtype: int64
409
+ - name: artifact_description
410
+ dtype: string
411
+ - name: notes
412
+ dtype: string
413
+ splits:
414
+ - name: summary
415
+ num_examples: 56
416
+ num_bytes: 27430
417
  ---
418
 
419
  # AgentPerfBench
420
 
421
+ LLM inference benchmark: 3,392 main sweep rows measuring TTFT, TPOT, ITL, and throughput 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. The dataset also includes 148,077 per-kernel NCU profiles, 28 curated MSE validation rows for the distributional synthetic replay generator, and 56 layer-roofline validation rows.
422
 
423
  ## Dataset configurations
424
 
425
+ The dataset provides five configurations. `trace_replay` replays exact input/output sequences from recorded agent sessions. `synthetic_distributional` samples from statistical distributions fitted to those same workloads, trading fidelity for faster sweeps across the hardware matrix. `kernels_labeled` contains per-kernel Nsight Compute labels. `mse_validation` contains paired synthetic-vs-real validation runs and ablations for the final APC-aware synthetic generator. `layer_roofline` exposes the per-layer roofline validation artifacts as a loadable tabular subset.
426
 
427
  ### trace_replay (3,147 rows)
428
 
 
455
 
456
  See `mse_validation/README.md`, `mse_validation/manifest.csv`, and `mse_validation/fidelity_deltas.csv` for the filtering rule and raw JSON pointers.
457
 
458
+ ### layer_roofline (56 rows)
459
+
460
+ Tabular view over the per-layer roofline evidence for Llama-3.1-8B on H100. This subset combines analytical component OI rows, selected NCU kernel summary rows, and an artifact manifest pointing to the raw `per_layer_oi_cf/` evidence files.
461
+
462
+ Record types: `analytical_total`, `analytical_component`, `ncu_kernel`, `artifact`.
463
+
464
  ### Concurrency filtering
465
 
466
  The benchmark harness capped actual concurrent connections at the session pool size. Rows where declared concurrency exceeded the pool were excluded:
 
473
  | trace_replay | 3,147 |
474
  | synthetic_distributional | 245 |
475
  | mse_validation | 28 |
476
+ | layer_roofline | 56 |
477
  | kernels_labeled | 148,077 |
478
 
479
  ### Failed requests
 
551
  from datasets import load_dataset
552
 
553
  ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
554
+ # or "synthetic_distributional", "kernels_labeled", "mse_validation", "layer_roofline"
555
  ```
556
 
557
  ## Benchmark methodology
 
567
  ## Future releases
568
 
569
  - Full per-request and multi-turn granularity data for the main sweep (pending raw JSON availability from collection infrastructure). Curated raw JSONs are included for `mse_validation`.
570
+ - Additional per-kernel roofline profiles beyond the included `kernels_labeled`, `layer_roofline`, and raw `per_layer_oi_cf` artifacts.
571
  - This is version 1.0. Updates will be tagged with semantic versions.
572
 
573
  ## Intended uses
layer_roofline/summary.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f57b62366d8dd0c2eda436f1d559257f409acf47bbf52531b538de767cebd19
3
+ size 27430