paulplee commited on
Commit
10cfda9
·
verified ·
1 Parent(s): a103383

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +128 -126
README.md CHANGED
@@ -22,6 +22,7 @@ Community-submitted LLM inference benchmark data from real consumer, prosumer, a
22
  Each row is one normalized benchmark result: a specific model × quantization × hardware × configuration combination with measured performance metrics.
23
 
24
  **Use this to:**
 
25
  - Compare throughput, latency, and power efficiency across GPU models and quantizations
26
  - Study how concurrency and context length scale on different hardware
27
  - Build leaderboards, dashboards, and data-driven GPU purchasing decisions
@@ -31,10 +32,10 @@ Each row is one normalized benchmark result: a specific model × quantization ×
31
 
32
  ## Files
33
 
34
- | File | Description |
35
- | ---- | ----------- |
36
  | `data/results_*.jsonl` | Raw benchmark submissions, one file per run, appended continuously |
37
- | `llms.txt` | Machine-readable summary for LLM context injection |
38
 
39
  ---
40
 
@@ -75,166 +76,166 @@ All columns are present on every row. Fields that do not apply to a given runner
75
 
76
  ### Model identity
77
 
78
- | Column | Type | Description |
79
- | ------ | ---- | ----------- |
80
- | `run_type` | string | `quantitative`, `qualitative`, or `all` |
81
- | `model` | string | Full model path (e.g. `unsloth/Qwen3.5-9B-GGUF/Qwen3.5-9B-Q8_0.gguf`) |
82
- | `model_base` | string | Base model name without quant suffix (e.g. `Qwen3.5-9B`) |
83
- | `quant` | string | Quantization format (e.g. `Q4_K_M`, `Q8_0`, `BF16`) |
84
- | `model_org` | string\|null | HuggingFace organisation (e.g. `unsloth`); null for local paths |
85
- | `model_repo` | string\|null | Full HF `org/repo` string; null for local paths |
86
- | `runner_type` | string | Benchmark backend: `llama-bench`, `llama-server`, or `llama-server-loadtest` |
87
 
88
  ### LLM engine
89
 
90
- | Column | Type | Description |
91
- | ------ | ---- | ----------- |
92
- | `llm_engine_name` | string\|null | Inference engine (e.g. `llama.cpp`) |
93
  | `llm_engine_version` | string\|null | Engine version with build hash (e.g. `b5063 (58ab80c3)`) |
94
 
95
  ### Hardware
96
 
97
- | Column | Type | Description |
98
- | ------ | ---- | ----------- |
99
- | `gpu_name` | string\|null | Primary GPU model name |
100
- | `gpu_vram_gb` | float\|null | Primary GPU VRAM in GB |
101
- | `gpu_driver` | string\|null | GPU driver version |
102
- | `gpu_count` | int | Number of GPUs used |
103
- | `gpu_names` | string\|null | Comma-joined list of all GPU names (multi-GPU runs) |
104
- | `gpu_total_vram_gb` | float\|null | Total VRAM across all GPUs |
105
- | `unified_memory` | bool\|null | `true` for Apple Silicon — GPU and CPU share the same memory pool |
106
  | `gpu_compute_capability` | string\|null | CUDA compute capability (e.g. `"9.0"` for Blackwell); null for non-CUDA |
107
- | `gpu_pcie_gen` | int\|null | PCIe generation (e.g. `5`); null for unified-memory platforms |
108
- | `gpu_pcie_width` | int\|null | PCIe link width in lanes (e.g. `16`); null for unified-memory platforms |
109
- | `gpu_power_limit_w` | float\|null | Configured TDP limit in Watts (from NVML); null for non-NVIDIA |
110
- | `backends` | string\|null | Compute backend with version (e.g. `CUDA 13.0`, `Metal`, `CPU`) |
111
- | `cpu_model` | string\|null | CPU model name |
112
 
113
  ### Benchmark configuration
114
 
