top of page

Where AI Is Heading ?- Don't Look at Models — Look at Real Estate

  • Writer: Sathish Kumar
    Sathish Kumar
  • 2 days ago
  • 7 min read

The clearest signal of how seriously the biggest tech companies believe in AI isn't what is captured by the latest models or IDE's or tools — it's the dirt, concrete, and megawatts.


Four of the world's largest tech companies are now collectively planning to spend somewhere in the neighborhood of $600–700 billion in capital expenditure in 2026 alone — up from roughly $388 billion in 2025 — and almost all of that increase is being driven by AI infrastructure. But each company is placing its bet in a slightly different way:


  • Oracle: renting instead of buying. As of late November 2025, Oracle disclosed $248 billion in long-term lease commitments for data center and cloud capacity — a figure that jumped 148% in a single quarter and is up more than 2,200% from two years earlier (CoStar; CNBC). Most of these leases run 15 to 19 years and are tied heavily to Oracle's role as the infrastructure backbone for OpenAI's Stargate project, a joint venture with OpenAI, SoftBank, and Abu Dhabi's MGX now targeting roughly 10 gigawatts of compute capacity and more than $400–500 billion in total committed investment (IntuitionLabs: Stargate overview; IntuitionLabs: Oracle-OpenAI deal). The flagship Stargate campus in Abilene, Texas sits on 875 acres, will eventually house around 450,000 Nvidia GB200 chips, and is expected to draw up to 1.2 gigawatts of power on its own (Notebookcheck).


  • Microsoft: buying up raw land — and increasingly, raw power. Microsoft has been acquiring thousands of acres for data center campuses while its Azure business runs into the opposite constraint: not enough electricity to plug servers into. Microsoft's capex has climbed toward a $110–145 billion annualized range for 2026, and analysts estimate the company is sitting on an $80 billion backlog of Azure orders it can't fulfill because of power availability, not chip supply (RDWorldOnline; Datacenter Richness). To hedge against that, Microsoft signed a 20-year, $16 billion power purchase agreement to restart Three Mile Island's Unit 1 reactor (now rebranded the Crane Clean Energy Center), securing 835 megawatts of nuclear power expected to come online in 2027 (SMR Intel: nuclear data center tracker).


  • Amazon (AWS): securing power directly at the source. Amazon is projecting roughly $200 billion in 2026 capex — more than any other hyperscaler — with the vast majority going into AWS data centers (TechCrunch; Datacenter Richness). Beyond leasing and building land globally, AWS previously paid $650 million for a data center campus in Pennsylvania directly connected to a nuclear power plant, and has invested $700 million in X-energy to help build small modular reactors (SMRs) capable of supplying up to 12 Xe-100 reactor units for future campuses (SMR Intel).


  • Meta: building custom hubs engineered for AI training. Meta plans to spend $115–135 billion in 2026, part of a stated $600 billion commitment to U.S. infrastructure through 2028 (TechCrunch). Its most ambitious project, "Hyperion" in Louisiana, spans 2,250 acres — close to the footprint of Manhattan — will eventually house 10 data center buildings across 1,200 acres, and is targeting up to 5 gigawatts of capacity, partly enabled by an arrangement with a nearby nuclear plant (TechCrunch; Programs.com). A second campus, "Prometheus" in Ohio, runs on on-site natural gas generation and is expected online in 2026 (TechCrunch).


So why are trillion-dollar software companies suddenly acting like power companies and land developers? Because ordinary data centers, the kind built to stream video and host websites, simply cannot handle what AI demands of them.


The Three Basic Building Blocks of a Data Center


Every data center exists to do three jobs: Compute, Network, and Storage. Over the last twenty years, all three became dramatically easier to share across many users and workloads.


1. Compute (The Brains)

The past: One physical server ran one operating system and one application. Most servers sat mostly idle — often utilized at only 10-15% of capacity — wasting floor space, hardware, and electricity around the clock.

How it changed: Virtualization let one physical machine be split into many independent "virtual machines," each thinking it has its own dedicated hardware. Later, containers took this further, packaging applications into lightweight units that can start and stop in seconds rather than minutes, making it possible to run thousands of small workloads efficiently on the same physical fleet.

2. Network (The Roads)

The past: Servers connected through basic switches in a hierarchical, tree-like layout. As traffic grew, congestion piled up at the top of the tree, and redundant backup links were often deliberately disabled to prevent traffic loops — meaning half the installed cabling sat unused.

How it changed: Data centers moved to leaf-spine architectures — essentially a grid of interconnected switches that behaves like a multi-lane highway system rather than a single road. Traffic can take many equally fast paths simultaneously, so no single link becomes a bottleneck, and capacity can be added by simply plugging in more "spine" switches.

3. Storage (The Memory)

The past: Hard drives lived inside each individual server. If a server failed, the data on it could become unreachable, and every server's storage was essentially an isolated island.

