mreltera commited on
Commit
82c6a53
·
verified ·
1 Parent(s): f898e2b

Upload 24 files

Browse files
.gitattributes CHANGED
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ benchmark_report.pdf filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,104 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ language:
4
+ - en
5
+ pretty_name: NVIDIA GB10 vs RTX 5090 Local LLM Benchmark
6
+ tags:
7
+ - benchmark
8
+ - local-llm
9
+ - qwen3-coder
10
+ - nvidia
11
+ - gb10
12
+ - rtx-5090
13
+ - lm-studio
14
+ - tabular
15
  ---
16
+
17
+ # NVIDIA GB10 vs. GeForce RTX 5090 - Local LLM Inference Benchmark
18
+
19
+ **Model:** Qwen3-Coder-30B-A3B-Instruct
20
+ **Format:** GGUF, Q4_K_M, 18.63 GB
21
+ **Runtime:** LM Studio / llama.cpp
22
+ **Author:** Efehan A.
23
+ **Benchmark date:** 5 August 2026
24
+
25
+ This repository contains a decode-focused local inference benchmark comparing an NVIDIA GB10 system with a Windows workstation containing two GeForce RTX 5090 GPUs. Telemetry shows that the inference workload was carried primarily by a single RTX 5090 (GPU 0), while GPU 1 remained mostly idle.
26
+
27
+ ## Headline result
28
+
29
+ | Platform | Output | Runs | Mean tokens/s | Std. dev. | Mean TTFT | Mean generation time |
30
+ |---|---:|---:|---:|---:|---:|---:|
31
+ | NVIDIA GB10 | 512 | 5 | **44.93** | 0.02 | 0.0862 s | 11.374 s |
32
+ | GeForce RTX 5090 | 512 | 5 | **243.46** | 1.32 | 0.0280 s | 2.099 s |
33
+ | NVIDIA GB10 | 1024 | 5 | **43.80** | 0.03 | 0.1000 s | 23.355 s |
34
+ | GeForce RTX 5090 | 1024 | 5 | **240.97** | 0.89 | 0.0320 s | 4.245 s |
35
+
36
+ **Observed RTX 5090 throughput advantage:** 5.42x at 512 tokens and 5.50x at 1024 tokens.
37
+
38
+ ![Mean 512-token decode throughput](assets/chart_throughput_comparison.png)
39
+
40
+ ## Test configuration
41
+
42
+ - Model: `Qwen3-Coder-30B-A3B-Instruct`
43
+ - Architecture reported by LM Studio: `qwen3moe`
44
+ - Quantization: `Q4_K_M`
45
+ - GPU offload: 48 layers / maximum
46
+ - Evaluation batch size: 512
47
+ - Max concurrent predictions: 1
48
+ - Unified KV cache: enabled
49
+ - KV cache GPU offload: enabled
50
+ - Flash Attention: enabled
51
+ - K/V cache quantization: disabled
52
+ - API request temperature: 0
53
+ - One warm-up request followed by five measured requests per batch
54
+
55
+ ## Benchmark batches
56
+
57
+ 1. GB10, 512 completion tokens, five measured runs.
58
+ 2. GB10, 1024 completion tokens, five measured runs.
59
+ 3. RTX 5090, 512 completion tokens, five measured runs.
60
+ 4. RTX 5090, 1024 completion tokens, five measured runs.
61
+
62
+ ## Repeatability
63
+
64
+ ![Run stability](assets/chart_run_stability.png)
65
+
66
+ Throughput coefficients of variation were approximately **0.04%** and **0.07%** on GB10, and **0.54%** and **0.37%** on RTX 5090. The cross-platform difference is much larger than run-to-run variation.
67
+
68
+ ## 1024-token sustained generation
69
+
70
+ ![1024-token throughput](assets/chart_output_scaling.png)
71
+
72
+ At 1024 tokens, RTX 5090 averaged **240.97 tokens/s** versus **43.80 tokens/s** on GB10. Doubling output length reduced throughput by only **2.50%** on GB10 and **1.02%** on RTX 5090.
73
+
74
+ ## Interpretation
75
+
76
+ The tested 18.63 GB model fits inside the RTX 5090's 32 GB GDDR7 memory. NVIDIA specifies 1,792 GB/s peak memory bandwidth for the RTX 5090, compared with 273 GB/s for the GB10 unified-memory platform. The measured decode gap is directionally consistent with the large bandwidth difference, although operating system, runtime version and kernel differences prevent single-cause attribution.
77
+
78
+ The systems target different deployment priorities:
79
+
80
+ - **RTX 5090:** maximum single-stream decode speed when the model fits in 32 GB.
81
+ - **GB10:** 128 GB unified-memory capacity for larger models, larger KV caches and longer-context workloads that do not fit on a single RTX 5090.
82
+
83
+ ## Important limitations
84
+
85
+ - The 512-token benchmark output reports context 8192 on GB10 and 10132 on RTX, despite load-status captures showing 8192 on both systems. The corrected 1024-token results report context 8192 on both systems.
86
+ - Runtime builds differed: ARM64/Linux CUDA 13 versus x86-64/Windows CUDA 12.
87
+ - CPU thread settings differed: 20 on GB10 and 8 on RTX.
88
+ - No direct prompt-prefill benchmark was completed.
89
+ - Power efficiency is not compared because GB10 SoC telemetry and discrete-GPU board power are not directly equivalent.
90
+ - Only one model, quantization and inference application were tested.
91
+
92
+ ## Files
93
+
94
+ - [`benchmark_report.pdf`](benchmark_report.pdf) - full professional report
95
+ - [`benchmark_summary.csv`](benchmark_summary.csv) - aggregate results
96
+ - [`run_level_results.csv`](run_level_results.csv) - all measured runs
97
+ - [`evidence/`](evidence/) - public-release screenshots
98
+
99
+ ## References
100
+
101
+ 1. NVIDIA DGX Spark Hardware Overview: https://docs.nvidia.com/dgx/dgx-spark/hardware.html
102
+ 2. NVIDIA GeForce RTX 5090 Specifications: https://www.nvidia.com/en-us/geforce/graphics-cards/50-series/rtx-5090/
103
+ 3. NVIDIA RTX Blackwell GPU Architecture: https://images.nvidia.com/aem-dam/Solutions/geforce/blackwell/nvidia-rtx-blackwell-gpu-architecture.pdf
104
+ 4. LM Studio REST API v0: https://lmstudio.ai/docs/developer/rest/endpoints
assets/chart_output_scaling.png ADDED

