PC for Ollama 2026: what hardware to run your LLMs locally?


By 2026, Ollama has become the go-to tool for running LLMs locally — a single command to download a model, an OpenAI-compatible API on localhost:11434, and the ability to run Llama 4, Qwen 3.5, DeepSeek V4, or Gemma 4 directly on your own machine. But what kind of PC do you need to get truly usable performance? This guide answers that question precisely, with real benchmarks and tested hardware recommendations.


What is Ollama and why is everyone using it in 2026?

Ollama is an open-source LLM runtime that downloads, runs, and exposes AI models locally — entirely on your machine, without any cloud connection. Its adoption has exploded in 2026 for three reasons:

  • One command to get started. No complex setup, no managing weights, quantization, or runtime compilation.
  • OpenAI-compatible API. Any application designed for ChatGPT can switch to Ollama by simply changing the URL — localhost:11434 instead of api.openai.com.
  • Library of 500+ models. Llama 4 Scout, Qwen 3.5, DeepSeek V4, Gemma 4, Mistral, Phi-4, Qwen2.5-Coder — all available with a single ollama pull command.

Installation is a one-liner:

curl -fsSL https://ollama.com/install.sh | sh
ollama pull qwen3:14b
ollama run qwen3:14b

In less than 5 minutes, you have a functional local LLM — accessible from your browser (via Open WebUI), from your code editor, or from any application via the REST API.


The critical factor for Ollama: VRAM

Ollama loads model weights into GPU memory. If everything fits into VRAM, you get 40 to 80 tokens/second on an RTX 5060 Ti 16 GB. If the model spills over to system RAM, performance plummets:

⚠️ The VRAM spillover trap: According to LocalLLM.in benchmarks (February 2026), a Qwen 3 8B model goes from 40 tok/s with full VRAM to only 8 tok/s when 11 of 36 layers have to move to RAM — a 5x drop. On heavier models, the slowdown can be up to 30x slower. The bottleneck is the PCIe bandwidth between system RAM and VRAM.

Conclusion: It's better to choose a smaller model that fits entirely into VRAM than a large model that spills over. A Qwen 3.5 14B at 60 tok/s is more useful than a Llama 3.3 70B struggling at 4 tok/s.


VRAM needed by Ollama model (Q4_K_M, May 2026)

GPU VRAM Compatible Models 2026 Examples Approx. Speed
5-8 GB Up to 9B Llama 3.1 8B, DeepSeek-R2 8B, Qwen3 8B, Gemma 3 4B 40-90 tok/s
12 GB Up to 17B MoE Llama 4 Scout 17B, Gemma 3 12B 30-50 tok/s
16 GB ⭐ Sweet spot 13B-14B dense / 17B MoE Qwen 3.5 14B, Mistral Medium 3.5, Phi-4 14B 40-70 tok/s
20 GB Up to 32B Qwen2.5-Coder 32B, DeepSeek-R1 32B 25-40 tok/s
24 GB Up to 27B comfortably Gemma 4 26B QAT (85 tok/s measured) 30-60 tok/s
32 GB (RTX 5090) Up to 70B in Q4 Llama 3.3 70B (86.0 MMLU), Qwen 3.5 72B 15-30 tok/s
48 GB+ (multi-GPU) 70B FP16 or Q5/Q6 Llama 3.3 70B FP16 with 32K context 10-20 tok/s
128 GB unified (GB10) 200B+ Models DeepSeek V4 Flash FP16, Llama 4 Maverick 20-40 tok/s

Sources: Actual Ollama benchmarks from Morph (April 2026), glukhov.org (RTX 4080 16 GB, March 2026), LocalAIMaster (March 2026). VRAM measured with 8K-19K context using Q4_K_M quantization. Actual values vary depending on the loaded context.


Best Ollama models in May 2026 by category

Category Recommended Model Ollama Command VRAM
General purpose Llama 4 Scout 17B ollama pull llama4:scout ~10 GB
French / multilingual Qwen 3.5 14B ollama pull qwen3.5:14b ~10 GB
Pure speed (85 tok/s) Gemma 4 26B QAT ollama pull gemma4:26b ~14 GB
Code ⭐ #1 open source Qwen2.5-Coder 32B ollama pull qwen2.5-coder:32b ~20 GB
Math/logic reasoning DeepSeek-R2 8B ollama pull deepseek-r2:8b ~5 GB
STEM / structured analysis Phi-4 14B (80.4% MATH) ollama pull phi4 ~10 GB
Small / light Llama 3.1 8B (111M+ downloads) ollama pull llama3.1:8b ~5 GB
Maximum quality Llama 3.3 70B (86.0 MMLU) ollama pull llama3.3:70b ~40 GB
💡 Good to know: Qwen2.5-Coder 32B achieves 92.7% on HumanEval — a score that rivals GPT-4o on code, while running on an RTX 4080 / 5080 (20 GB VRAM). This is one of the biggest qualitative leaps in local AI in 2026.


