Skip to main content
gpt-oss 20B: RTX 3060 12GB vs Ryzen 5 5600G CPU-Only (2026)

gpt-oss 20B: RTX 3060 12GB vs Ryzen 5 5600G CPU-Only (2026)

A 21B mixture-of-experts model that reads only 3.6B parameters per token changes the GPU-or-bust math. Here is what each path actually delivers.

gpt-oss 20B runs on a Ryzen 5 5600G with 32 GB of RAM, but an RTX 3060 12GB posts 64 tok/s at 16K context. Sourced speeds, memory math and what to buy.

Hardware at a Glance

Median generation throughput at 7–9B models (Llama 3.1 8B, Qwen 3 8B), Q4 quantization, from community-reported runs SpecPicks tracks. Street price is the second-lowest tracked listing within a sane band of MSRP, so no single listing sets it; prices move daily. Rows marked for comparison are not covered by this article — they are the nearest cards by VRAM, included so the throughput column has something to be read against.

GPUVRAM Llama-3-8B class, Q4Price Source
NVIDIA GeForce RTX 3060 12 GB 57.4 tok/s30 runs · 16 sources $387street smeltcore.com
NVIDIA GeForce RTX 5070for comparison 12 GB 59.1 tok/s5 runs · 5 sources $680street knightli.com
Arc B580for comparison 12 GB 40 tok/s19 runs · 12 sources $310street llama.cpp GitHub Discussions

Which models fit on a RTX 3060?

The 20-27B class this article is about needs about 15 GB for its Q4 weights; on the RTX 3060, the weights do not fit, so layers spill to system RAM and PCIe bandwidth sets the speed. RTX 3060 carries 12 GB of VRAM. At Q4_K_M the weights take roughly 0.55 GB per billion parameters and the runtime plus a usable context window wants about 2 GB on top, so the fit column below is derived from that arithmetic; every tokens-per-second figure is a median over community-reported Q4 runs SpecPicks tracks for this card, with the run count and the source beside it.

Showing the model sizes this article covers and the band either side. Every size from 3B to 70B+, for every card SpecPicks tracks, is in the local-LLM GPU table.

Model size Weights at Q4 Fits in 12 GB? Measured Left for context Source
12-14B (Qwen 3 14B, Phi-4)Where 8 GB stops being enough. This is the band the RTX 3060 12GB exists for. ~8 GB Fitsweights and a usable context window 29.4 tok/s22 runs · 10 sources ~4 GBfor runtime and KV cache llmrun.dev
20-27B (Gemma 3 27B, Mistral Small)Fits a 16 GB card at Q4 with a modest context window; 24 GB if you want a long one. ~15 GB Nospills to system RAM — PCIe bandwidth sets the speed none
30-35B (Qwen 3 32B, QwQ 32B)The step change. A 24 GB card holds this entirely in VRAM; below that it is CPU offload. ~19 GB Nospills to system RAM — PCIe bandwidth sets the speed none

Every RTX 3060 benchmark run, with its source → GPU picks for local LLM — the same table across every card we track How we source these numbers

Quick answer

No GPU is strictly required. gpt-oss 20B reads only 3.6B of its 21B parameters per token (OpenAI — gpt-oss-20b model card), so a Ryzen 5 5600G with 32 GB of DDR4 can run it. A laptop on the same Cezanne silicon reports 14.05 tok/s on its Vega 7 graphics (llama.cpp — running gpt-oss guide). An RTX 3060 12GB is the better buy: the same thread reports 64 tok/s at 16K context.

Why a mixture-of-experts model changes the usual GPU-or-bust answer

For most of the local-LLM era, "can my CPU run this?" had a short answer for anything above 7B: technically yes, practically no. A dense 13B model reads every one of its weights for every token it generates, and a desktop with dual-channel DDR4 simply cannot stream that many bytes fast enough to feel interactive.

gpt-oss 20B breaks that rule. OpenAI built it as a sparse mixture-of-experts (MoE) model: 20.9B total parameters, of which 3.6B are active for any given token, spread across 24 layers (OpenAI — gpt-oss-120b & gpt-oss-20b model card). Each layer holds 32 experts and a router picks 4 of them per token, per the model's config.json. OpenAI also shipped the expert weights — more than 90% of the parameter count — already quantized to MXFP4 at 4.25 bits per parameter, which is why the model card says it will "run within 16GB of memory." OpenAI released both gpt-oss models as open weights alongside its launch announcement.

