SShortSingh.
Back to feed

Gas turbines and transformers, not chips, are throttling AI data center expansion

0
·1 views

The primary bottleneck slowing AI data center construction is not semiconductor supply but the physical equipment needed to deliver power — specifically gas turbines and large transformers. The global gas turbine market is dominated by just three manufacturers — GE Vernova, Mitsubishi Heavy Industries, and Siemens Energy — and lead times on new heavy-duty orders are running around three years. GE Vernova alone signed 21 GW of new gas turbine agreements in Q1 2026, pushing its total contracted gigawatts to 100 GW, while Siemens Energy reported a 62% surge in Gas Services orders with a book-to-bill ratio of 2.65. Large power transformers face similar constraints, with a Wood Mackenzie survey citing average US lead times of around 128 weeks and prices roughly 80% above 2019 levels. Until these supply chains ease, power availability — not chip production — remains the binding constraint on how fast AI infrastructure can scale.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

How Random Forests Cut Variance: The Math Behind Bagging and Tree Averaging

Random forests reduce prediction variance by averaging many deep, unpruned decision trees, each trained on a different bootstrap sample of the data. Random feature selection at every split ensures trees remain diverse, preventing a single dominant feature from making all trees look alike. A mathematical identity shows that the mean squared error of an ensemble always equals the average individual tree error minus the spread among trees, explaining why diversity directly drives accuracy gains. Each tree leaves out roughly 37% of training rows, enabling out-of-bag error estimation as a free, honest validation method without a separate holdout set. Unlike boosting, adding more trees to a random forest converges to an error floor and cannot overfit, making the two methods fundamentally different in how they use depth, data, and sequential dependence.

0
ProgrammingDEV Community ·

OpenClaw vs Hermes Agent: Two Rival Open Source AI Frameworks Compared

OpenClaw and Hermes Agent have emerged as two of the most discussed open source autonomous agent frameworks in 2026, each taking a fundamentally different approach to AI task automation. OpenClaw treats agents as a team of workers, using Markdown-based identity files to define each agent's role, memory, and behavior, making it suited for structured, multi-agent workflows. Hermes Agent, released by Nous Research in February 2026, focuses on a single self-improving agent that automatically distills complex tasks into reusable skills and refines them over time. Hermes gained over 215,000 GitHub stars within weeks of launch, making it one of the fastest-growing agent projects of the year. Developers are advised to choose OpenClaw for team-oriented, deterministic setups and Hermes for a continuously learning, solo agent experience.

0
ProgrammingDEV Community ·

Rust API Design: How to Manage Type Changes Without Breaking User Code

A technical guide on advanced Rust API design warns developers to think carefully before making interface changes visible to users, as frequent backward-incompatible updates frustrate downstream consumers. The article explains that even subtle modifications—like adding a field to a public struct—can silently break existing user code that previously compiled without issue. To minimize this risk, developers are advised to use Rust's visibility modifiers such as pub(crate) and pub(in path) to limit how much of an API is publicly exposed. The fewer public types an API surfaces, the greater the freedom a developer retains to make internal changes later. The guide also introduces the non_exhaustive attribute as a tool to signal that types may grow over time, helping users write more future-proof code.

0
ProgrammingDEV Community ·

Five Strategies for Handling AI Prompts That Exceed Context Window Limits

As AI-powered chat applications grow longer, developers face the challenge of deciding what conversation history to drop when prompts exceed a model's context window. Engineers must preserve certain elements at all costs, including the system prompt, the latest user message, and paired tool calls, since losing these causes functional failures rather than mere quality dips. Five truncation approaches exist, ranging from crude hard string cuts to sophisticated retrieval-based systems, ranked by how much useful information they retain per token. Most production applications are advised to use the middle-out strategy, which drops mid-conversation content while preserving the opening context and recent exchanges. Developers are also urged to handle truncation themselves rather than delegating it to the AI provider, ensuring they can log dropped content, notify users, and apply different strategies across product features.

Gas turbines and transformers, not chips, are throttling AI data center expansion · ShortSingh