Beyond the GPU: what else matters for Ollama


System RAM (DDR5 >> DDR4)

If your model spills over to system RAM, its speed directly depends on memory bandwidth. DDR5-6000 offers 15-25% more performance than DDR4-3200 in CPU offloading mode. For Ollama, prioritize at least 32 GB DDR5 on an AM5 platform.


Fast NVMe SSD

Ollama models range from 5 GB (Llama 3.1 8B) to 40 GB (Llama 3.3 70B). A Gen 4 NVMe SSD loads a 14B model in 5-8 seconds on the first ollama run. On a SATA SSD, expect 30-60 seconds.


CPU and threads

For pure GPU inference, the CPU matters little. But as soon as there's CPU offloading or RAG (retrieval augmented generation), a Ryzen 7 or 9 with 12-16 cores makes a difference. AVX-512 (Intel 12th Gen+, AMD Zen 4+) accelerates CPU inference by 10-20%.


Essential Ollama commands

# Install Ollama (Linux/macOS)
curl -fsSL https://ollama.com/install.sh | sh

# Download and run a model
ollama pull qwen3.5:14b
ollama run qwen3.5:14b

# List installed models
ollama list

# Stop a model (free up VRAM)
ollama stop qwen3.5:14b

# View GPU/CPU usage
OLLAMA_DEBUG=1 ollama run llama3.1:8b "test" 2>&1 | grep "layers"

# Force a specific number of GPU layers
ollama run llama3.1:8b --gpu-layers 28


Common errors to avoid

  • Choosing Q2_K to fit a large model — severe quality degradation. A 34B model in Q6_K is better than a 70B in Q2_K.
  • Ignoring KV cache — an 8B model with 32K context requires ~4.5 GB extra for the attention cache. Leave 2-4 GB of VRAM margin.
  • Loading multiple models simultaneously — Ollama keeps them in VRAM by default. Use ollama stop to free up memory.
  • Underestimating RAM — 32 GB DDR5 minimum for serious use. 64 GB for 30B+ models with CPU offloading.


Our PCs optimized for Ollama — pre-configured with Ollama + Open WebUI

Radiance Systems designs workstations dedicated to local LLM inference. Each machine is delivered with Ollama and Open WebUI pre-installed and configured upon request, with your chosen models already downloaded. You start your PC and chat with your AI in less than 2 minutes.

⭐ 200B+ Models · Silent Mini-format
NVIDIA GB10 ASUS Ascent GX10 Mini AI Server - Ollama PC 200B parameters

NVIDIA GB10 Mini AI Server — ASUS Ascent GX10

Chip NVIDIA GB10 Grace Blackwell
Memory 128 GB Unified LPDDR5X
AI Power 1 petaFLOP FP4
Form Factor 150×150×51 mm
OS DGX OS (Ubuntu, CUDA)
Storage NVMe 4 TB

✅ Llama 4 Maverick FP16 · DeepSeek V4 Flash FP16 · Models up to 200B parameters

The only desktop system capable of running models that even an RTX 5090 cannot hold in VRAM. 128 GB of unified memory, GPU and CPU fused via NVLink-C2C at 900 GB/s. Ideal for a demanding office requiring maximum capacity in an ultra-compact and silent format.

€3,999 starting from

Delivered ready to use · DGX OS · Native Ollama

Configure this server →
Entry-level · Ollama sweet spot
Radiance PC CoreAI 16 RTX 5060 Ti 16Go - Ollama PC Qwen 14B Mistral

Radiance PC CoreAI 16 — RTX 5060 Ti 16 GB

CPU AMD Ryzen 5 7500F
GPU RTX 5060 Ti 16 GB GDDR7
RAM DDR5 16 GB
Storage NVMe 1 TB
OS Windows 11 Pro / Ubuntu
Bandwidth ~672 GB/s

✅ Qwen 3.5 14B · Mistral Medium 3.5 · Llama 4 Scout 17B · Phi-4 14B
Measured speed: 40-70 tokens/second

The 2026 sweet spot for Ollama. 16 GB GDDR7 to run 14B models entirely on the GPU without CPU offloading. AM5 DDR5 platform for RAG pipelines. Ideal entry point for a liberal professional.

€1,703 starting from

Ollama + Open WebUI pre-installed on request

Configure this workstation →
Code & 30B Models
Radiance PC CoreAI 32 RTX 5070 Ti - Ollama PC Qwen2.5-Coder 32B