115
- | Column | Type | Description |
116
- | ------ | ---- | ----------- |
117
- | `n_ctx` | int\|null | Context window size in tokens |
118
- | `n_batch` | int\|null | Batch size for prompt processing |
119
- | `split_mode` | string\|null | Multi-GPU split strategy (`layer`, `row`, `none`); null for single-GPU |
120
- | `tensor_split` | string\|null | Per-GPU VRAM weight string (e.g. `"1,1"`); null for single-GPU |
121
- | `concurrent_users` | int\|null | Number of simulated parallel users. For `llama-server-loadtest`, **each row is one concurrency level** from the measured curve. |
122
 
123
  ### Workload
124
 
125
- | Column | Type | Description |
126
- | ------ | ---- | ----------- |
127
- | `task_type` | string\|null | Workload category (e.g. `text-generation`, `context-rot-niah`) |
128
- | `prompt_dataset` | string\|null | Prompt source (e.g. `sharegpt-v3`); null for `llama-bench` |
129
- | `num_prompts` | int\|null | Prompts sent per run; null for `llama-bench` |
130
- | `n_predict` | int\|null | Max tokens generated per prompt; null for `llama-bench` |
131
 
132
  ### Performance — throughput
133
 
134
- | Column | Type | Description |
135
- | ------ | ---- | ----------- |
136
- | `throughput_tok_s` | float\|null | Tokens per second (primary throughput metric) |
137
- | `vram_cliff_tokens` | int\|null | Largest `n_ctx` that loaded without OOM during pre-flight discovery |
138
 
139
  ### Performance — power
140
 
141
- | Column | Type | Description |
142
- | ------ | ---- | ----------- |
143
  | `avg_power_w` | float\|null | Average GPU power draw in Watts |
144
- | `max_power_w` | float\|null | Peak GPU power draw in Watts |
145
 
146
  ### Performance — thermal
147
 
148
- | Column | Type | Description |
149
- | ------ | ---- | ----------- |
150
- | `avg_gpu_temp_c` | float\|null | Average GPU temperature (°C) |
151
- | `max_gpu_temp_c` | float\|null | Peak GPU temperature (°C) |
152
- | `avg_cpu_temp_c` | float\|null | Average CPU temperature (°C) |
153
- | `max_cpu_temp_c` | float\|null | Peak CPU temperature (°C) |
154
- | `avg_fan_speed_rpm` | float\|null | Average fan speed (RPM) |
155
- | `max_fan_speed_rpm` | float\|null | Peak fan speed (RPM) |
156
 
157
  ### Performance — user experience (server runners only)
158
 
159
- | Column | Type | Description |
160
- | ------ | ---- | ----------- |
161
  | `avg_ttft_ms` | float\|null | Average Time-To-First-Token (ms) |
162
- | `p50_ttft_ms` | float\|null | Median TTFT (ms) |
163
- | `p99_ttft_ms` | float\|null | 99th-percentile TTFT (ms) |
164
- | `avg_itl_ms` | float\|null | Average Inter-Token Latency (ms) |
165
- | `p50_itl_ms` | float\|null | Median ITL (ms) |
166
- | `p99_itl_ms` | float\|null | 99th-percentile ITL (ms) |
167
 
168
  ### Qualitative evaluation
169
 
170
  Populated when `run_type` is `qualitative` or `all`. All null for pure `quantitative` runs.
171
 