How it changed: Storage moved into shared, centralized pools connected over fast dedicated networks (SANs and distributed file systems), so any server could read and write data regardless of which physical box it happened to be running on — and a single drive or server failure no longer meant lost access to data.


(I described this evolution from the application's point of view in an earlier post: "Bare Metal Servers to Containers.")


Enter AI:


Traditional cloud infrastructure was optimized for tasks like streaming video, serving web pages, and running databases — workloads made up of millions of small, mostly independent requests. A delay of a few milliseconds on any single request is invisible to the end user.


AI training doesn't work that way. Training a modern large language model is closer to solving one enormous, tightly coupled math problem across thousands of computers that must behave as a single machine.


  • CPUs vs. GPUs: A CPU is built to execute a handful of complex instruction streams very quickly, one after another. AI training instead requires performing millions of simple arithmetic operations — mostly matrix multiplications — simultaneously. GPUs (and increasingly custom AI accelerators like Google's TPUs, Amazon's Trainium, and Microsoft's Maia chips) are built with thousands of small cores designed exactly for that kind of massive parallelism. This has a name in computer architecture:


    Flynn's taxonomy, which classifies processors by how many instruction streams and data streams they handle at once. A CPU is fundamentally a MIMD device (Multiple Instruction, Multiple Data) — each of its cores can run a completely different program on completely different data, independently and asynchronously, which is exactly what you want when juggling a browser, a music player, and a background task at the same time.


    A GPU inverts that ratio almost entirely. It's built around SIMD at a massive scale — Nvidia calls its version SIMT (Single Instruction, Multiple Threads), where groups of 32 threads (a "warp") execute the exact same instruction on different data in lockstep. Instead of a CPU's 16-wide vector unit, a GPU broadcasts one instruction across tens of thousands of simple cores simultaneously. Matrix multiplication — the operation underlying nearly all neural network math — is just the same multiply-and-add instruction applied repeatedly across a huge grid of numbers, with no branching and no need for independent decision-making. That's the ideal SIMD workload, and it's why GPUs can be 10–100x faster than CPUs on the math that dominates AI training, even though any single GPU core is far weaker than a single CPU core.


  • Zero tolerance for delay: When thousands of GPUs train a model together, they constantly synchronize — exchanging gradient updates after every batch of calculations. If the network drops even a single packet or stalls for a fraction of a millisecond, the entire cluster has to pause and wait for the slowest participant. This is why AI data centers use specialized, ultra-low-latency interconnects (like InfiniBand or NVLink) instead of standard enterprise networking gear.


  • Feeding the beast: Storage systems must stream enormous volumes of text, images, video, and model checkpoints directly to the chips fast enough that the (very expensive) GPUs are never left waiting idle for data.


The Heat and Power Problem

This is where the real estate arms race comes from. A traditional server rack drew somewhere around 5–10 kilowatts — comparable to a couple of houses. A single modern AI server rack, densely packed with GPUs, can now draw 40 to over 130 kilowatts — closer to the electricity demand of a small neighborhood, in the footprint of a single closet-sized cabinet.


That much power concentrated in one place produces intense heat. Blowing cold air across the chips with fans — the standard approach for decades — simply can't move heat away fast enough anymore; the chips would throttle or shut down to protect themselves.

To keep pace, data center design itself has had to change:


  • Direct liquid cooling: Thin tubes of chilled coolant run directly across the chip surfaces, pulling heat away far more efficiently than air ever could.

  • Immersion cooling: Entire servers are submerged in tanks of a specially engineered, non-conductive liquid that absorbs heat directly from every component.


Why This Turned Into a Real Estate and Power Grab

Put together, these constraints explain the entire dynamic playing out in 2026:

  1. Land is no longer the bottleneck — power is. 

  2. That scarcity is repricing land itself.

  3. It's pushing tech companies into the real estate and energy business. 


The clearest evidence of this shift shows up in where the money is actually going. Of the roughly $600–700 billion hyperscalers are pouring into AI in 2026, the majority is no longer being spent on software or even on the chips themselves — it's being funneled into land acquisition, power purchase agreements, transmission upgrades, cooling systems, and, increasingly, direct stakes in nuclear and gas power plants. Oracle is committing a quarter-trillion dollars to leases rather than headcount. Microsoft is bankrolling the restart of a nuclear reactor. Amazon and Meta are writing checks to reactor startups the way they once wrote checks for employees. What was once a software arms race, fought primarily through hiring, has become a capital-intensive infrastructure and energy buildout, with the balance sheets of the world's biggest tech companies increasingly resembling those of utilities and real estate developers rather than software firms. The money is still chasing AI — it's just chasing the electricity and the acreage that AI needs to exist first.



 
 
 

Comments


Never Miss a Post. Subscribe Now!

Thanks for Subscribing!

© 2020 Sathish Kumar Srinivasan

bottom of page