CPU offloading: how much speed you lose
Offload is a VRAM relief valve, not a free performance feature.
The mechanism
If the full model does not fit, runtimes can keep some layers on the host. Every token may pay a tax moving activations across a slow link.
How to think about the penalty
Our sketch uses effective ≈ tps × (1 − frac + frac × penalty_factor). Penalty factor ≪ 1 models slow host paths. Calibrate against a real run on your machine when possible.
Better alternatives when possible
Smaller quant, shorter context, or a GPU with more VRAM usually beats aggressive offload for interactive use.
General information, not personalized advice.