172
- | Column | Type | Description |
173
- | ------ | ---- | ----------- |
174
- | `context_rot_score` | float\|null | Mean accuracy across all (length × depth) long-context recall cases |
175
- | `context_rot_accuracy_by_length` | string\|null | JSON `{haystack_length: accuracy}` map |
176
- | `context_rot_accuracy_by_depth` | string\|null | JSON `{depth_pct: accuracy}` map |
177
- | `tool_selection_accuracy` | float\|null | Fraction of cases with correct tool name selected |
178
- | `parameter_accuracy` | float\|null | Fraction of cases with all required arguments matching ground truth |
179
- | `parameter_hallucination_rate` | float\|null | Fraction of cases with invented arguments not in schema |
180
- | `parse_success_rate` | float\|null | Fraction of cases with parseable tool-call JSON |
181
- | `overall_tool_accuracy` | float\|null | Geometric mean of tool selection × parameter accuracy |
182
- | `knowledge_accuracy_mean` | float\|null | Mean fraction of factual claims judged consistent with common knowledge |
183
- | `knowledge_accuracy_std` | float\|null | Standard deviation of per-prompt knowledge-accuracy scores |
184
- | `answer_relevancy_mean` | float\|null | Mean judge-rated response relevancy (0–1) |
185
- | `coherence_mean` | float\|null | Mean judge-rated coherence (0–1) |
186
- | `quality_composite_score` | float\|null | Mean of knowledge accuracy, relevancy, and coherence |
187
- | `memory_accuracy` | float\|null | LongMemEval recall accuracy (0–1); null when MT-Bench mode was used |
188
- | `mt_bench_score` | float\|null | MT-Bench score (1–10 scale); null when LongMemEval mode was used |
189
- | `cases_evaluated` | int\|null | Number of evaluation cases that completed |
190
- | `cases_skipped_context` | int\|null | Cases skipped because context exceeded `vram_cliff_tokens` |
191
 
192
  ### Blob columns
193
 
194
- | Column | Type | Description |
195
- | ------ | ---- | ----------- |
196
- | `qualitative` | string\|null | Full qualitative result payload as JSON string |
197
- | `quantitative` | string\|null | Full quantitative result payload as JSON string |
198
- | `meta` | string\|null | Reproducibility hints (e.g. `quality_prompts_cache_hash`) as JSON string |
199
 
200
  ### OS / system context
201
 
202
- | Column | Type | Description |
203
- | ------ | ---- | ----------- |
204
- | `os_system` | string\|null | OS family: `Linux`, `Darwin`, `Windows` |
205
- | `os_release` | string\|null | Kernel / OS release string |
206
- | `os_machine` | string\|null | CPU architecture (e.g. `x86_64`, `arm64`) |
207
- | `os_distro` | string\|null | Distribution name (e.g. `Ubuntu`, `macOS`) |
208
  | `os_distro_version` | string\|null | Distribution version (e.g. `24.04`, `15.5`) |
209
- | `cpu_cores` | int\|null | Number of logical CPU cores |
210
- | `ram_total_gb` | float\|null | Total system RAM in GB |
211
 
212
  ### Submission metadata
213
 
214
- | Column | Type | Description |
215
- | ------ | ---- | ----------- |
216
- | `submitter` | string\|null | Optional public display name of the contributor |
217
- | `timestamp` | string\|null | ISO 8601 UTC time the benchmark run produced the row |
218
- | `submitted_at` | string\|null | ISO 8601 UTC time the row was uploaded |
219
 
220
  ### Provenance and deduplication
221
 
222
- | Column | Type | Description |
223
- | ------ | ---- | ----------- |
224
- | `schema_version` | string | Schema version at time of flattening (`0.9.0`) |
225
- | `benchmark_version` | string | PPB software version that produced the row |
226
- | `suite_run_id` | string\|null | UUID shared by all rows from the same `ppb` invocation |
227
- | `submission_id` | string\|null | UUID assigned during upload |
228
- | `row_id` | string | UUID uniquely identifying this row |
229
- | `machine_fingerprint` | string | SHA-256 of hardware profile fields (anonymous machine identity) |
230
- | `run_fingerprint` | string | SHA-256 of benchmark configuration + machine fingerprint |
231
- | `result_fingerprint` | string | SHA-256 of run identity + measured metrics — uniquely identifies one result |
232
- | `source_file_sha256` | string\|null | SHA-256 of the source JSONL file |
233
 
234
  ### Extensibility
235
 
236
- | Column | Type | Description |
237
- | ------ | ---- | ----------- |
238
  | `tags` | string\|null | Free-form JSON string for arbitrary metadata from the suite TOML |
239
 
240
  ---