That combination puts two groups of readers in front of the same decision. The first already owns an APU box — a Ryzen 5 5600G media PC, homelab node or retired office build — and wants to know whether adding RAM is enough. The second is weighing a used 12 GB card at roughly $295 (getpcparts — used RTX 3060 prices) against spending nothing at all. This synthesis compares the two paths using published llama.cpp measurements, and flags every place where no direct measurement exists.

The short version: the APU path works, and it is more usable than the dense-model intuition suggests. The GPU path is several times faster at generation and more than an order of magnitude faster at reading long prompts, and on this model a 12 GB card is enough.

Key takeaways

  • The whole model is about 12 GB at any quant. Unsloth's GGUF files run from 11.47 GB (Q2_K) to 13.79 GB (F16) (Unsloth — gpt-oss-20b-GGUF), because the experts are natively MXFP4.
  • A 12 GB RTX 3060 runs it almost entirely in VRAM. Keeping just two layers' experts on the CPU gives 64 tok/s at 16K context in the llama.cpp guide thread; with a 2,048-token context and nothing offloaded, the same poster reports 75 tok/s.
  • The APU path lands in the teens. A Ryzen 5 5600H with Vega 7 graphics and dual-channel DDR4-3200 reports 14.05 tok/s generation and 114.91 tok/s prompt processing under Vulkan in the same thread.
  • Prompt processing is the real gap. An RTX 3060 llama-bench run in that thread reports 2,229.95 tok/s at pp2048, roughly 19 times the APU's prefill rate.
  • The KV cache is tiny. Half the layers use a 128-token window (OpenAI model card), which works out to roughly 0.8 GB at 32K context.

Step 0: total parameters vs active parameters

Before any hardware talk, separate two numbers that usually move together and, on this model, do not.

Total parameters decide capacity. Every weight has to be resident somewhere fast — VRAM or system RAM — because the router may pick any expert for the next token. That is why the file is still about 12 GB and why "just use a smaller quant" does not rescue a machine with 8 GB of memory.

Active parameters decide speed. Generation is limited by how many bytes the hardware must read per token, not by how many bytes are stored. The model card's Table 1 lists 3.61B active parameters out of 20.91B total (OpenAI model card). The MXFP4 GGUF packs 20.91B parameters into 11.27 GiB, per the llama-bench output in the guide thread, which averages about 4.6 bits per parameter.

Put those together and each token reads roughly 2.1 GB of weights. That is arithmetic from the cited inputs, not a measurement. A dense 12B model at the same precision would read about 7 GB per token. The mixture-of-experts design cuts per-token memory traffic by more than two-thirds while keeping the storage cost of a 20B model — exactly the trade that favors a machine with plenty of slow memory.

The practical rule that falls out of this:

If your problem is…The limit is…The fix is…Not…
Model will not load, or the system swapsMemory capacity32 GB of system RAM, or a 12 GB GPUA faster CPU
Loads, but generation crawlsMemory bandwidthA GPU, or RAM running at rated speed in both channelsMore cores
Long pastes take half a minute to startPrompt-processing computeA discrete GPUMore RAM
GPU runs out of memory at loadVRAMMove a few layers' experts to the CPUA smaller quant (they are all ~12 GB)

Spec delta: RTX 3060 12GB vs Ryzen 5 5600G

PartMemory poolMemory bandwidthTDPStreet price
NVIDIA RTX 3060 12GB12 GB GDDR6, 192-bit360 GB/s170 W board power$329 launch; about $295 used (Sep 2026)
AMD Ryzen 5 5600GShared system DDR4, 2 channels, up to 3,200 MT/s51.2 GB/s theoretical (2 × 25.6 GB/s)65 W (configurable 45–65 W)$259 launch
AMD Ryzen 7 5800X (step-up CPU)Shared system DDR4, up to 3,200 MT/s51.2 GB/s theoretical105 WCheck current listing

NVIDIA lists the RTX 3060 at 12 GB of GDDR6 on a 192-bit bus, 170 W of graphics card power and a 550 W system requirement (NVIDIA — RTX 3060 family). The RTX 30-series reference table gives 360 GB/s and the $329 launch price (Wikipedia — GeForce RTX 30 series); TechPowerUp's database carries the same GA106 configuration (TechPowerUp — RTX 3060 12 GB).

