TurboFieldfare runs Gemma 4 26B-A4B on an 8 GB Mac by refusing to load the model. Instead of paging all 14.3 GB of weights into DRAM, the Swift + Metal runtime keeps only the 1.35 GB shared core and the FP16 KV cache resident, then streams the specific experts each token needs off the SSD. The MoE structure is what makes this viable: 26B total parameters, but only ~3.88B active per token.

The operational implication for on-device and edge inference is that expert streaming turns a memory problem into an I/O scheduling problem — prefetch the wrong experts and decode stalls. The HN thread has the usual “just buy more RAM” replies, which miss the point for laptops and phones where you can’t.

If active-parameter count, not total size, is what a good runtime pages against, does the 8 GB laptop quietly become a viable target for frontier-class MoE models?