@@ -243,14 +244,14 @@ Populated when `run_type` is `qualitative` or `all`. All null for pure `quantita
243
 
244
  Many columns are runner-specific. Expected nulls by runner type:
245
 
246
- | Column group | `llama-bench` | `llama-server` | `llama-server-loadtest` |
247
- | --- | --- | --- | --- |
248
- | TTFT / ITL metrics | null | populated | populated |
249
- | `prompt_dataset`, `num_prompts`, `n_predict` | null | populated | populated |
250
- | `concurrent_users` | null | populated | populated (one row per level) |
251
- | `gpu_pcie_gen`, `gpu_pcie_width` | null on Apple Silicon | null on Apple Silicon | null on Apple Silicon |
252
- | `unified_memory` | null on NVIDIA | null on NVIDIA | null on NVIDIA |
253
- | Qualitative columns | null | null | null |
254
 
255
  Qualitative columns are populated only when `run_type` is `qualitative` or `all`.
256
 
@@ -275,11 +276,11 @@ latest = (
275
 
276
  ## Ecosystem
277
 
278
- | | |
279
- | --- | --- |
280
  | **Benchmark tool** | [poor-pauls-benchmark](https://github.com/paulplee/poor-pauls-benchmark) — run benchmarks and contribute results |
281
- | **MCP server** | [ppb-mcp](https://github.com/paulplee/ppb-mcp) — lets any MCP-compatible LLM client query this dataset directly |
282
- | **Analytics** | [poorpaul.dev/insights](https://poorpaul.dev/insights) — leaderboard and visual analysis |
283
 
284
  Connect any MCP client to `https://mcp.poorpaul.dev/mcp` to query this data conversationally.
285
 