Radiance PC CoreAI 32 — RTX 5070 Ti 16 GB

CPU AMD Ryzen 9 9900X
GPU RTX 5070 Ti 16 GB GDDR7
RAM DDR5 32 GB
Storage NVMe 1 TB
OS Windows 11 Pro / Ubuntu
Bandwidth ~1,280 GB/s

✅ Qwen2.5-Coder 32B (92.7% HumanEval) · Gemma 4 26B · DeepSeek-R1 32B
Measured speed: 25-45 tokens/second

For demanding developers and professionals. 1.9x higher memory bandwidth than RTX 5060 Ti, ideal for 27B-32B models. The Ryzen 9 9900X handles RAG pipelines and n8n orchestration in parallel.

€2,442 starting from

Models pre-downloaded on request (Qwen3.5, Mistral, DeepSeek)

Configure this workstation →
70B Models · The best GPU of 2026
Radiance PC CoreAI 64 RTX 5090 32Go - Ollama PC Llama 3.3 70B

Radiance PC CoreAI 64 — RTX 5090 32 GB

CPU AMD Ryzen 9 9950X3D
GPU RTX 5090 32 GB GDDR7
RAM DDR5 64 GB
Storage NVMe 1 TB
Bandwidth 1,792 GB/s
Power Supply 1,200 W 80+ Gold

✅ Llama 3.3 70B Q4 (86.0 MMLU) · Qwen 3.5 72B · DeepSeek V4 Flash
Measured speed: 15-30 tokens/second on 70B

The best consumer GPU for Ollama in 2026. 1,792 GB/s memory bandwidth — a consumer market record. Llama 3.3 70B Q4 entirely on GPU, performance almost equivalent to GPT-4o on most tasks.

€6,042 starting from

Light fine-tuning possible · LoRA compatible

Configure this workstation →
Multi-user · 64 GB VRAM
Radiance CoreAI Rack 2x RTX 5090 - multi-user Ollama server

Radiance CoreAI Rack — 2× RTX 5090 (64 GB VRAM)

CPU AMD Ryzen 9 9950X3D
GPU 2× RTX 5090 32 GB
Total VRAM 64 GB GDDR7
RAM DDR5 128 GB
Form Factor Rack 4U
Power Supply 2,000 W Platinum

✅ Llama 3.3 70B FP16 · Qwen 3.5 235B Q4 · Simultaneous multi-GPU inference

For teams of 5 to 20 users sharing an Ollama server. Concurrent inference on two independent GPUs — each user has their dedicated stream. Ideal for offices with multiple collaborators.

€11,221 starting from

Custom-made · 4U Rack · Multi-tenant Ollama server

Configure this rack →
Production · ECC · 192 GB VRAM
Radiance CoreAI Rack 2x RTX 6000 Blackwell ECC - Ollama production server

CoreAI 128 Rack — 2× RTX 6000 PRO Blackwell (192 GB ECC)

CPU AMD Ryzen 9 9950X3D
GPU 2× RTX 6000 96 GB ECC
Total VRAM 192 GB ECC
RAM 128 GB DDR5
Form factor 4U Rack
Power supply 2,000 W Platinum

✅ All Ollama models in native precision · Fine-tuning 70B+ · 24/7 Production

Professional GPUs with ECC memory for continuous production. 192 GB of ECC VRAM allows running the largest open-source models in native precision (FP16). Maximum reliability for critical environments.

€27,980 starting from

On-site installation possible · Dedicated support

Configure this rack →
Threadripper PRO · HPC · 2 TB RAM max
Radiance PC Pro AI Ultra Threadripper - Ollama HPC training station

Radiance PC Pro AI Ultra Threadripper

CPU Threadripper PRO 7955WX 16c
GPU RTX 6000 Blackwell 96 GB
RAM 128 GB ECC DDR5 RDIMM
Max RAM Up to 2 TB ECC
Form factor 4U Rack
Power supply 2,000 W Platinum

✅ Distributed training · Massive RAG pipelines · HPC · Intensive fine-tuning

The ultimate workstation for demanding production environments. Threadripper PRO sTR5 platform expandable up to 96 cores and 2 TB ECC RAM. For mixed workloads: Ollama + vector databases + n8n orchestration + training.

€20,213 starting from

Custom-made · Personalized quote · On-site installation

Request a quote →


Which PC for Ollama based on your profile?