Git LFS Details

  • SHA256: 82877c1a17e4561b34c31328e8352d23cff66b50a93752c2219d64d649427cf1
  • Pointer size: 130 Bytes
  • Size of remote file: 38.4 kB
assets/chart_run_stability.png ADDED

Git LFS Details

  • SHA256: c47402eba5c8b5b91427a55f5d86eda22dd172438806c556c542dc68fef12642
  • Pointer size: 131 Bytes
  • Size of remote file: 112 kB
assets/chart_throughput_comparison.png ADDED

Git LFS Details

  • SHA256: 8348c1c5cc3fadb8a74bb49c8977d853a61a2ca4d7cbc6a26d8a242fe41e9202
  • Pointer size: 130 Bytes
  • Size of remote file: 38.7 kB
assets/chart_ttft.png ADDED

Git LFS Details

  • SHA256: 28b417b0fdf61b4491c60e5d2ed017689df28900b868638c346bf0010108edb3
  • Pointer size: 130 Bytes
  • Size of remote file: 34.9 kB
benchmark_report.pdf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6410f323a9fc73d185f3e92a66115148aa329834cd5dda1b9cf13ee1a0ea52c
3
+ size 2131581
benchmark_summary.csv ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ Platform,Output tokens / batch,Runs,TPS mean,TPS stdev,TTFT mean s,TTFT stdev s,Generation mean s,Generation stdev s,Reported context,Quant
2
+ NVIDIA GB10,512,5,44.926,0.018165902124586224,0.0862,0.0209093280618962,11.3742,0.004549725266431083,8192,Q4_K_M
3
+ GeForce RTX 5090,512,5,243.458,1.3222594299153276,0.028,0.009354143466934854,2.099,0.011423659658795946,10132,Q4_K_M
4
+ NVIDIA GB10,1024,5,43.802,0.029495762407507453,0.09999999999999999,0.040218155104380406,23.3552,0.01386362146049874,8192,Q4_K_M
5
+ GeForce RTX 5090,1024,5,240.96800000000002,0.8928997704109899,0.032,0.010954451150103323,4.2454,0.015725775020646888,8192,Q4_K_M
evidence/LmspsNvidiaGB10.png ADDED

Git LFS Details

  • SHA256: b9a5e75fbd323c3fc5d2d3971e40c1c93876e965d48f7bff84e046b762f41d7b
  • Pointer size: 129 Bytes
  • Size of remote file: 6.59 kB
evidence/LmspsRtx.png ADDED

Git LFS Details

  • SHA256: 3d100e428d83ac059644b98aa4d367354daf9d6d8337f620c1b8438fb138ba38
  • Pointer size: 130 Bytes
  • Size of remote file: 12.9 kB
evidence/NvdiaGB10Smi.png ADDED

Git LFS Details

  • SHA256: 9a9ea2ac06da4d82cee002d38102543d784f4053ca4f54176e8b68450d4eedcf
  • Pointer size: 130 Bytes
  • Size of remote file: 68.3 kB
evidence/NvidiaGB10-2.Smi.png ADDED

Git LFS Details

  • SHA256: fcfab5c8f94e0a58be361ed144a4a5e3bde62a9255e09688348daf8c9a703d0f
  • Pointer size: 130 Bytes
  • Size of remote file: 68.8 kB
evidence/NvidiaGB10-2.TestResults.png ADDED

Git LFS Details

  • SHA256: de6edb805eb28df03c8a28f129f44a1c8c701aee2edd9a1b072e9e974ffdf9ee
  • Pointer size: 130 Bytes
  • Size of remote file: 20.9 kB
evidence/NvidiaGB10Inference.png ADDED