AMD lists the Ryzen 5 5600G with 6 cores and 12 threads, 2 memory channels at up to 3,200 MT/s, a 65 W default TDP, PCIe 3.0, and Radeon graphics with 7 cores at 1,900 MHz (AMD — Ryzen 5 5600G specifications). Tom's Hardware's review gives the $259 launch price (Tom's Hardware — Ryzen 5 5600G review). A DDR4-3200 module moves 25.6 GB/s (Wikipedia — DDR4 SDRAM), so two channels give 51.2 GB/s in theory. The 5800X row uses AMD's own page, which lists 105 W, PCIe 4.0 and "Discrete Graphics Card Required" (AMD — Ryzen 7 5800X).

The column that matters is bandwidth: the RTX 3060 has seven times the memory bandwidth of the 5600G's entire memory system, and the APU's CPU cores and integrated graphics share that 51.2 GB/s.

VRAM and quantization requirements

This table is the part that surprises people. The file sizes barely move across quant levels, because the expert weights were already 4.25-bit before anyone requantized them.

QuantFile sizeFits 12 GB VRAM whole?Fits 32 GB system RAM?Notes
MXFP4 (native)12.11 GBOnly at ~2K contextYesThe format the model was trained in; start here
Q4_K_M11.62 GBOnly at ~2K contextYes0.5 GB smaller, no speed benefit
Q5_K_M11.72 GBOnly at ~2K contextYesEssentially the same size as MXFP4
Q6_K12.04 GBNeeds expert offloadYesNo reason to prefer it over MXFP4
Q8_012.11 GBNeeds expert offloadYesSame size as MXFP4
F1613.79 GBNeeds expert offloadYesUpcast; only for tooling that cannot read MXFP4

Sizes are from the Unsloth and ggml-org GGUF repositories. The "fits whole" column follows the llama.cpp guide thread: one RTX 3060 owner notes that 378 MB of the card's 12,288 MB is reserved by the Linux driver, and the full model on the GPU is reported only with a 2,048-token context. For anything longer, you move a couple of layers' experts to system RAM — covered below.

For the CPU-only path, 16 GB of system RAM technically holds the file, but the operating system, browser and KV cache push it past comfort. 32 GB is the sensible floor; 64 GB is headroom for other services.

Benchmark table: tokens per second

No published source measures gpt-oss 20B CPU-only on a desktop Ryzen 5 5600G. The table collects the closest published measurements, labelled by exactly what was run, so you can place both paths between them. Prompt-processing and generation figures are kept in separate columns.

ConfigurationContext / testPrompt processingGenerationSource
RTX 3060 12GB, whole model on GPU, Ryzen 7 5700X host2,048 tokensnot reported75 tok/sllama.cpp guide thread (QuantiusBenignus)
RTX 3060 12GB, -ncmoe 2 (2 layers' experts on CPU)16Knot reported64 tok/s initialsame thread (QuantiusBenignus)
RTX 3060 12GB, -ncmoe 332Knot reported56 tok/s initialsame thread (QuantiusBenignus)
RTX 3060 12GB, -ncmoe 2, -ub 512, 32 GB DDR432Knot reported60 tok/ssame thread, second RTX 3060 owner
RTX 3060 12GB, llama-bench, ffn_up experts on CPU, 1 threadpp2048 / tg1282,229.95 tok/s30.64 tok/ssame thread (QuantiusBenignus)
RX 7900 XT + Ryzen 9 5900X, all experts in dual-channel DDR4-3200 (-cmoe)not reported~20 tok/ssame thread (SteelPh0enix)
Ryzen 5 5600H, Vega 7 iGPU via Vulkan, 2×32 GB DDR4-3200, 35 W cappp512 / tg128114.91 tok/s14.05 tok/s (15.49 on newer Mesa)same thread (thielj)
Ryzen 9 7950X, CPU-only, mainline llama.cpp1,024-token batches, empty cache143.07 tok/s21.70 tok/sik_llama.cpp discussion #758

How to read it for the two builds in this comparison:

  • RTX 3060 12GB in a 5600G box. The four RTX 3060 rows come from Zen 3 desktops with DDR4, which is the same class of host as a 5600G. Expect 60–75 tok/s depending on context length and how many layers' experts you park on the CPU. The one-thread llama-bench row is the floor; it is what happens when the CPU side is starved.
  • Ryzen 5 5600G without a GPU. The 5600H row is the closest analog. It is the mobile version of the same Cezanne die with the same 7 graphics cores, running on the same DDR4-3200, but capped at 35 W. A desktop 5600G has more power budget but not more memory bandwidth, so plan on the low-to-mid teens of tok/s on its integrated graphics. That is an estimate from the analog, not a measurement.
  • Why the 7950X row is a ceiling, not a target. It is a 16-core Zen 4 chip with AVX-512 and, almost certainly, DDR5; the page does not state the memory. Six Zen 3 cores on DDR4 will generate more slowly and process prompts much more slowly.

A common misquote belongs here: the widely repeated "60 tok/s on a Ryzen 7 5700X with DDR4" is not a CPU-only result. It is the RTX 3060 run in the fourth row.

Why partial offload is the interesting case here

llama.cpp exposes MoE offload directly. --cpu-moe keeps all expert weights in system RAM, and --n-cpu-moe N keeps the experts of the first N layers there (llama.cpp PR #15077). Everything else — attention, the router, embeddings and the remaining experts — stays on the GPU.

The arithmetic explains why this works so well on a 12 GB card. The model card lists 19.12B MLP parameters across 24 layers (OpenAI model card), about 0.8B per layer, or roughly 0.42 GB per layer at 4.25 bits. Moving two layers' experts to the CPU frees about 0.85 GB of VRAM, enough for a 16K context and compute buffers. Each token still consults only 4 of those layers' 32 experts, so the CPU side reads only about 0.1 GB per token for those two layers. At DDR4 speeds that costs a couple of milliseconds, which matches the modest drop from 75 to 64 tok/s in the table. These figures are derived from the cited parameter counts, not measured.

The curve flattens, then falls. Each additional layer you move adds about the same DDR4 traffic, so speed declines steadily as N rises; move all 24 and you arrive at the ~20 tok/s the RX 7900 XT owner reported with -cmoe on dual-channel DDR4-3200. The llama.cpp guide's own advice for an 8 GB card is --n-cpu-moe 22 for full context and 16 for 32K context. For a 12 GB RTX 3060, start at 2, raise it only if the model fails to load at your chosen context, and stop at the smallest value that fits.

One host-side detail helps the 5600G build specifically: plug the monitor into the motherboard so the APU's integrated graphics drives the desktop. That leaves the RTX 3060's full 12 GB for the model instead of sharing it with the compositor. The 5600G's PCIe 3.0 link to the card slows the initial model load, but once weights are resident, generation barely touches the bus.

Prefill vs generation on an APU

Every request runs in two phases. Prefill reads your whole prompt at once; it is a large matrix-multiply job, compute-bound, and it is where a discrete GPU pulls away. Generation produces one token at a time and is bound by memory bandwidth.

On generation, the APU's position is respectable. Its ceiling is set by the same 51.2 GB/s whether the CPU cores or the integrated graphics do the work, and the 5600H analog lands at 14–15 tok/s. For short chat turns, that reads faster than most people type.

Prefill is where the APU hurts. The RTX 3060's llama-bench row processes a prompt at 2,229.95 tok/s; the Vega 7 analog manages 114.91 tok/s. Paste a 4,000-token document and the GPU starts answering in under two seconds; the APU takes about 35 seconds before the first word appears. Retrieval-augmented setups, coding assistants reading whole files, and long-running chats all pay that penalty on every turn.

Does the integrated Vega graphics help at all under Vulkan? For prefill, yes, and it is worth enabling. The 5600H's iGPU processed prompts at 114.91 tok/s. The 16-core 7950X managed 143.07 tok/s CPU-only, and a six-core Zen 3 part has well under half of that chip's compute. For generation, the iGPU mostly relocates the work rather than accelerating it, because it drinks from the same two DDR4 channels as the cores. The thielj report ran every layer on the iGPU (-ngl 100) from 64 GB of shared DDR4, so capacity is not the obstacle on a well-equipped box.

Context length and the KV cache

gpt-oss 20B's attention layers alternate between a banded window and fully dense attention, "where the bandwidth is 128 tokens," with 8 key-value heads of dimension 64 (OpenAI model card). The config.json lists 12 sliding and 12 full-attention layers. Only the full-attention layers grow with context, which works out to about 24 KB per token at 16-bit precision; the sliding layers add a fixed 3 MB or so. The figures below are arithmetic from those inputs.

ContextKV cache (approx., f16)Fits on a 12 GB RTX 3060 with the model?
4K0.10 GBYes, with -ncmoe of 0–2
8K0.20 GBYes, with -ncmoe 2
16K0.40 GBYes, with -ncmoe 2 (64 tok/s reported)
32K0.81 GBYes, with -ncmoe 2 and -ub 512, or -ncmoe 3
131K (maximum)3.2 GBYes, with more layers' experts on the CPU

Two practical notes follow. First, on this model the compute buffers matter more than the cache: the second RTX 3060 owner in the guide thread had to drop the micro-batch (-ub) to 512 to free about 300 MB at 32K. Second, KV-cache quantization is rarely worth it here, because the cache is already small — and on at least one runtime build it backfired badly. An Ollama issue on two RTX 3060s running Gemma 3 12B reported 29.9 tok/s with an f16 cache and 5.5 tok/s with q8_0 or q4_0. Benchmark before and after if you try it.

On the CPU-only path, context costs RAM rather than VRAM, and at 3.2 GB even the full 131K window fits comfortably in 32 GB.

Performance per dollar and per watt

These rows combine cited prices and rated power with the published speeds above. Treat them as a guide, not a measurement.

PathAdded costGenerationPrefillGen tok/s per $100 addedGen tok/s per rated watt
Add a used RTX 3060 12GB to an existing boxabout $29564 tok/s (16K)~2,230 tok/s~21.7~0.38 (170 W board power)
Existing 5600G, integrated graphics$0~14 tok/s (5600H analog)~115 tok/s~0.22 (65 W TDP)
Buy a 5600G platform for this$259 CPU at launch, plus board and RAM~14 tok/s (analog)~115 tok/sunder 5.4~0.22

The efficiency column is closer than the speed column. The 5600H analog produced its 14.05 tok/s under a 35 W package cap, about 0.40 tok/s per watt — on par with the RTX 3060's rated figure. The GPU wins on speed per dollar and on responsiveness; it does not win on energy per token by much.

Running cost is modest either way. US residential electricity averaged 18.34 ¢/kWh in June 2026 (EIA — Electric Power Monthly, Table 5.6.A). Worst case, the RTX 3060 at its full 170 W for eight hours a day uses about 496 kWh a year, roughly $91; a 5600G at 65 W for the same hours uses about 190 kWh, roughly $35. For a 24/7 assistant box, idle draw dominates, and that varies too much by motherboard and power supply to quote — measure at the wall with a plug-in meter before committing.

What to buy: the two builds, part by part

The GPU path (recommended). Either 12 GB card below does the job; the choice is about cooling and case fit. Confirm "12GB" in the listing, because an 8 GB RTX 3060 on a narrower bus also exists.

The APU path. The AMD Ryzen 5 5600G is the host for both builds: it runs gpt-oss 20B on its own today, it drives the display so a future GPU keeps its full VRAM, and it ships with AMD's Wraith Stealth cooler. Pair it with 32 GB of DDR4-3200 as two matched sticks. Check current price on Amazon.

The step-up CPU. The AMD Ryzen 7 5800X adds two cores and PCIe 4.0, which helps CPU-side prefill and model loading. It does not raise the dual-channel DDR4 ceiling on generation, and AMD notes it requires a discrete graphics card, so it only makes sense paired with the RTX 3060. Check current price on Amazon.

Model library. The Crucial BX500 1TB reads at up to 540 MB/s with 360 TB of rated endurance (Crucial — BX500 product flyer). At that rate the 12.11 GB file loads in under half a minute, and 1 TB holds dozens of models. Once weights are in memory, the SSD is idle, so a faster drive changes load time only.

Prices change frequently; the retailer page at the time of your visit is authoritative, and the price may vary from any figure quoted here. As an Amazon Associate, SpecPicks earns from qualifying purchases.

Common pitfalls

  • Populating one DIMM. A single stick halves memory bandwidth, and bandwidth is the whole game on the APU path. In a llama.cpp CPU performance discussion, one user went from 1.5 to 4 tok/s on a 34B model just by replacing one stick with two.
  • Expecting a smaller quant to fit in 12 GB of VRAM. Q2_K is still 11.47 GB. Use --n-cpu-moe instead.
  • Letting the RTX 3060 drive the desktop. On a 5600G host, use the motherboard's display output and keep the card headless.
  • Oversized micro-batches at long context. Start at -ub 512 when you run 32K on a 12 GB card.
  • Quoting the GPU number as a CPU number. The 60 tok/s DDR4 figure is an RTX 3060 result.
  • RAM running below its rated speed. Check that XMP/DOCP is enabled; a kit that fell back to JEDEC defaults costs generation speed in proportion to lost bandwidth.

Verdict matrix

Buy the RTX 3060 12GB if…

  • you paste documents, code or retrieved context and want the first token in seconds, not half a minute;
  • you want 60–75 tok/s generation for interactive chat or coding assistance;
  • you already have a Zen 3 host with a free x16 slot and a 550 W power supply.

Stay on the 5600G if…

  • your use is short chat turns where 14–15 tok/s reads faster than you type;
  • the box runs overnight batch jobs where prompt latency does not matter;
  • you can add RAM to reach 32 GB in two matched sticks, but cannot justify another $295 yet.

Skip both if…

  • your real target is gpt-oss 120B, which needs 64 GB of system RAM even with a GPU (see the gpt-oss 120B build comparison);
  • you use a model a few times a month, where hosted API calls cost less than any hardware;
  • your box has 16 GB of RAM and no upgrade path, which leaves no headroom for the 12 GB model plus an operating system.

Bottom line

Buy the used RTX 3060 12GB and put it in the 5600G box rather than choosing between them. Run the native MXFP4 GGUF in llama.cpp with --n-cpu-moe 2 at 16K context, and drive the display from the APU. That combination matches the published 64 tok/s configuration, processes prompts at GPU speed, and costs about $295 on top of hardware you already own. The single condition that flips it: if your prompts are short and your budget is zero, the 5600G alone runs gpt-oss 20B at an estimated 14–15 tok/s, and adding a second stick of RAM is the only upgrade you need.

Live price comparison

Citations and sources

This piece is editorial synthesis based on publicly available information. No independent first-party benchmarking is reported.

Products mentioned in this article

Live Amazon & eBay pricing, plus full specs and alternatives on each product page.

As an Amazon Associate, SpecPicks earns from qualifying purchases; we also earn on qualifying eBay purchases via the eBay Partner Network. Prices shown were last tracked at crawl time and may vary — check the listing for the current price.

Watch a review

Friendly Fire: AMD Ryzen 7 5800X CPU Review & Benchmarks vs. 5600X & 5900X — Gamers Nexus on YouTube

Frequently asked questions

Why can a 20B model run on a CPU when a 13B dense model struggles?
Sparse mixture-of-experts models activate only a fraction of their total parameters for any given token, so the per-token arithmetic and the bytes read from memory are far smaller than the total parameter count suggests. gpt-oss 20B reads 3.6B of its 21B parameters per token. The whole model still has to be resident in memory, which is why capacity requirements stay high, but generation speed tracks the active-parameter count. That combination is unusually friendly to CPU inference with plenty of system RAM.
How much system RAM do I need for the CPU-only path?
Plan for 32GB as a working minimum and 64GB if you want long contexts or other services running on the same box. The full weight set, about 12GB at any quant, must stay resident, and paging to SSD collapses throughput to unusable levels regardless of how fast the drive is. Populate both memory channels; a single-stick configuration halves effective bandwidth, and on this workload bandwidth is the limiter rather than core count.
Does the 5600G's integrated graphics help with inference?
It helps prompt processing more than generation. A laptop Ryzen 5 5600H, the same Cezanne silicon with 7 Vega graphics cores, reports about 115 tok/s of prompt processing and 14 tok/s of generation under llama.cpp's Vulkan back-end. Because the iGPU shares the same two DDR4 channels as the CPU cores, the generation ceiling barely moves. Enable it for faster prompt reading, but treat a discrete card as the only real speed upgrade.
Is partial GPU offload worth it on a 12GB card for this model?
Yes, and it is the configuration most RTX 3060 owners actually run. The full model is slightly too large for 12GB once context and compute buffers are added, so llama.cpp's --n-cpu-moe flag parks a few layers' expert weights in system RAM. With just two layers moved, one published run reports 64 tok/s at 16K context. Each extra layer you move costs a little more speed, so use the smallest value that fits your context length.
What power supply and cooling should I plan for?
A 12GB RTX 3060 is rated around a 170W board power and NVIDIA's guidance puts the system minimum near 550W; a quality 550-650W unit covers it with headroom for transients. The 5600G is a 65W part that the bundled cooler handles adequately for bursty use. For a machine that will hold high utilization for hours at a stretch, a tower cooler and a case with genuine front-to-back airflow buy you quieter sustained operation than stock cooling does.

Sources

— Mike Perry · Last verified 2026-09-11

Parts this article names

Amazon Associate — prices tracked 2026-09-09, may vary.

More guides & deep dives from the SpecPicks archive

Browse all articles & guides →

More buying guides from SpecPicks

Browse all buying guides →

Hardware benchmark data on SpecPicks

All benchmarks →