If you want to know why a single large language model token takes the time it does on your home rig, the answer in 2026 is almost always the same: memory bandwidth, not raw compute. Generation is a memory-bound workload — each token requires streaming the model's weights from VRAM through the GPU's compute units, and the rate at which you can move those bytes sets a hard ceiling on tokens per second. That is why Anthropic and Micron signed a high-profile co-design partnership for HBM4 this year, and why a $250 MSI GeForce RTX 3060 Ventus 2X 12G with its modest 360 GB/s of GDDR6 still earns its keep as an entry-level inference card.
The news hook: Anthropic and Micron co-designing AI memory
In early 2026, Anthropic and Micron confirmed a multi-year arrangement in which Anthropic is providing inference workload telemetry — token sizes, context distributions, KV-cache access patterns — to inform the design of next-generation HBM4 and HBM4E stacks. The framing in the press release was deliberate: this is not a purchase order, it is co-engineering. Anthropic gets early access and tuned silicon for Claude-class models; Micron gets a flagship customer whose access patterns sharpen its roadmap against Samsung and SK hynix.
What is interesting for anyone running models locally is the implicit admission in the deal. Anthropic — a company with effectively unlimited access to H200, B200, and now B300 NVL accelerators — decided that the most important hardware variable to influence was memory, not compute. They did not co-design a tensor core. They did not commission a new interconnect. They went after the GB/s number on the spec sheet.
That aligns with what every public benchmark of decoder-only transformers shows: generation throughput tracks effective memory bandwidth far more tightly than it tracks peak FP16 or FP8 TFLOPs. A B200 has roughly 8 TB/s of HBM3e bandwidth per package; an H200 sits near 4.8 TB/s; an RTX 3060 12GB has 360 GB/s of GDDR6. That is a 22× spread on bandwidth, and as you will see below, it lines up almost linearly with measured tok/s for the same quantized model.
The partnership is the news. The lesson — buy bandwidth, not flops — is the part that matters at the desktop level.
Key takeaways
- Anthropic and Micron's 2026 HBM4 co-design partnership signals that even the largest AI labs treat memory bandwidth as the binding constraint, not compute.
- LLM token generation is memory-bound: each generated token requires streaming the model weights once through the GPU, so tok/s tracks GB/s of memory bandwidth more tightly than it tracks TFLOPs.
- Datacenter HBM3e delivers 4.8–8 TB/s per package in 2026; consumer GDDR7 cards top out near 1.5–1.8 TB/s; the GDDR6-equipped RTX 3060 sits at 360 GB/s — and tok/s on the same quantized model scales roughly with that ratio.
- For local inference you should optimize for bandwidth-per-dollar and VRAM capacity, not headline FP16 TFLOPs.
- Prefill (prompt processing) is compute-bound and benefits from TFLOPs; generation is bandwidth-bound and benefits from GB/s. Most chat-style workloads are dominated by generation.
- A 12GB RTX 3060 paired with a Ryzen 7 5800X or Ryzen 7 5700X remains the most cost-effective sub-$700 platform for running 7B–13B class models in 2026.
What happened: the Micron/Anthropic memory partnership in brief
The partnership announced in 2026 covers three concrete deliverables, per Micron's public statements. First, Micron will deliver HBM4 stacks tuned for the access patterns of Anthropic's Claude models — including capacity-per-stack increases and improved per-pin bandwidth — for deployment in Anthropic's training and inference fleet starting in late 2026 and ramping through 2027. Second, Anthropic provides workload traces — anonymized, aggregated patterns of how Claude reads weights, KV caches, and activations — so Micron's design team can model real-world hit rates rather than synthetic ones. Third, both parties have agreed on a multi-generation roadmap pointing toward HBM4E and a successor generation.
The dollar value was not disclosed, but the volume implication is large. Anthropic's compute spend in 2026 is widely reported in the multi-billion-dollar range, and a sizable fraction of an accelerator's bill of materials is its HBM stacks. Public teardowns of B200 modules suggest HBM accounts for roughly 40–55% of the per-package BOM at current contract pricing — which is why memory vendors are now the kingmakers of the AI buildout.
The partnership is not exclusive. Anthropic continues to consume Samsung and SK hynix memory through their accelerator vendors. But the co-design relationship is the first time a US-headquartered hyperscaler has publicly committed to a US-headquartered memory vendor on the AI roadmap, and that political dimension was a significant part of the press coverage.
For desktop builders, none of this directly changes what you can buy. But it strongly signals where memory innovation will happen: capacity per stack, bandwidth per watt, and per-pin signaling. Those gains will trickle into GDDR7 and, eventually, whatever ships on consumer cards in 2027 and 2028.
Why generation speed is bound by bandwidth, not compute
To see why bandwidth dominates, walk through what happens when you generate one token. The model's parameters live in VRAM. For a 7-billion-parameter model in 4-bit quantization, that is roughly 4 GB of weights. To produce the next token, the GPU must read all of those weights at least once — that is the inherent structure of an autoregressive forward pass with a single-token input and the entire KV cache attached to it.
If you have 360 GB/s of bandwidth and a 4 GB working set per token, your theoretical ceiling is 360 / 4 = 90 tokens per second on the weight-streaming side alone. Real systems hit 60–70% of that ceiling once you account for KV-cache reads, activations, and overhead — call it 55–65 tok/s on an RTX 3060 for a 4-bit 7B model. That is exactly what public benchmark suites report on the platform.
Now scale this up. A 13B model in 4-bit is roughly 7.5 GB; the ceiling drops to 360 / 7.5 ≈ 48 tok/s, and real systems land in the high-20s to mid-30s. A 70B model in 4-bit is roughly 39 GB, which does not even fit in 12 GB of VRAM — so you either quantize harder, offload to CPU memory (which crashes throughput by an order of magnitude due to PCIe bandwidth limits), or buy a bigger card.
The key intuition: TFLOPs almost never bind during generation. A modern GPU can perform tens of trillions of FP16 multiply-adds per second, but it can only read its weights a few hundred billion bytes per second. The arithmetic intensity of single-token generation is too low — there is not enough math per byte loaded — to keep the compute units busy. The hardware sits idle waiting for memory.
This is the defining fact of local inference in 2026, and it is why every credible buyer's guide leads with VRAM capacity and bandwidth and treats TFLOPs as a tiebreaker.
How datacenter HBM compares to the GDDR6 in a consumer RTX 3060
HBM (High Bandwidth Memory) and GDDR (Graphics DDR) solve the same problem with different physical architectures. GDDR6 and GDDR7 sit on the PCB around the GPU die, connected by a relatively narrow but high-clocked bus — typically 192-, 256-, or 384-bit wide running at 14–32 Gbps per pin in 2026. HBM stacks sit on a silicon interposer immediately adjacent to the GPU die, connected by a very wide but lower-clocked bus — 1024 bits per stack in HBM3, scaling to 2048 bits per stack in HBM4 — running at 6–10 Gbps per pin.
The net effect is that HBM3e delivers 1.0–1.2 TB/s per stack and current accelerators pack 4–8 stacks per package, hitting 4.8–8 TB/s. GDDR6 on the RTX 3060 delivers 360 GB/s total. GDDR7 on top-end 2026 consumer cards reaches roughly 1.5–1.8 TB/s. The gap is real, but it has narrowed faster than most observers expected three years ago — largely because GDDR7's per-pin rates jumped from 16 to 32 Gbps in a single generation.
Why does Micron not put HBM on consumer cards? Cost. HBM requires a silicon interposer (an additional die that routes signals between memory stacks and the GPU), advanced packaging (CoWoS or equivalent), and ECC. The packaging alone roughly doubles the per-card BOM, and the supply is constrained by hyperscaler demand. The economics simply do not work below the $5,000 price point, which is why even the RTX PRO 6000 Blackwell uses GDDR7 rather than HBM despite costing well into four figures.
The practical upshot for a desktop builder: you will not get HBM on a consumer card in this decade. The relevant question is how to maximize GDDR6 or GDDR7 bandwidth per dollar you spend.
Spec table: HBM3, GDDR7, GDDR6 — bandwidth, capacity, bus width
| Memory type | Per-stack/per-chip bandwidth | Typical bus width | Capacity per stack/chip | Where it ships in 2026 |
|---|---|---|---|---|
| HBM3e | 1.0–1.2 TB/s per stack | 1024-bit per stack | 24–36 GB per stack | H200, B100, B200, B300, MI325X |
| HBM4 (sampling) | 1.5–2.0 TB/s per stack | 2048-bit per stack | 36–48 GB per stack | Late-2026 / 2027 accelerators |
| GDDR7 | 28–32 Gbps per pin | 192-bit to 512-bit | 2–3 GB per chip | RTX 50/60 series, RX 9000/10000 |
| GDDR6X | 19–24 Gbps per pin | 192-bit to 384-bit | 1–2 GB per chip | RTX 40 series, some pro cards |
| GDDR6 | 14–16 Gbps per pin | 128-bit to 384-bit | 1–2 GB per chip | RTX 30 series, RX 6000/7000 |
The headline numbers obscure the most important fact: capacity matters as much as raw bandwidth for LLM work. A 12 GB GDDR6 card running a 4-bit 7B model entirely from VRAM will outpace a 24 GB GDDR6 card forced to offload to system RAM, even if both have the same per-chip bandwidth. The cliff between "fits in VRAM" and "does not fit in VRAM" is the steepest performance discontinuity in local inference.
Benchmark table: tok/s vs effective memory bandwidth on consumer cards
The table below collates publicly reported llama.cpp-style benchmarks on a 7B parameter model in 4-bit quantization. The trend is clear: tok/s scales close to linearly with memory bandwidth, with small deviations for compute, driver maturity, and quantization kernel quality.
| GPU | Memory | Bandwidth | 7B Q4 tok/s (gen) | tok/s per 100 GB/s |
|---|---|---|---|---|
| RTX 3060 12GB | GDDR6 | 360 GB/s | 55–65 | 16.7 |
| RTX 4060 Ti 16GB | GDDR6 | 288 GB/s | 45–55 | 17.4 |
| RTX 4070 Super | GDDR6X | 504 GB/s | 80–90 | 16.9 |
| RTX 4090 | GDDR6X | 1008 GB/s | 140–160 | 14.9 |
| RTX 5090 | GDDR7 | ~1792 GB/s | 220–260 | 13.4 |
| RTX PRO 6000 Blackwell | GDDR7 | ~1792 GB/s | 230–270 | 13.7 |
Notice the per-100-GB/s column. It stays remarkably flat across two orders of magnitude of card price, which is the empirical fingerprint of a memory-bound workload. The slight drop at the top end reflects the fact that very high-end cards have enough bandwidth that secondary bottlenecks (kernel launch overhead, KV cache locality, driver scheduling) begin to matter. Per AnandTech's memory coverage, this pattern holds for FP16 as well, just with higher per-token byte counts and correspondingly lower tok/s.
The practical implication: if you are choosing between two cards and both can fit your target model, pick the one with more bandwidth-per-dollar. Capacity ties go to bandwidth.
Prefill vs generation: which phase scales with bandwidth
It is worth separating the two phases of LLM inference because they have opposite performance characteristics.
Prefill is what happens when you submit a prompt — the model processes all input tokens in parallel before producing the first output token. This is a large matrix multiplication with thousands of rows (one per input token) by the hidden dimension by the weight dimension. The arithmetic intensity is high; the GPU's compute units actually saturate; performance scales with TFLOPs.
Generation is what happens after the first output token — the model produces one token at a time, each requiring a forward pass with a single new token attended over the growing KV cache. Arithmetic intensity is low; performance is bound by how fast you can stream the weights through compute units; performance scales with GB/s.
For a typical chat workload — 500 tokens in, 500 tokens out — generation usually dominates wall-clock time. The first-token latency might be 50–150 ms (prefill), but the subsequent 499 tokens at 50 tok/s consume nearly 10 seconds. Optimizing the bandwidth-bound phase is the right call.
There are exceptions. Retrieval-augmented generation workloads with very long prompts (10K+ tokens) and short outputs (<100 tokens) flip the ratio, and prefill compute becomes the binding constraint. In that regime, a card with high TFLOPs but mediocre bandwidth (like some of the Ada workstation parts) can punch above its weight. But for chat, code assistance, and most agent loops, generation dominates and bandwidth wins.
What this means for a home AI rig: RTX 3060 + Ryzen 7 5800X
A pragmatic 2026 budget local inference rig looks roughly like this: an RTX 3060 12GB for the GPU, a Ryzen 7 5800X or 5700X for the CPU, 32 GB of DDR4-3200, and a 1 TB NVMe SSD. Total street price in mid-2026 sits between $650 and $800 depending on memory and storage choices.
The MSI RTX 3060 Ventus 2X 12G is the GPU choice not because it is fast in absolute terms — it is not — but because its 12 GB of VRAM clears the bar for 7B-class models in 4-bit and even allows comfortable headroom for KV caches at moderate context lengths. The 360 GB/s of GDDR6 yields the 55–65 tok/s range cited above on a 7B Q4 model, which is faster than most people read.
The CPU choice between the Ryzen 7 5800X and Ryzen 7 5700X depends on whether you want to spend the extra $30–60 for a slightly higher clock and TDP. For pure LLM inference on a single GPU, the CPU does almost nothing during generation — it is the GPU's bandwidth that bounds throughput, not CPU MHz. The 5700X at 65W TDP is the more sensible choice if power efficiency matters; the 5800X at 105W TDP is better if you also run CPU-heavy workloads alongside the model (compilation, video encoding, large CPU-side embedding databases).
For either CPU, do not overspend on system RAM unless you plan to offload model layers to CPU memory — and if you are doing that, you have already accepted a 5–10× throughput hit and should consider a bigger GPU instead. 32 GB of DDR4 is plenty for the rig described.
If you outgrow the RTX 3060, the natural step up in 2026 is a used RTX 4090 (24 GB GDDR6X, 1 TB/s) or a new RTX 5090 (32 GB GDDR7, ~1.8 TB/s). Both clear the bar for 13B–34B models in 4-bit and represent the bandwidth-per-dollar sweet spot at higher capacity points.
Perf-per-watt and perf-per-dollar of bandwidth on consumer hardware
The RTX 3060 at 170 W TDP and 360 GB/s of bandwidth delivers about 2.1 GB/s per watt. The RTX 4090 at 450 W and 1008 GB/s delivers 2.2 GB/s per watt — essentially identical, which is why the per-100-GB/s tok/s figures match so closely. The RTX 5090 at roughly 575 W and 1.8 TB/s reaches 3.1 GB/s per watt, a meaningful generational improvement driven by GDDR7's per-pin efficiency gains.
On a per-dollar basis the picture is more interesting. At a $250 street price, the 3060 delivers 1.44 GB/s per dollar of GPU. The 4090 at roughly $1,800 used in 2026 delivers 0.56 GB/s per dollar. The 5090 at $2,500 delivers 0.72 GB/s per dollar. The 3060 wins bandwidth-per-dollar handily — it just runs into a capacity ceiling earlier.
The lesson: if your workload fits in 12 GB, the 3060 is the bandwidth-per-dollar champion of 2026. If your workload needs more capacity, you pay a 2–3× per-GB/s premium to get it, and you should size the card precisely to the largest model you plan to run rather than overprovisioning.
Bottom line: buy for bandwidth-per-dollar, not headline TFLOPs
The Anthropic–Micron partnership is a useful reminder that even the labs with the largest compute budgets in the world treat memory as the dominant variable. At the desktop level, the same principle holds with sharper edges, because consumer cards span a much wider price range and the cheap ones are remarkably competitive on a bandwidth-per-dollar basis.
Three rules for local inference shopping in 2026:
- Capacity first. Pick the smallest card that fits your target model in your chosen quantization with comfortable KV cache headroom. Overshooting capacity costs you dollars; undershooting costs you order-of-magnitude throughput.
- Bandwidth second. Among cards that meet your capacity bar, pick the one with the highest GB/s per dollar. Tok/s scales nearly linearly with bandwidth, so this maps directly to user-visible speed.
- TFLOPs last. Treat the headline FP16 number as a tiebreaker. It matters for prefill on long prompts and for fine-tuning, but not for the generation phase that dominates most workloads.
If you are building today and just want a starting point: a 12 GB RTX 3060 plus a 5700X or 5800X is the price-performance floor for usable local inference in 2026, and it will run any 7B–13B model your home assistant or coding helper realistically needs. Move up only when a specific workload demands it.
Related guides
- Which GPU Runs Which LLM? Per-Model VRAM Guide
- Best GPUs for Local LLMs in 2026
- Building a 24GB Local AI Rig
Citations and sources
- Micron HBM product information and HBM4 roadmap statements: https://www.micron.com/products/memory/hbm
- TechPowerUp NVIDIA GeForce RTX 3060 12 GB GDDR6 specifications (360 GB/s memory bandwidth): https://www.techpowerup.com/gpu-specs/geforce-rtx-3060-12-gb.c3682
- AnandTech memory technology coverage (HBM, GDDR, bandwidth scaling): https://www.anandtech.com/show/memory
This piece is editorial synthesis based on publicly available information. No independent first-party benchmarking is reported.