Git LFS Details

  • SHA256: 7265b469ac7bf60a3e54b05c969a8835c2222664081ceb7ec2d5847b77d48df2
  • Pointer size: 130 Bytes
  • Size of remote file: 39.8 kB
evidence/NvidiaGB10Info.png ADDED

Git LFS Details

  • SHA256: 374ecd644983c1694f136f87c2510f2ace83cddf6a9e3052f2b0168ef96afce7
  • Pointer size: 130 Bytes
  • Size of remote file: 31.3 kB
evidence/NvidiaGB10Load.png ADDED

Git LFS Details

  • SHA256: 3a1504ce02b3c821676b46c2c071b2f6c5c976f9c144235ee5d83ea8ec9dd52b
  • Pointer size: 130 Bytes
  • Size of remote file: 48.1 kB
evidence/NvidiaGB10TestResults.png ADDED

Git LFS Details

  • SHA256: ebf0ace2c7715447e640fc3ef59776654e49885f20866e5636796049d9a293ac
  • Pointer size: 130 Bytes
  • Size of remote file: 19.8 kB
evidence/Rtx5090-2.Smi.PNG ADDED
evidence/Rtx5090-2.TestResults.PNG ADDED
evidence/Rtx5090Smi.png ADDED

Git LFS Details

  • SHA256: 51575061b30335be13c303429787ded2db5baed61a984abe61931aaea767b7a6
  • Pointer size: 130 Bytes
  • Size of remote file: 48.1 kB
evidence/Rtx5090TestResults.png ADDED

Git LFS Details

  • SHA256: 003643329667ca1ef1e50edfb2f9223d2269f095efd6541e2612f805171ce8c5
  • Pointer size: 129 Bytes
  • Size of remote file: 6.78 kB
evidence/RtxInference.png ADDED

Git LFS Details

  • SHA256: dd6fcf9e187a46d022f7e9a77a90444237721a5927a6a4d17a046cab2495cf22
  • Pointer size: 130 Bytes
  • Size of remote file: 29.2 kB
evidence/RtxInfo.png ADDED

Git LFS Details

  • SHA256: 851e654019a1c723e3bb0ebd74b6dc1abf8dae9e0a30907e460c46325b46086c
  • Pointer size: 130 Bytes
  • Size of remote file: 29.3 kB
evidence/RtxLoad.png ADDED

Git LFS Details

  • SHA256: 8b18ef3667e1508188b2b4a2c6b69bdd3a7034d2947e8fa059875ed4b59e95ed
  • Pointer size: 130 Bytes
  • Size of remote file: 43.7 kB
run_level_results.csv ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ platform,batch,run,completion_tokens,tokens_per_second,ttft_seconds,generation_seconds,reported_context,quant
2
+ NVIDIA GB10,512-token,1,512,44.9,0.107,11.381,8192,Q4_K_M
3
+ NVIDIA GB10,512-token,2,512,44.92,0.111,11.376,8192,Q4_K_M
4
+ NVIDIA GB10,512-token,3,512,44.93,0.071,11.373,8192,Q4_K_M
5
+ NVIDIA GB10,512-token,4,512,44.95,0.069,11.369,8192,Q4_K_M
6
+ NVIDIA GB10,512-token,5,512,44.93,0.073,11.372,8192,Q4_K_M
7
+ NVIDIA GB10,1024-token,1,1024,43.81,0.146,23.351,8192,Q4_K_M
8
+ NVIDIA GB10,1024-token,2,1024,43.79,0.142,23.36,8192,Q4_K_M
9
+ NVIDIA GB10,1024-token,3,1024,43.81,0.073,23.353,8192,Q4_K_M
10
+ NVIDIA GB10,1024-token,4,1024,43.76,0.07,23.375,8192,Q4_K_M
11
+ NVIDIA GB10,1024-token,5,1024,43.84,0.069,23.337,8192,Q4_K_M
12
+ GeForce RTX 5090,512-token,1,512,244.85,0.042,2.087,10132,Q4_K_M
13
+ GeForce RTX 5090,512-token,2,512,243.8,0.033,2.096,10132,Q4_K_M
14
+ GeForce RTX 5090,512-token,3,512,242.07,0.02,2.111,10132,Q4_K_M
15
+ GeForce RTX 5090,512-token,4,512,244.5,0.024,2.09,10132,Q4_K_M
16
+ GeForce RTX 5090,512-token,5,512,242.07,0.021,2.111,10132,Q4_K_M
17
+ GeForce RTX 5090,1024-token,1,1024,242.24,0.043,4.223,8192,Q4_K_M
18
+ GeForce RTX 5090,1024-token,2,1024,240.31,0.041,4.257,8192,Q4_K_M
19
+ GeForce RTX 5090,1024-token,3,1024,241.5,0.035,4.236,8192,Q4_K_M
20
+ GeForce RTX 5090,1024-token,4,1024,240.08,0.022,4.261,8192,Q4_K_M
21
+ GeForce RTX 5090,1024-token,5,1024,240.71,0.019,4.25,8192,Q4_K_M
Free AI Image Generator No sign-up. Instant results. Open Now