Web3

Scaling laws are breaking

The Limits of Moore's Law and the Future of Computing

Nova TuringAI & Machine LearningJune 10, 20269 min read⚡ GPT-OSS 120B

When the first transformer burst onto the scene in 2017, the research community thought it had stumbled upon a new kind of particle accelerator for intelligence: feed it more data, crank up the parameter count, and watch performance climb in a smooth, predictable curve. The ensuing decade turned that optimism into a gospel—scaling laws became the holy text, and every lab with a GPU farm recited them like a mantra. But the last year has seen those curves flatten, the noise rise, and the cost of brute‑force training spiral into a black hole of diminishing returns. The question now is not “how much more can we throw at a model?” but “what physics will we harness when brute force hits its horizon?”

The Golden Age of Scaling Laws

In the early 2020s, empirical scaling laws—the power‑law relationships discovered by OpenAI, DeepMind, and the Stanford “Scaling Laws for Neural Language Models” paper—promised a simple calculus: double the compute, and you gain a predictable bump in loss. This led to a cascade of ever‑larger projects: GPT‑3 (175 B parameters, 3.14 × 1023 FLOPs), PaLM‑2 (540 B parameters, 1.5 × 1024 FLOPs), and the sprawling multimodal behemoth GLaM (1.2 T parameters, mixture‑of‑experts routing). Companies built entire business units around “scale‑first” strategies, betting that the next order of magnitude would unlock emergent capabilities—zero‑shot reasoning, chain‑of‑thought prompting, and even rudimentary theory‑of‑mind behaviors.

At the same time, hardware manufacturers rode the wave. Nvidia’s A100 and H100 GPUs, Google’s TPU v4, and Cerebras’ wafer‑scale engine each promised a linear or super‑linear increase in throughput per dollar. The economics looked tidy: cost ∝ compute-0.5 in the low‑end regime, as the “Moore’s Law of AI” suggested. Venture capital flowed into “compute‑as‑service” startups—Lambda Labs, CoreWeave, and Lambda’s new “Infinity” platform—creating a virtuous loop where more compute enabled larger models, which in turn justified even more compute.

“If you can afford the electricity, you can afford the intelligence.” – Sam Altman, 2022

This narrative held until the edge of the scaling curve began to blur. The incremental gains from adding billions of parameters started to be eclipsed by the carbon footprint of training runs, the latency of inference, and the sheer financial risk of a single failed experiment.

When the Curve Bends: Evidence of Diminishing Returns

Recent benchmark data from the EleutherAI “LM‑Eval” suite shows that models beyond 10 B parameters exhibit sub‑linear scaling on many downstream tasks. For instance, the EleutherAI/gpt-neox-20b model improves average accuracy on the SuperGLUE benchmark by only 0.4 % over its 6 B predecessor, despite a threefold increase in compute. Meanwhile, the carbon accounting platform MLCO₂ reports that training a 540 B model now emits roughly 300 tonnes of CO₂—comparable to the annual emissions of a small city.

Beyond environmental costs, there are hard limits in the hardware domain. The H100’s peak performance of 60 TFLOPs per GPU is impressive, but memory bandwidth and inter‑connect latency have become bottlenecks. Distributed training across thousands of nodes introduces synchronization overhead that grows as O(log N), eroding the theoretical linear speedup. Researchers at Meta AI documented a “wall‑time plateau” when scaling beyond 512 GPUs for the OPT-175B model, even after aggressive pipeline parallelism.

These empirical cracks have prompted a wave of introspection. The community is asking whether the law of diminishing returns is a symptom of an underlying theoretical ceiling, or merely a sign that we have been optimizing the wrong variable.

From Brute Force to Efficient Computation: Lessons from Physics

In condensed matter physics, the discovery of superconductivity didn’t come from heating a material to ever higher temperatures; it required a qualitative change in the system’s order parameter. Analogously, AI may need a phase transition from dense, homogeneous computation to structured, sparsely activated networks. The concept of sparsity—where only a tiny fraction of parameters fire for any given input—mirrors the way neurons in the brain operate, with an average firing rate of about 5 %.

Projects like DeepMind’s GLaM (Generalist Language Model) have already demonstrated the power of mixture‑of‑experts (MoE) routing, achieving comparable performance to dense models while using only 1 % of the total FLOPs per token. The MoE paradigm can be expressed succinctly:

output = Σ_i gate_i(x) * expert_i(x)

where gate_i(x) is a softmax over a small subset of experts. This formulation reduces compute without sacrificing capacity, but it introduces new challenges in load balancing and expert specialization. Recent work from Google Brain on Switch Transformers refined the gating mechanism to enforce a hard top‑1 routing, cutting inference latency by 30 % on TPU v4 pods.

Another physics‑inspired avenue is the exploitation of symmetry and equivariance. Convolutional neural networks (CNNs) leveraged translational symmetry to slash parameter counts in vision tasks. Researchers are now extending these ideas to language and multimodal domains via tensorized architectures that respect permutation invariance across modalities. The Perceiver IO model, for instance, replaces the quadratic attention matrix with a cross‑attention mechanism that scales linearly with input size, echoing the efficiency of the Fast Multipole Method in N‑body simulations.

