Best PC for Qwen 3.8 27B: The VRAM you really need

"It runs on 17 GB."
That's true. And it's misleading.

Qwen 3.8-27B loads on a 16 GB card. Its performance varies depending on how you use it.

27B denseApache 2.0
256K contextnative
Vision includedtext and image
~17 GB in 4-bitweights only

Qwen 3.8-27B is currently the most discussed open model. A dense model with 27 billion parameters, published by Alibaba under an Apache 2.0 license, it combines reasoning, agentic capabilities, coding, and vision, with a native context window of 256,000 tokens.

Everywhere, the same figure is cited: it runs on approximately 17 GB. This figure is accurate. It simply doesn't tell the whole truth.


The 17 GB trap

Weights are the floor, not the total

The advertised 17 GB corresponds to the weight of the 4-bit quantized model. This is what is loaded at startup, before you've even asked a single question.

Then comes the KV cache. It stores the conversation context and grows with each token processed. In a long context, it alone can double the memory footprint.

In addition, there are execution buffers, CUDA graphs, the visual encoder if you're processing images, and the memory consumed by each concurrent session. Multi-token prediction, if enabled, requires an additional 1 to 2 GB of margin.

Hence the difference between "it loads on my card" and "it handles my workload".

Short chat, small contextfits on 16 GB
Weights ~17 GB
KV
Code agent, medium context16 GB becomes tight
Weights ~17 GB
KV Cache
Long context or multiple sessionsexceeds 16 GB
Weights
KV Cache
Overflow

Illustrative proportions. Actual cache footprint depends on context length, number of concurrent sessions, and cache quantization options.


VRAM actually needed

Format Weights only Minimum card Comfortable card
4-bit (GGUF, NVFP4) approx. 16 to 19 GB 16 GB, short context 24 to 32 GB
4-bit + long context 17 GB + KV cache 24 GB 32 GB
FP8 approx. 27 to 28 GB 32 GB 48 GB and up
BF16 (native precision) approx. 54 to 56 GB 2 cards or 96 GB 96 GB ECC
The rule of thumb. A 16 GB card runs Qwen 3.8-27B in 4-bit for chat and short tasks. As soon as you leverage long context, vision, or multiple concurrent sessions, aim for 32 GB. This is the difference between a model that starts and a model that works.


Three scenarios, three machines

Discovery and conversational use

16 GB

You want to test Qwen 3.8-27B, use it for writing, summarizing, asking questions, processing reasonably sized documents.

A 16 GB card is sufficient in 4-bit, provided you stick to moderate contexts. This is the most economical entry point for serious individual use.

The limit is felt as soon as you load very long documents or engage in long conversations.

Code agent and tools

32 GB

This is where Qwen 3.8-27B excels: agentic coding, tool calls, working on a codebase.

An agent re-reads its context at each step. Ten rounds of tool calls on a large repository will swell the cache very quickly. On 16 GB, the session eventually saturates.

With 32 GB, you maintain margin for extended context and good throughput. This is the reference configuration for daily professional use.

Massive context, vision, multi-user

96 GB and up

Leveraging 256K context tokens, processing images, or serving multiple people concurrently is a different category.

The KV cache then becomes the dominant item, far ahead of the weights. A unified 128 GB memory or a professional 96 GB ECC card become relevant, as does FP8 to preserve quality.

This is also the threshold from which fine-tuning the model on your own data can be considered.


Our recommendation

The best choice for Qwen 3.8-27B

Radiance CoreAI 64 — RTX 5090 32 GB

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

32 GB: the 4-bit model, extended context, and margin for agents.

€6,042 starting from, configurable
Configure this workstation
An honest look at the budget. If your use is limited to chat and writing on short documents, the CoreAI 16 at €1,703 will run Qwen 3.8-27B in 4-bit and will cost you much less. We only recommend the RTX 5090 if you are aiming for agents, long context, or vision. Describe your actual use case to us, and we will guide you to the right machine, not the most expensive one.


Running it in practice

The fastest way is through Ollama. The download is approximately 18 GB.

# Direct launch
ollama run qwen3.8:27b

# Variant with extended context and quantized cache
cat > Modelfile <<'EOF'
FROM qwen3.8:27b
PARAMETER num_ctx 65536
EOF
ollama create qwen3.8-long -f Modelfile

Qwen 3.8-27B is a hybrid model: it has a reasoning mode and a direct instruction mode, with distinct recommended settings.

Mode temperature top_p top_k Usage
Reasoning 1.0 0.95 20 Complex problems, code, analysis
Direct instruction 0.7 0.80 20 Writing, quick answers
A game-changing tip on 16 GB. Quantizing the KV cache significantly reduces its memory footprint, often by half. This allows for accommodating an extended context where the default configuration would saturate. On our machines, these optimizations are pre-configured upon request.


Our entire range

Each machine is hand-assembled in Auriol (13390) and fully configurable, via the online configurator or by quote at contact@radiancesystems.eu.

Individual workstations

Radiance CoreAI 16 CoreAI 16 — RTX 5060 Ti 16 GBQwen 3.8-27B in 4-bit, short context. The entry point. €1,703 Radiance CoreAI 32 CoreAI 32 — RTX 5070 Ti 16 GBSame VRAM envelope, more CPU and RAM for the pipeline. €2,442 Radiance CoreAI 64 RTX 5090 CoreAI 64 — RTX 5090 32 GBThe benchmark: agents, extended context, vision, maximum throughput. €6,042

Compact server

ASUS Ascent GX10 GB10 NVIDIA GB10 AI Mini Server128 GB unified: 256K context without constraints, multiple users. €3,999

Rack and multi-GPU

Radiance Rack 2x RTX 5090 CoreAI Rack — 2 × RTX 5090 (64 GB)Comfortable FP8, multiple concurrent sessions, 4U rack format. €11,221 Radiance Pro AI Ultra Threadripper Pro AI Ultra — Threadripper PRO96 GB ECC: native precision BF16, model fine-tuning. €20,213 Radiance Rack 2x RTX 6000 Blackwell ECC CoreAI 128 Rack — 2 × RTX 6000 (192 GB ECC)Production, numerous users, training, ECC reliability. €27,980


In brief

How much VRAM for Qwen 3.8-27B?
16 GB for 4-bit short context. 32 GB for agents and extended context. 96 GB and up for native precision or fine-tuning.

Why isn't 16 GB always enough?
Because the advertised 17 GB only accounts for the weights. The KV cache, execution buffers, and visual encoder add up, and the cache grows with context length.

Is Qwen 3.8-27B free?
Yes, Apache 2.0 license, commercial use included. You only pay for the hardware.

Does it process images?
Yes, it includes a visual encoder. Vision consumes additional memory, which should be factored into sizing.

Can it be fine-tuned on custom data?
Yes, this is one of the advantages of a dense model of this size. However, expect significantly more VRAM than for inference: configurations with 96 GB ECC and up are most suitable.

The memory values indicated are estimates derived from ecosystem feedback and vary depending on the inference engine, quantization method, context length, and number of concurrent sessions. We are happy to advise you based on your actual usage.

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