@@ -303,6 +304,7 @@ Dataset content: [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) — c
303
  Tooling: MIT — see the [benchmark repository](https://github.com/paulplee/poor-pauls-benchmark).
304
 
305
  Third-party evaluation data included in rows:
 
306
  - BFCL v4 evaluation cases © UC Berkeley, [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)
307
  - MT-Bench questions © LMSYS, [MIT licence](https://github.com/lm-sys/FastChat/blob/main/LICENSE)
308
  - ShareGPT prompts under their [original licence](https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered)
 
22
  Each row is one normalized benchmark result: a specific model × quantization × hardware × configuration combination with measured performance metrics.
23
 
24
  **Use this to:**
25
+
26
  - Compare throughput, latency, and power efficiency across GPU models and quantizations
27
  - Study how concurrency and context length scale on different hardware
28
  - Build leaderboards, dashboards, and data-driven GPU purchasing decisions
 
32
 
33
  ## Files
34
 
35
+ | File | Description |
36
+ | ---------------------- | ------------------------------------------------------------------ |
37
  | `data/results_*.jsonl` | Raw benchmark submissions, one file per run, appended continuously |
38
+ | `llms.txt` | Machine-readable summary for LLM context injection |
39
 
40
  ---
41
 
 
76
 
77
  ### Model identity
78
 
79
+ | Column | Type | Description |
80
+ | ------------- | ------------ | ---------------------------------------------------------------------------- |
81
+ | `run_type` | string | `quantitative`, `qualitative`, or `all` |
82
+ | `model` | string | Full model path (e.g. `unsloth/Qwen3.5-9B-GGUF/Qwen3.5-9B-Q8_0.gguf`) |
83
+ | `model_base` | string | Base model name without quant suffix (e.g. `Qwen3.5-9B`) |
84
+ | `quant` | string | Quantization format (e.g. `Q4_K_M`, `Q8_0`, `BF16`) |
85
+ | `model_org` | string\|null | HuggingFace organisation (e.g. `unsloth`); null for local paths |
86
+ | `model_repo` | string\|null | Full HF `org/repo` string; null for local paths |
87
+ | `runner_type` | string | Benchmark backend: `llama-bench`, `llama-server`, or `llama-server-loadtest` |
88
 
89
  ### LLM engine
90
 
91
+ | Column | Type | Description |
92
+ | -------------------- | ------------ | -------------------------------------------------------- |
93
+ | `llm_engine_name` | string\|null | Inference engine (e.g. `llama.cpp`) |
94
  | `llm_engine_version` | string\|null | Engine version with build hash (e.g. `b5063 (58ab80c3)`) |
95
 
96
  ### Hardware
97
 
98
+ | Column | Type | Description |
99
+ | ------------------------ | ------------ | ----------------------------------------------------------------------- |
100
+ | `gpu_name` | string\|null | Primary GPU model name |
101
+ | `gpu_vram_gb` | float\|null | Primary GPU VRAM in GB |
102
+ | `gpu_driver` | string\|null | GPU driver version |
103
+ | `gpu_count` | int | Number of GPUs used |
104
+ | `gpu_names` | string\|null | Comma-joined list of all GPU names (multi-GPU runs) |
105
+ | `gpu_total_vram_gb` | float\|null | Total VRAM across all GPUs |
106
+ | `unified_memory` | bool\|null | `true` for Apple Silicon — GPU and CPU share the same memory pool |
107
  | `gpu_compute_capability` | string\|null | CUDA compute capability (e.g. `"9.0"` for Blackwell); null for non-CUDA |
108
+ | `gpu_pcie_gen` | int\|null | PCIe generation (e.g. `5`); null for unified-memory platforms |
109
+ | `gpu_pcie_width` | int\|null | PCIe link width in lanes (e.g. `16`); null for unified-memory platforms |
110
+ | `gpu_power_limit_w` | float\|null | Configured TDP limit in Watts (from NVML); null for non-NVIDIA |
111
+ | `backends` | string\|null | Compute backend with version (e.g. `CUDA 13.0`, `Metal`, `CPU`) |
112
+ | `cpu_model` | string\|null | CPU model name |
113
 
114
  ### Benchmark configuration
115
 
116
+ | Column | Type | Description |
117
+ | ------------------ | ------------ | ------------------------------------------------------------------------------------------------------------------------------- |
118
+ | `n_ctx` | int\|null | Context window size in tokens |
119
+ | `n_batch` | int\|null | Batch size for prompt processing |
120
+ | `split_mode` | string\|null | Multi-GPU split strategy (`layer`, `row`, `none`); null for single-GPU |
121
+ | `tensor_split` | string\|null | Per-GPU VRAM weight string (e.g. `"1,1"`); null for single-GPU |
122
+ | `concurrent_users` | int\|null | Number of simulated parallel users. For `llama-server-loadtest`, **each row is one concurrency level** from the measured curve. |
123
 
124
  ### Workload
125
 
126
+ | Column | Type | Description |
127
+ | ---------------- | ------------ | -------------------------------------------------------------- |
128
+ | `task_type` | string\|null | Workload category (e.g. `text-generation`, `context-rot-niah`) |
129
+ | `prompt_dataset` | string\|null | Prompt source (e.g. `sharegpt-v3`); null for `llama-bench` |
130
+ | `num_prompts` | int\|null | Prompts sent per run; null for `llama-bench` |
131
+ | `n_predict` | int\|null | Max tokens generated per prompt; null for `llama-bench` |
132
 
133
  ### Performance — throughput
134
 
135
+ | Column | Type | Description |
136
+ | ------------------- | ----------- | ------------------------------------------------------------------- |
137
+ | `throughput_tok_s` | float\|null | Tokens per second (primary throughput metric) |
138
+ | `vram_cliff_tokens` | int\|null | Largest `n_ctx` that loaded without OOM during pre-flight discovery |
139
 
140
  ### Performance — power
141
 
142
+ | Column | Type | Description |
143
+ | ------------- | ----------- | ------------------------------- |
144
  | `avg_power_w` | float\|null | Average GPU power draw in Watts |
145
+ | `max_power_w` | float\|null | Peak GPU power draw in Watts |
146
 
147
  ### Performance — thermal
148
 
149
+ | Column | Type | Description |
150
+ | ------------------- | ----------- | ---------------------------- |
151
+ | `avg_gpu_temp_c` | float\|null | Average GPU temperature (°C) |
152
+ | `max_gpu_temp_c` | float\|null | Peak GPU temperature (°C) |
153
+ | `avg_cpu_temp_c` | float\|null | Average CPU temperature (°C) |
154
+ | `max_cpu_temp_c` | float\|null | Peak CPU temperature (°C) |
155
+ | `avg_fan_speed_rpm` | float\|null | Average fan speed (RPM) |
156
+ | `max_fan_speed_rpm` | float\|null | Peak fan speed (RPM) |
157
 
158
  ### Performance — user experience (server runners only)
159
 
160
+ | Column | Type | Description |
161
+ | ------------- | ----------- | -------------------------------- |
162
  | `avg_ttft_ms` | float\|null | Average Time-To-First-Token (ms) |
163
+ | `p50_ttft_ms` | float\|null | Median TTFT (ms) |
164
+ | `p99_ttft_ms` | float\|null | 99th-percentile TTFT (ms) |
165
+ | `avg_itl_ms` | float\|null | Average Inter-Token Latency (ms) |
166
+ | `p50_itl_ms` | float\|null | Median ITL (ms) |
167
+ | `p99_itl_ms` | float\|null | 99th-percentile ITL (ms) |
168
 
169
  ### Qualitative evaluation
170
 
171
  Populated when `run_type` is `qualitative` or `all`. All null for pure `quantitative` runs.
172
 
173
+ | Column | Type | Description |
174
+ | -------------------------------- | ------------ | ----------------------------------------------------------------------- |
175
+ | `context_rot_score` | float\|null | Mean accuracy across all (length × depth) long-context recall cases |
176
+ | `context_rot_accuracy_by_length` | string\|null | JSON `{haystack_length: accuracy}` map |
177
+ | `context_rot_accuracy_by_depth` | string\|null | JSON `{depth_pct: accuracy}` map |
178
+ | `tool_selection_accuracy` | float\|null | Fraction of cases with correct tool name selected |
179
+ | `parameter_accuracy` | float\|null | Fraction of cases with all required arguments matching ground truth |
180
+ | `parameter_hallucination_rate` | float\|null | Fraction of cases with invented arguments not in schema |
181
+ | `parse_success_rate` | float\|null | Fraction of cases with parseable tool-call JSON |
182
+ | `overall_tool_accuracy` | float\|null | Geometric mean of tool selection × parameter accuracy |
183
+ | `knowledge_accuracy_mean` | float\|null | Mean fraction of factual claims judged consistent with common knowledge |
184
+ | `knowledge_accuracy_std` | float\|null | Standard deviation of per-prompt knowledge-accuracy scores |
185
+ | `answer_relevancy_mean` | float\|null | Mean judge-rated response relevancy (0–1) |
186
+ | `coherence_mean` | float\|null | Mean judge-rated coherence (0–1) |
187
+ | `quality_composite_score` | float\|null | Mean of knowledge accuracy, relevancy, and coherence |
188
+ | `memory_accuracy` | float\|null | LongMemEval recall accuracy (0–1); null when MT-Bench mode was used |
189
+ | `mt_bench_score` | float\|null | MT-Bench score (1–10 scale); null when LongMemEval mode was used |
190
+ | `cases_evaluated` | int\|null | Number of evaluation cases that completed |
191
+ | `cases_skipped_context` | int\|null | Cases skipped because context exceeded `vram_cliff_tokens` |
192
 
193
  ### Blob columns
194
 
195
+ | Column | Type | Description |
196
+ | -------------- | ------------ | ------------------------------------------------------------------------ |
197
+ | `qualitative` | string\|null | Full qualitative result payload as JSON string |
198
+ | `quantitative` | string\|null | Full quantitative result payload as JSON string |
199
+ | `meta` | string\|null | Reproducibility hints (e.g. `quality_prompts_cache_hash`) as JSON string |
200
 
201
  ### OS / system context
202
 
203
+ | Column | Type | Description |
204
+ | ------------------- | ------------ | ------------------------------------------- |
205
+ | `os_system` | string\|null | OS family: `Linux`, `Darwin`, `Windows` |
206
+ | `os_release` | string\|null | Kernel / OS release string |
207
+ | `os_machine` | string\|null | CPU architecture (e.g. `x86_64`, `arm64`) |
208
+ | `os_distro` | string\|null | Distribution name (e.g. `Ubuntu`, `macOS`) |
209
  | `os_distro_version` | string\|null | Distribution version (e.g. `24.04`, `15.5`) |
210
+ | `cpu_cores` | int\|null | Number of logical CPU cores |
211
+ | `ram_total_gb` | float\|null | Total system RAM in GB |
212
 
213
  ### Submission metadata
214
 
215
+ | Column | Type | Description |
216
+ | -------------- | ------------ | ---------------------------------------------------- |
217
+ | `submitter` | string\|null | Optional public display name of the contributor |
218
+ | `timestamp` | string\|null | ISO 8601 UTC time the benchmark run produced the row |
219
+ | `submitted_at` | string\|null | ISO 8601 UTC time the row was uploaded |
220
 
221
  ### Provenance and deduplication
222
 
223
+ | Column | Type | Description |
224
+ | --------------------- | ------------ | --------------------------------------------------------------------------- |
225
+ | `schema_version` | string | Schema version at time of flattening (`0.9.0`) |
226
+ | `benchmark_version` | string | PPB software version that produced the row |
227
+ | `suite_run_id` | string\|null | UUID shared by all rows from the same `ppb` invocation |
228
+ | `submission_id` | string\|null | UUID assigned during upload |
229
+ | `row_id` | string | UUID uniquely identifying this row |
230
+ | `machine_fingerprint` | string | SHA-256 of hardware profile fields (anonymous machine identity) |
231
+ | `run_fingerprint` | string | SHA-256 of benchmark configuration + machine fingerprint |
232
+ | `result_fingerprint` | string | SHA-256 of run identity + measured metrics — uniquely identifies one result |
233
+ | `source_file_sha256` | string\|null | SHA-256 of the source JSONL file |
234
 
235
  ### Extensibility
236
 
237
+ | Column | Type | Description |
238
+ | ------ | ------------ | ---------------------------------------------------------------- |
239
  | `tags` | string\|null | Free-form JSON string for arbitrary metadata from the suite TOML |
240
 
241
  ---
 
244
 
245
  Many columns are runner-specific. Expected nulls by runner type:
246
 
247
+ | Column group | `llama-bench` | `llama-server` | `llama-server-loadtest` |
248
+ | -------------------------------------------- | --------------------- | --------------------- | ----------------------------- |
249
+ | TTFT / ITL metrics | null | populated | populated |
250
+ | `prompt_dataset`, `num_prompts`, `n_predict` | null | populated | populated |
251
+ | `concurrent_users` | null | populated | populated (one row per level) |
252
+ | `gpu_pcie_gen`, `gpu_pcie_width` | null on Apple Silicon | null on Apple Silicon | null on Apple Silicon |
253
+ | `unified_memory` | null on NVIDIA | null on NVIDIA | null on NVIDIA |
254
+ | Qualitative columns | null | null | null |
255
 
256
  Qualitative columns are populated only when `run_type` is `qualitative` or `all`.
257
 
 
276
 
277
  ## Ecosystem
278
 
279
+ | | |
280
+ | ------------------ | ---------------------------------------------------------------------------------------------------------------- |
281
  | **Benchmark tool** | [poor-pauls-benchmark](https://github.com/paulplee/poor-pauls-benchmark) — run benchmarks and contribute results |
282
+ | **MCP server** | [ppb-mcp](https://github.com/paulplee/ppb-mcp) — lets any MCP-compatible LLM client query this dataset directly |
283
+ | **Analytics** | [poorpaul.dev/insights](https://poorpaul.dev/insights) — leaderboard and visual analysis |
284
 
285
  Connect any MCP client to `https://mcp.poorpaul.dev/mcp` to query this data conversationally.
286
 
 
304
  Tooling: MIT — see the [benchmark repository](https://github.com/paulplee/poor-pauls-benchmark).
305
 
306
  Third-party evaluation data included in rows:
307
+
308
  - BFCL v4 evaluation cases © UC Berkeley, [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)
309
  - MT-Bench questions © LMSYS, [MIT licence](https://github.com/lm-sys/FastChat/blob/main/LICENSE)
310
  - ShareGPT prompts under their [original licence](https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered)