Local LLM hardware cost efficiency

Local Large Language Model (LLM) hardware efficiency is primarily determined by the relationship between memory bandwidth and the cost of the hardware required to host a specific model size Verified Answer #4. Because the processor must retrieve the entire model's weights from memory to generate each individual token, autoregressive decoding is heavily memory-bandwidth bound rather than compute-bound Verified Answer #2. The maximum achievable tokens-per-second (TPS) can be estimated by dividing the sustained memory bandwidth by the resident model size in bytes Verified Answer #3.

Efficiency by Model Class

8B Parameter Models

For 8B-class models, the highest value is typically found in single mid-range discrete GPUs with 12–16 GB of VRAM Verified Answer #1. An 8B model quantized to 4-bit (Q4) requires approximately 4–5 GB of VRAM, allowing it to run entirely on a single GPU and avoid performance penalties from PCIe-based inter-GPU communication or system RAM offloading Verified Answer #4Verified Answer #2.

70B Parameter Models

Efficiency drops significantly for 70B models due to a "VRAM capacity cliff" Verified Answer #2. A 70B model at 4-bit quantization requires 40–45 GB of VRAM, which exceeds the capacity of any single consumer GPU, including the RTX 5090 Verified Answer #4.

Performance Considerations

Achieving high speeds of 60–120+ tokens per second is relatively easy for 8B models on most modern hardware tiers Verified Answer #3. For 30B to 32B models, a single RTX 5090 is considered a price-to-performance sweet spot that can approach these speeds Verified Answer #3. However, for 70B dense models, a dual RTX 5090 setup typically reaches only 40–65 tokens per second without the use of speculative decoding or specialized enterprise hardware Verified Answer #3. Large Mixture-of-Experts (MoE) models, such as DeepSeek-V4-Flash, require significantly more resources, needing either 192 GB of distributed GPU memory or a large unified-memory system to accommodate their 160 GB footprint Verified Answer #3.