INFRA Signal 124
Optimizing multi-GPU LLM inference on e-waste hardware requires managing memory bandwidth bottlenecks
A blog post details the challenges of running large language models on a multi-GPU server built from e-waste-grade hardware, emphasizing that memory bandwidth is the primary bottleneck for token generation.
Understanding memory bandwidth constraints is crucial when distributing large models across multiple low-end GPUs. Token generation speed depends more on moving weights into VRAM than on compute capability. This highlights the specific bottlenecks engineers face when building distributed inference systems on budget hardware.
Written by elseif from the cluster below · every claim links back to a sourceThe three things worth knowing
Running large language models on e-waste GPUs requires optimizing existing code and settings like llama.cpp rather than writing new kernels.
Token generation in transformer models is limited by memory bandwidth rather than compute capability.
The Gemma4-31B model contains 31 billion weights across 60 layers that must be loaded into VRAM for each token calculation.
THE CLUSTER
↗