witcheer commited on
Commit
0b82111
·
verified ·
1 Parent(s): 5ee9704

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +50 -16
README.md CHANGED
@@ -11,6 +11,10 @@ tags:
11
  - llama-cpp
12
  - vllm
13
  - speed
 
 
 
 
14
  - moe
15
  size_categories:
16
  - n<1K
@@ -23,28 +27,46 @@ configs:
23
 
24
  # RTX 5090 LLM Benchmarks
25
 
26
- Speed benchmarks for quantized LLMs on NVIDIA RTX 5090 32GB, measured with [llm-bench-rig](https://github.com/notwitcheer/llm-bench-rig).
27
 
28
- ## What's measured
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
 
30
  - **Prompt processing (pp)**: parallel batched token throughput at context lengths 128, 512, 2048, 4096, 8192, 16384
31
  - **Text generation (tg)**: sequential autoregressive token throughput at 128 tokens
32
  - All models fully GPU-offloaded (ngl=99)
33
 
34
- ## Hardware
35
-
36
- | Component | Spec |
37
- |---|---|
38
- | GPU | NVIDIA GeForce RTX 5090 32GB (Blackwell, sm_120a) |
39
- | CPU | AMD Ryzen 5 9600 (6c/12t) |
40
- | RAM | 64GB DDR5-5600 |
41
- | OS | Ubuntu 26.04 LTS |
42
- | CUDA | 12.8 (patched for glibc 2.41) |
43
-
44
- ## Schema
45
 
46
  | Column | Description |
47
- |---|---|
48
  | `model` | Model name |
49
  | `architecture` | Dense or MoE (with active param count) |
50
  | `params_b` | Total parameters in billions |
@@ -59,13 +81,25 @@ Speed benchmarks for quantized LLMs on NVIDIA RTX 5090 32GB, measured with [llm-
59
  | `stddev` | Standard deviation |
60
  | `date` | Benchmark date |
61
 
62
- ## Key findings
63
 
64
  MoE (3B active) vs Dense (27B) on same-family Qwen3.6 models:
65
  - Prompt processing: **2.4x faster** across all context lengths
66
  - Text generation: **3.5x faster** (271 vs 77 t/s)
67
  - Both degrade ~17% at 16K context (attention + VRAM, not parameter count)
68
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  ## Tooling
70
 
71
- Benchmarks generated with [llm-bench-rig](https://github.com/notwitcheer/llm-bench-rig) — open-source benchmark pipeline for GGUF and safetensors models.
 
11
  - llama-cpp
12
  - vllm
13
  - speed
14
+ - quality
15
+ - mmlu
16
+ - gsm8k
17
+ - humaneval
18
  - moe
19
  size_categories:
20
  - n<1K
 
27
 
28
  # RTX 5090 LLM Benchmarks
29
 
30
+ Speed and quality benchmarks for quantized LLMs on NVIDIA RTX 5090 32GB, measured with [llm-bench-rig](https://github.com/notwitcheer/llm-bench-rig).
31
 
32
+ ## Quality Benchmarks
33
+
34
+ Generative evaluation through llama-server chat completions. Replicates standard benchmark methodology using custom evaluators — no `lm-evaluation-harness` dependency.
35
+
36
+ | Model | Params | Quant | MMLU | ARC-C | HellaSwag | GSM8K | HumanEval |
37
+ |-------|-------:|-------|-----:|------:|----------:|------:|----------:|
38
+ | gpt-oss-20b | 20.91B | Q4_K_M | 78.6 | 94.6 | 74.5 | 94.8 | 12.2 |
39
+
40
+ > More models coming — Qwen3.6-27B, Qwen3.6-35B-A3B, Gemma 4 31B, Nemotron-Cascade-2 30B, Qwen3-Coder-Next queued.
41
+
42
+ ### Methodology
43
+
44
+ | Benchmark | Dataset | Few-shot | Scoring | Items |
45
+ |-----------|---------|----------|---------|------:|
46
+ | MMLU | `cais/mmlu` | 5-shot | Letter extraction (A/B/C/D) | 14,042 |
47
+ | ARC-Challenge | `allenai/ai2_arc` | 25-shot | Letter extraction | 1,172 |
48
+ | HellaSwag | `Rowan/hellaswag` | 10-shot | Letter extraction | 10,042 |
49
+ | GSM8K | `openai/gsm8k` | 5-shot CoT | Exact numeric match | 1,319 |
50
+ | HumanEval | `openai/openai_humaneval` | 0-shot | pass@1 (code execution) | 164 |
51
+
52
+ All benchmarks run at `temperature=0` with `max_tokens=2048` (accommodates thinking/reasoning models). Multiple-choice tasks use generative letter extraction instead of loglikelihood scoring — scores are internally consistent for model comparison but may differ from logprob-based evaluations by 5-15%.
53
+
54
+ Full per-model reports with MMLU category breakdowns, parse reliability stats, and speed data: [`reports/`](reports/)
55
+
56
+ ---
57
+
58
+ ## Speed Benchmarks
59
+
60
+ ### What's measured
61
 
62
  - **Prompt processing (pp)**: parallel batched token throughput at context lengths 128, 512, 2048, 4096, 8192, 16384
63
  - **Text generation (tg)**: sequential autoregressive token throughput at 128 tokens
64
  - All models fully GPU-offloaded (ngl=99)
65
 
66
+ ### Speed data schema
 
 
 
 
 
 
 
 
 
 
67
 
68
  | Column | Description |
69
+ |--------|-------------|
70
  | `model` | Model name |
71
  | `architecture` | Dense or MoE (with active param count) |
72
  | `params_b` | Total parameters in billions |
 
81
  | `stddev` | Standard deviation |
82
  | `date` | Benchmark date |
83
 
84
+ ### Key findings
85
 
86
  MoE (3B active) vs Dense (27B) on same-family Qwen3.6 models:
87
  - Prompt processing: **2.4x faster** across all context lengths
88
  - Text generation: **3.5x faster** (271 vs 77 t/s)
89
  - Both degrade ~17% at 16K context (attention + VRAM, not parameter count)
90
 
91
+ ---
92
+
93
+ ## Hardware
94
+
95
+ | Component | Spec |
96
+ |-----------|------|
97
+ | GPU | NVIDIA GeForce RTX 5090 32GB (Blackwell, sm_120a) |
98
+ | CPU | AMD Ryzen 5 9600 (6c/12t) |
99
+ | RAM | 64GB DDR5-5600 |
100
+ | OS | Ubuntu 26.04 LTS |
101
+ | CUDA | 12.8 (patched for glibc 2.41) |
102
+
103
  ## Tooling
104
 
105
+ All benchmarks generated with [llm-bench-rig](https://github.com/notwitcheer/llm-bench-rig) — open-source pipeline for speed and quality benchmarks on GGUF and safetensors models.