Profile Configuration Typical Ollama model Budget
Discovery / small personal use RTX 5060 Ti 16 GB (CoreAI 16) Qwen 3.5 14B, Llama 4 Scout ~€1,700
Compact professional office ⭐ ASUS Ascent GX10 (GB10) DeepSeek V4 Flash FP16, 200B+ ~€4,000
Developer / data scientist CoreAI 32 RTX 5070 Ti Qwen2.5-Coder 32B, DeepSeek-R1 32B ~€2,400
70B models locally CoreAI 64 RTX 5090 Llama 3.3 70B Q4 ~€6,000
Team of 5-20 shared users Rack 2× RTX 5090 Llama 3.3 70B FP16, multi-tenant ~€11,000
Critical 24/7 production Rack 2× RTX 6000 ECC All models, native FP16 ~€28,000


Ollama use cases by profession

  • Lawyers & Notaries — Qwen 3.5 14B + Open WebUI: contract analysis, client file research, drafting legal documents. All local, GDPR compliant, and professional secrecy maintained.
  • Doctors & Clinics — Mistral Medium 3.5 + RAG: dictated reports, patient history analysis, medical documentation database. No data reaches a cloud server.
  • Accountants — DeepSeek-R2 8B + Phi-4 14B: balance sheet analysis, anomaly detection, report generation. Confidential figures never uploaded elsewhere.
  • Developers — Qwen2.5-Coder 32B + Ollama API: code completion in VS Code/Cursor, debugging, refactoring. OpenAI compatible API, 3-line integration.
  • SMEs & Businesses — Llama 4 Scout + n8n + vector database: internal AI assistant connected to your documents, procedures, CRM. Deployment on a private network.


Frequently Asked Questions — PC for Ollama


What is the minimum GPU for Ollama?

8 GB of VRAM (RTX 4060, RTX 5060) is sufficient for 7-8B models like Llama 3.1 8B or DeepSeek-R2 8B. But the 2026 sweet spot is 16 GB of VRAM (RTX 5060 Ti 16 GB or RTX 5070 Ti) — you get access to 13-14B and 17B MoE models like Qwen 3.5 14B, Mistral Medium 3.5, or Llama 4 Scout, which offer significantly higher quality for only a €200-€400 GPU price difference.


Does Ollama work without a dedicated GPU?

Yes, Ollama can run on CPU only. But speeds drop to 3-8 tokens/second on a 7B model with a modern CPU — frustrating for interactive use. A GPU with 8GB+ VRAM is highly recommended for a fluid experience (30+ tok/s).


How do I know if my model fits in VRAM?

Run OLLAMA_DEBUG=1 ollama run [model] "test" — the logs will indicate how many layers are loaded on the GPU vs. CPU. If less than 100% are on the GPU, your model is too large. Choose a lower quantization (Q4_K_M minimum) or a smaller model.


Do I need Windows or Linux for Ollama?

Both work very well. Linux (Ubuntu) offers the best raw performance and optimal CUDA support. Windows 11 simplifies daily use and is compatible with WSL2 for developers. Our workstations come with your choice of OS.


What interface should I use with Ollama?

Open WebUI is the most popular web interface in 2026 — ChatGPT-like, deployable via Docker, native document RAG management. LM Studio offers a desktop alternative with an integrated GUI. Our Radiance PCs can be delivered with either pre-installed according to your preference.


Can I fine-tune on these Ollama PCs?

LoRA fine-tuning (parameter-efficient) is possible starting from 16 GB of VRAM for 7B-8B models. For serious fine-tuning on 14B-32B, 24 GB+ is needed (CoreAI 32 or higher). For 70B+ models, expect 48 GB+ with multi-GPU.

 

Back to the blog

Your quote for a custom AI solution within 24–48 hours

Every Radiance project begins with a conversation. Fill out this form and an expert will respond promptly with a solution tailored to your business and budget.

Response within 24–48 business hours
Delivery throughout Europe (EU)
2-year warranty included
On-site installation possible
No commitment required
Dedicated support before and after purchase
01 What is your primary use for AI?
Multiple choice.
02 In what context will the system be used?
Single choice.
03 What type of system are you looking for?
Single choice.
04 Which operating system do you prefer?
Single choice.
05 What are your expectations for the software?
Multiple choice.
06 What is your indicative budget?
Single choice.
07 When would you like to receive your system?
Single choice.
08 Would you like help with the setup?
Single choice. A Radiance technician can assist you remotely or in person.
09 Delivery Country (EU only) *
We only deliver within the European Union (EU).
10 Additional Information (optional but very helpful)
Please briefly describe your project, specific constraints, or any useful information.
11 Would you like to be contacted to discuss your project?
If you choose "Quote only", you can reply to our email to ask your questions and refine the quote.
12 Email *
We will send the quote to this address.

Any more questions?

Send us an email at contact@radiancesystems.eu or contact us via the contact form. We respond to all inquiries within 3 hours during business hours (Monday to Friday, 9am to 5pm).

📞 +33 4 65 84 48 21