snapshot 2026.06: vision ladder, 2 devices, fp32/fp16/int8
Browse files- README.md +11 -0
- llm-benchmarks.csv +6 -0
README.md
CHANGED
|
@@ -40,6 +40,17 @@ capacity indicator; rankings and deltas are the signal.
|
|
| 40 |
- **Published accuracy can invert on-device rankings:** EfficientNet-B2
|
| 41 |
(published +2.9 over B0) measured *no better* than B0 while 51% slower.
|
| 42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
## Schema
|
| 44 |
|
| 45 |
One row = one (model, device, precision/quant) measurement.
|
|
|
|
| 40 |
- **Published accuracy can invert on-device rankings:** EfficientNet-B2
|
| 41 |
(published +2.9 over B0) measured *no better* than B0 while 51% slower.
|
| 42 |
|
| 43 |
+
## LLM benchmarks (llm-benchmarks.csv)
|
| 44 |
+
|
| 45 |
+
GGUF quantization ladders measured on-device via llama.cpp (CPU): decode and
|
| 46 |
+
prefill tok/s at the measured-optimal thread count (big cores only — the
|
| 47 |
+
llama.cpp default of all-cores is 28-39% slower on big.LITTLE SoCs), with
|
| 48 |
+
WikiText-2 perplexity (fixed 32-chunk subset) as the device-independent
|
| 49 |
+
quality column. First snapshot: Qwen2.5-0.5B-Instruct, Q8_0→Q3_K_M, on a
|
| 50 |
+
Snapdragon 662 phone — 14-19 tok/s decode (conversational) at every level;
|
| 51 |
+
Q6_K dominates Q8_0; prefill (~30-40 tok/s) is the practical bottleneck for
|
| 52 |
+
long prompts.
|
| 53 |
+
|
| 54 |
## Schema
|
| 55 |
|
| 56 |
One row = one (model, device, precision/quant) measurement.
|
llm-benchmarks.csv
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
snapshot,task,model,params_b,device,device_type,soc,quant,file_mb,runtime,threads,decode_tok_s,prefill_tok_s,quality_metric,quality_value,sweep
|
| 2 |
+
2026.06,text-generation,qwen2.5-0.5b-instruct,0.5,oppo-a74,phone,Snapdragon 662,q8_0,675.7,"llama.cpp b9590 (Termux, CPU)",4,13.91,38.51,wikitext2_ppl_32chunks,13.8042,llm-quant-v1
|
| 3 |
+
2026.06,text-generation,qwen2.5-0.5b-instruct,0.5,oppo-a74,phone,Snapdragon 662,q6_k,650.4,"llama.cpp b9590 (Termux, CPU)",4,15.59,35.97,wikitext2_ppl_32chunks,13.8091,llm-quant-v1
|
| 4 |
+
2026.06,text-generation,qwen2.5-0.5b-instruct,0.5,oppo-a74,phone,Snapdragon 662,q5_k_m,522.2,"llama.cpp b9590 (Termux, CPU)",4,16.58,29.74,wikitext2_ppl_32chunks,13.9929,llm-quant-v1
|
| 5 |
+
2026.06,text-generation,qwen2.5-0.5b-instruct,0.5,oppo-a74,phone,Snapdragon 662,q4_k_m,491.4,"llama.cpp b9590 (Termux, CPU)",4,17.69,33.41,wikitext2_ppl_32chunks,14.3045,llm-quant-v1
|
| 6 |
+
2026.06,text-generation,qwen2.5-0.5b-instruct,0.5,oppo-a74,phone,Snapdragon 662,q3_k_m,432.0,"llama.cpp b9590 (Termux, CPU)",4,19.25,35.73,wikitext2_ppl_32chunks,14.7384,llm-quant-v1
|