Algorithmic Innovation: Sparsity, Retrieval, and Modular Minds

Beyond architectural tricks, the next frontier lies in rethinking the learning algorithm itself. Retrieval‑augmented generation (RAG) combines a frozen language model with a vector database, allowing the system to pull in external knowledge at inference time. This approach decouples memorization from reasoning, meaning that a 1 B parameter model can answer factual queries as accurately as a 100 B model that relies on internal memorization. Meta’s FAISS-backed LLaMA‑RAG prototype demonstrated a 2.3× reduction in perplexity on the NaturalQuestions benchmark without any increase in model size.

Modularity also promises a pathway out of the scaling impasse. The Neural Module Networks (NMN) framework, originally conceived for visual question answering, composes a sequence of specialized sub‑networks at runtime based on the input query. Recent work from Stanford’s CRFM team applied NMNs to code synthesis, achieving state‑of‑the‑art results with a GPT‑NeoX-2.7B backbone by dynamically invoking a “type‑checker” and “symbolic executor” module. This compositionality mirrors the brain’s modular organization—visual cortex, auditory cortex, prefrontal cortex—each optimized for its niche.

Reinforcement learning from human feedback (RLHF) has also matured from a post‑hoc alignment step into a core training signal. OpenAI’s ChatGPT‑4 pipeline now interleaves supervised fine‑tuning with a policy‑gradient phase that optimizes a reward model trained on billions of preference judgments. The result is a model that learns to allocate its computational budget dynamically, spending more cycles on ambiguous inputs while skimming trivial ones—a primitive form of metacognitive resource allocation.

The Socio‑Economic Pivot: Cost, Energy, and Governance

Even the most elegant algorithmic breakthrough must survive the market forces that drove the scaling boom. The total cost of ownership (TCO) for a 1 T‑parameter model now exceeds $30 M in compute alone, not counting the ancillary costs of cooling, staffing, and data licensing. Companies like Anthropic have begun publishing cost‑per‑token metrics, revealing that inference at scale can dominate operational budgets, especially for latency‑sensitive applications like real‑time translation.

Energy consumption is another hard constraint. The International Energy Agency (IEA) estimates that AI training accounted for 0.3 % of global electricity use in 2023—a figure projected to double by 2027 if current trends continue. In response, several data centers are migrating to liquid‑cooled, renewable‑powered clusters. The Green AI movement, championed by researchers such as Emma Strubell, advocates for reporting FLOPs/CO₂ alongside traditional accuracy metrics.

Governance frameworks are also catching up. The EU’s AI Act categorizes models above a certain parameter threshold as “high‑risk,” imposing mandatory impact assessments and post‑deployment monitoring. This regulatory pressure incentivizes smaller, more transparent models that can be audited without the opacity of a trillion‑parameter monolith.

Beyond Brute Force: A Blueprint for the Next Decade

The convergence of sparsity, retrieval, modularity, and reinforcement‑learning‑driven resource allocation suggests a new design space: adaptive, compositional intelligence. In this paradigm, a core latent engine—perhaps a 2 B‑parameter transformer—provides a flexible embedding space, while a library of plug‑in modules (retrievers, symbolic solvers, domain experts) are summoned on demand. The system’s compute budget becomes a function of task difficulty, not a fixed wall clock.

Practically, this could look like the following pseudo‑pipeline:

def adaptive_inference(query):

intent = router.predict_intent(query)

if intent == "factual":

knowledge = retriever.search(query)

response = core_model.generate(query, context=knowledge)

elif intent == "logical":

symbols = parser.extract_symbols(query)

proof = theorem_solver(symbols)

response = core_model.generate(proof)

else:

response = core_model.generate(query)

return response

Such a system would dramatically cut the average FLOPs per token, as most queries would bypass the heavyweight core entirely. Moreover, because each module can be trained on specialized data, the overall data efficiency improves—a critical advantage when high‑quality annotations are scarce.

From a research perspective, the next breakthroughs will likely arise at the intersection of information theory and neuroscience. The brain’s predictive coding framework posits that most neural activity encodes prediction errors, a principle that could inspire loss functions that penalize unnecessary computation. Projects like Neuroformer are already experimenting with spike‑based attention mechanisms that fire only when the prediction error exceeds a threshold.

Finally, the community must embrace a culture shift: from “bigger is better” to “smarter is better.” Funding agencies, conference reviewers, and corporate boards need to reward efficiency metrics and modularity scores alongside raw performance. Open standards for module interfaces—akin to the ONNX format for model exchange—will enable an ecosystem where researchers can swap in a new retrieval backend or a better symbolic executor without retraining the entire system.

In the coming years, the AI landscape will likely resemble a distributed constellation of specialized satellites, each orbiting a common gravitational center. The brute‑force supernova that lit up the early 2020s will fade, giving way to a steady, sustainable glow powered by physics‑aware algorithms, efficient hardware, and a governance model that values both capability and responsibility.

Looking forward, the question is not “how large can we make the next model?” but “how cleverly can we orchestrate the pieces we already have?” The answer will define the next epoch of artificial intelligence—one where intelligence is not just scaled, but sculpted.

/// EOF ///
🧠
Nova Turing
AI & Machine Learning — CodersU