Datasets:
Upload folder using huggingface_hub
Browse files- README.md +142 -0
- benchmark_results/multi_turn.parquet +3 -0
- benchmark_results/per_request.parquet +3 -0
- benchmark_results/summary.parquet +3 -0
- croissant.json +410 -0
- metadata/hardware.json +5 -0
- metadata/models.json +11 -0
- metadata/profiles.json +24 -0
- roofline/kernel_profiles.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,142 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- tabular-regression
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- llm-inference
|
| 9 |
+
- benchmarking
|
| 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
|
| 30 |
+
path: roofline/kernel_profiles.parquet
|
| 31 |
+
---
|
| 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 |
+
|
| 107 |
+
- Comparing inference engine performance under controlled conditions.
|
| 108 |
+
- Capacity planning for agentic LLM deployments.
|
| 109 |
+
- Roofline analysis of GPU utilization under different workload regimes.
|
| 110 |
+
- Studying TTFT degradation under multi-turn context accumulation.
|
| 111 |
+
|
| 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.
|
| 119 |
+
|
| 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 |
+
|
| 135 |
+
```bibtex
|
| 136 |
+
@inproceedings{agentperfbench2026,
|
| 137 |
+
title={AgentPerfBench: A Benchmarking and Evaluation Suite for Inference Performance of Agentic LLMs},
|
| 138 |
+
author={Anonymous},
|
| 139 |
+
booktitle={NeurIPS 2026 Evaluations and Datasets Track},
|
| 140 |
+
year={2026}
|
| 141 |
+
}
|
| 142 |
+
```
|
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
ADDED
|
@@ -0,0 +1,410 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"@context": {
|
| 3 |
+
"@language": "en",
|
| 4 |
+
"@vocab": "https://schema.org/",
|
| 5 |
+
"citeAs": "cr:citeAs",
|
| 6 |
+
"column": "cr:column",
|
| 7 |
+
"conformsTo": "dct:conformsTo",
|
| 8 |
+
"cr": "http://mlcommons.org/croissant/",
|
| 9 |
+
"data": {
|
| 10 |
+
"@id": "cr:data",
|
| 11 |
+
"@type": "@json"
|
| 12 |
+
},
|
| 13 |
+
"dataType": {
|
| 14 |
+
"@id": "cr:dataType",
|
| 15 |
+
"@type": "@vocab"
|
| 16 |
+
},
|
| 17 |
+
"dct": "http://purl.org/dc/terms/",
|
| 18 |
+
"equivalentProperty": "cr:equivalentProperty",
|
| 19 |
+
"examples": {
|
| 20 |
+
"@id": "cr:examples",
|
| 21 |
+
"@type": "@json"
|
| 22 |
+
},
|
| 23 |
+
"extract": "cr:extract",
|
| 24 |
+
"field": "cr:field",
|
| 25 |
+
"fileObject": "cr:fileObject",
|
| 26 |
+
"fileProperty": "cr:fileProperty",
|
| 27 |
+
"fileSet": "cr:fileSet",
|
| 28 |
+
"format": "cr:format",
|
| 29 |
+
"includes": "cr:includes",
|
| 30 |
+
"isLiveDataset": "cr:isLiveDataset",
|
| 31 |
+
"jsonPath": "cr:jsonPath",
|
| 32 |
+
"key": "cr:key",
|
| 33 |
+
"md5": "cr:md5",
|
| 34 |
+
"parentField": "cr:parentField",
|
| 35 |
+
"path": "cr:path",
|
| 36 |
+
"rai": "http://mlcommons.org/croissant/RAI/",
|
| 37 |
+
"recordSet": "cr:recordSet",
|
| 38 |
+
"references": "cr:references",
|
| 39 |
+
"regex": "cr:regex",
|
| 40 |
+
"repeated": "cr:repeated",
|
| 41 |
+
"replace": "cr:replace",
|
| 42 |
+
"samplingRate": "cr:samplingRate",
|
| 43 |
+
"prov": "http://www.w3.org/ns/prov#",
|
| 44 |
+
"sc": "https://schema.org/",
|
| 45 |
+
"separator": "cr:separator",
|
| 46 |
+
"source": "cr:source",
|
| 47 |
+
"subField": "cr:subField",
|
| 48 |
+
"transform": "cr:transform"
|
| 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",
|
| 61 |
+
"name": "Anonymous (under review)"
|
| 62 |
+
},
|
| 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": "0123d2758fd1aee6161b36786e5b879f0bae5cf96dad1e51a79fe64035ec9fbd"
|
| 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"
|
| 95 |
+
}
|
| 96 |
+
],
|
| 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"
|
| 115 |
+
}
|
| 116 |
+
}
|
| 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"
|
| 129 |
+
}
|
| 130 |
+
}
|
| 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"
|
| 143 |
+
}
|
| 144 |
+
}
|
| 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"
|
| 157 |
+
}
|
| 158 |
+
}
|
| 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"
|
| 171 |
+
}
|
| 172 |
+
}
|
| 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"
|
| 185 |
+
}
|
| 186 |
+
}
|
| 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 |
+
}
|
| 230 |
+
]
|
| 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"
|
| 249 |
+
}
|
| 250 |
+
}
|
| 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 |
+
}
|
| 308 |
+
]
|
| 309 |
+
},
|
| 310 |
+
{
|
| 311 |
+
"@type": "cr:RecordSet",
|
| 312 |
+
"@id": "kernel-profile-data",
|
| 313 |
+
"name": "Kernel Profiles",
|
| 314 |
+
"description": "Per-kernel CUDA profiling data for roofline analysis.",
|
| 315 |
+
"field": [
|
| 316 |
+
{
|
| 317 |
+
"@type": "cr:Field",
|
| 318 |
+
"@id": "kernel-profile-data/model",
|
| 319 |
+
"name": "model",
|
| 320 |
+
"dataType": "sc:Text",
|
| 321 |
+
"source": {
|
| 322 |
+
"fileObject": {
|
| 323 |
+
"@id": "kernel-profiles-parquet"
|
| 324 |
+
},
|
| 325 |
+
"extract": {
|
| 326 |
+
"column": "model"
|
| 327 |
+
}
|
| 328 |
+
}
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"@type": "cr:Field",
|
| 332 |
+
"@id": "kernel-profile-data/phase",
|
| 333 |
+
"name": "phase",
|
| 334 |
+
"dataType": "sc:Text",
|
| 335 |
+
"source": {
|
| 336 |
+
"fileObject": {
|
| 337 |
+
"@id": "kernel-profiles-parquet"
|
| 338 |
+
},
|
| 339 |
+
"extract": {
|
| 340 |
+
"column": "phase"
|
| 341 |
+
}
|
| 342 |
+
}
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"@type": "cr:Field",
|
| 346 |
+
"@id": "kernel-profile-data/kernel_name",
|
| 347 |
+
"name": "kernel_name",
|
| 348 |
+
"dataType": "sc:Text",
|
| 349 |
+
"source": {
|
| 350 |
+
"fileObject": {
|
| 351 |
+
"@id": "kernel-profiles-parquet"
|
| 352 |
+
},
|
| 353 |
+
"extract": {
|
| 354 |
+
"column": "kernel_name"
|
| 355 |
+
}
|
| 356 |
+
}
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"@type": "cr:Field",
|
| 360 |
+
"@id": "kernel-profile-data/arithmetic_intensity",
|
| 361 |
+
"name": "arithmetic_intensity",
|
| 362 |
+
"dataType": "sc:Float",
|
| 363 |
+
"source": {
|
| 364 |
+
"fileObject": {
|
| 365 |
+
"@id": "kernel-profiles-parquet"
|
| 366 |
+
},
|
| 367 |
+
"extract": {
|
| 368 |
+
"column": "arithmetic_intensity"
|
| 369 |
+
}
|
| 370 |
+
}
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"@type": "cr:Field",
|
| 374 |
+
"@id": "kernel-profile-data/achieved_tflops",
|
| 375 |
+
"name": "achieved_tflops",
|
| 376 |
+
"dataType": "sc:Float",
|
| 377 |
+
"source": {
|
| 378 |
+
"fileObject": {
|
| 379 |
+
"@id": "kernel-profiles-parquet"
|
| 380 |
+
},
|
| 381 |
+
"extract": {
|
| 382 |
+
"column": "achieved_tflops"
|
| 383 |
+
}
|
| 384 |
+
}
|
| 385 |
+
}
|
| 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 |
+
{
|
| 397 |
+
"@id": "https://huggingface.co/datasets/princeton-nlp/SWE-bench",
|
| 398 |
+
"name": "SWE-Bench"
|
| 399 |
+
},
|
| 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 |
+
}
|
metadata/hardware.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"name": "H100_SXM5_80GB", "gpu": "NVIDIA H100 SXM5", "vram_gb": 80, "hbm_bandwidth_tb_s": 3.35, "peak_tflops_bf16": 989, "interconnect": "NVLink"},
|
| 3 |
+
{"name": "A100_SXM4_40GB", "gpu": "NVIDIA A100 SXM4", "vram_gb": 40, "hbm_bandwidth_tb_s": 1.56, "peak_tflops_bf16": 312, "interconnect": "NVLink"},
|
| 4 |
+
{"name": "RTX_3090_24GB", "gpu": "NVIDIA RTX 3090", "vram_gb": 24, "hbm_bandwidth_tb_s": 0.936, "peak_tflops_bf16": 71, "interconnect": "PCIe"}
|
| 5 |
+
]
|
metadata/models.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"name": "Llama-3.1-8B-Instruct", "family": "llama", "params_b": 8, "architecture": "dense", "license": "llama3.1"},
|
| 3 |
+
{"name": "Llama-3.1-70B-Instruct", "family": "llama", "params_b": 70, "architecture": "dense", "license": "llama3.1"},
|
| 4 |
+
{"name": "Llama-3.3-70B-Instruct", "family": "llama", "params_b": 70, "architecture": "dense", "license": "llama3.3"},
|
| 5 |
+
{"name": "Qwen2.5-72B-Instruct", "family": "qwen", "params_b": 72, "architecture": "dense", "license": "apache-2.0"},
|
| 6 |
+
{"name": "Qwen3.5-9B", "family": "qwen", "params_b": 9, "architecture": "dense", "license": "apache-2.0"},
|
| 7 |
+
{"name": "Qwen3.5-27B", "family": "qwen", "params_b": 27, "architecture": "dense", "license": "apache-2.0"},
|
| 8 |
+
{"name": "Mixtral-8x7B-Instruct-v0.1", "family": "mixtral", "params_b": 47, "active_params_b": 13, "architecture": "moe", "num_experts": 8, "top_k": 2, "license": "apache-2.0"},
|
| 9 |
+
{"name": "gpt-oss-20b", "family": "gpt-oss", "params_b": 21, "active_params_b": 3.6, "architecture": "moe", "num_experts": 32, "top_k": 4, "license": "apache-2.0"},
|
| 10 |
+
{"name": "gpt-oss-120b", "family": "gpt-oss", "params_b": 117, "active_params_b": 5.1, "architecture": "moe", "num_experts": 128, "top_k": 4, "license": "apache-2.0"}
|
| 11 |
+
]
|
metadata/profiles.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"name": "coding-agent", "tier": 1, "description": "Coding-agent prompts from SWE-Bench runs (planning calls)", "isl_range": [17000, 17000], "osl_range": [800, 800], "source": "swebench", "is_synthetic": false, "is_multi_turn": false},
|
| 3 |
+
{"name": "swebench-multiturn-short", "tier": 1, "description": "SWE-Bench coding agent: 13-30 step sessions", "isl_range": [32768, 32768], "osl_range": [2000, 2000], "source": "swebench", "is_synthetic": false, "is_multi_turn": true},
|
| 4 |
+
{"name": "swebench-multiturn-medium", "tier": 1, "description": "SWE-Bench coding agent: 30-80 step sessions", "isl_range": [65536, 65536], "osl_range": [2000, 2000], "source": "swebench", "is_synthetic": false, "is_multi_turn": true},
|
| 5 |
+
{"name": "swebench-multiturn-long", "tier": 1, "description": "SWE-Bench coding agent: 80-150 step sessions", "isl_range": [131072, 131072], "osl_range": [2000, 2000], "source": "swebench", "is_synthetic": false, "is_multi_turn": true},
|
| 6 |
+
{"name": "swebench-multiturn-xl", "tier": 1, "description": "SWE-Bench coding agent: 150+ step sessions", "isl_range": [131072, 131072], "osl_range": [2000, 2000], "source": "swebench", "is_synthetic": false, "is_multi_turn": true},
|
| 7 |
+
{"name": "terminalbench-multiturn-short", "tier": 1, "description": "TerminalBench CLI agent: 2-20 step sessions", "isl_range": [32768, 32768], "osl_range": [2000, 2000], "source": "terminalbench", "is_synthetic": false, "is_multi_turn": true},
|
| 8 |
+
{"name": "terminalbench-multiturn-medium", "tier": 1, "description": "TerminalBench CLI agent: 20-60 step sessions", "isl_range": [65536, 65536], "osl_range": [2000, 2000], "source": "terminalbench", "is_synthetic": false, "is_multi_turn": true},
|
| 9 |
+
{"name": "terminalbench-multiturn-long", "tier": 1, "description": "TerminalBench CLI agent: 60-150 step sessions", "isl_range": [131072, 131072], "osl_range": [2000, 2000], "source": "terminalbench", "is_synthetic": false, "is_multi_turn": true},
|
| 10 |
+
{"name": "terminalbench-multiturn-xl", "tier": 1, "description": "TerminalBench CLI agent: 150+ step sessions", "isl_range": [131072, 131072], "osl_range": [2000, 2000], "source": "terminalbench", "is_synthetic": false, "is_multi_turn": true},
|
| 11 |
+
{"name": "osworld-multiturn-short", "tier": 1, "description": "OSWorld computer-use agent: 2-10 step sessions", "isl_range": [32768, 32768], "osl_range": [500, 500], "source": "osworld", "is_synthetic": false, "is_multi_turn": true},
|
| 12 |
+
{"name": "osworld-multiturn-medium", "tier": 1, "description": "OSWorld computer-use agent: 10-20 step sessions", "isl_range": [65536, 65536], "osl_range": [500, 500], "source": "osworld", "is_synthetic": false, "is_multi_turn": true},
|
| 13 |
+
{"name": "osworld-multiturn-long", "tier": 1, "description": "OSWorld computer-use agent: 20-30 step sessions", "isl_range": [131072, 131072], "osl_range": [500, 500], "source": "osworld", "is_synthetic": false, "is_multi_turn": true},
|
| 14 |
+
{"name": "chat-short", "tier": 2, "description": "Short Q&A chat from ShareGPT", "isl_range": [100, 500], "osl_range": [50, 300], "source": "sharegpt", "is_synthetic": false, "is_multi_turn": false},
|
| 15 |
+
{"name": "chat-medium", "tier": 2, "description": "Medium-length ShareGPT conversations", "isl_range": [500, 2000], "osl_range": [300, 1000], "source": "sharegpt", "is_synthetic": false, "is_multi_turn": false},
|
| 16 |
+
{"name": "chat-long", "tier": 2, "description": "Long ShareGPT conversations", "isl_range": [2000, 8000], "osl_range": [1000, 2000], "source": "sharegpt", "is_synthetic": false, "is_multi_turn": false},
|
| 17 |
+
{"name": "chat-multiturn-short", "tier": 2, "description": "ShareGPT multi-turn chat: 3-5 turns", "isl_range": [1000, 8192], "osl_range": [200, 1000], "source": "sharegpt", "is_synthetic": false, "is_multi_turn": true},
|
| 18 |
+
{"name": "chat-multiturn-medium", "tier": 2, "description": "ShareGPT multi-turn chat: 5-10 turns", "isl_range": [2000, 16384], "osl_range": [500, 1500], "source": "sharegpt", "is_synthetic": false, "is_multi_turn": true},
|
| 19 |
+
{"name": "chat-multiturn-long", "tier": 2, "description": "ShareGPT multi-turn chat: 10-20 turns", "isl_range": [4000, 32768], "osl_range": [1000, 2000], "source": "sharegpt", "is_synthetic": false, "is_multi_turn": true},
|
| 20 |
+
{"name": "chat-multiturn-xl", "tier": 2, "description": "ShareGPT multi-turn chat: 20-30 turns", "isl_range": [8000, 65536], "osl_range": [1000, 2000], "source": "sharegpt", "is_synthetic": false, "is_multi_turn": true},
|
| 21 |
+
{"name": "prefill-heavy", "tier": 3, "description": "Synthetic prefill stress: long input, short output", "isl_range": [8192, 8192], "osl_range": [256, 256], "source": "random", "is_synthetic": true, "is_multi_turn": false},
|
| 22 |
+
{"name": "decode-heavy", "tier": 3, "description": "Synthetic decode stress: short input, long output", "isl_range": [256, 256], "osl_range": [4096, 4096], "source": "random", "is_synthetic": true, "is_multi_turn": false},
|
| 23 |
+
{"name": "random-1k", "tier": 3, "description": "Cross-validation baseline: balanced random tokens", "isl_range": [1024, 1024], "osl_range": [1024, 1024], "source": "random", "is_synthetic": true, "is_multi_turn": false}
|
| 24 |
+
]
|
roofline/kernel_profiles.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:109cf3206b6cef47ad033f93db2e943a124c0a5a55e9db7bdf2bdbc9b864290a
|
| 3 |
+
size 77667
|