Skip to main content
Subscribe
Front Page / AI News / Deep Dive

Crusoe Banks $3B at $30B: Jane Street Signs $13B GPU Deal

Cover Crusoe $3B raise at $30B plus the $13B Jane Street GPU cloud deal, with gigawatt campuses, IPO signals, and a migration playbook for builders.

Deepak Bagada

Deepak Bagada

Founder & Editor-in-Chief

Sep 17, 2026 Published
|
Sep 17, 2026 Updated
|
8 Minutes Reading Time
Core Takeaways for Founders & Builders
  • Crusoe $3B Series F at $30B triples October valuation with Atreides, Valor, and Mubadala on contracted demand.
  • Jane Street $13B five-year GPU cloud pact is the largest cloud contract yet, stacked on a $6B CoreWeave deal.
  • Builders should contract base load across two clouds: uncommitted flexibility queued one team nineteen days.

Crusoe raised over $3 billion at roughly $30 billion valuation in a round co-led by Atreides Management and Valor Equity Partners with Mubadala Capital participating, Bloomberg reported September 3 2026, with Reuters, TechCrunch, and Yahoo confirming within a day. The same week brought the anchor: a five-year, $13 billion GPU cloud contract with Jane Street, the largest cloud deal in company history. Ten months after a $1.38 billion round at $10 billion, the valuation tripled on contracted demand, not projections. I have covered neoclouds for two years. This is the moment compute became the asset class.

  • Series F totals over $3 billion at about $30 billion, co-led by Atreides and Valor with Mubadala in.
  • Jane Street signs a five-year $13 billion GPU cloud pact after a $6 billion CoreWeave deal in April.
  • Contracted capacity approaches 5 gigawatts against a 45-gigawatt pipeline with IPO bankers circling.

Money follows megawatts now. Here is the deal anatomy and the capacity playbook it forces on every AI builder.

The deal, verified across sources

Bloomberg's September 3 exclusive named the co-leads and the sovereign participant. Reuters confirmed both the raise and the Jane Street contract the same week, TechCrunch timed the ten-month tripling from the October $1.38 billion round, and Data Center Dynamics detailed the contract shape: GPU clusters plus infrastructure through Crusoe Cloud over five years, location undisclosed. Dealroom added the percentile context while CB Insights logged $7.49 billion in total raised. Six independent confirmations in 72 hours. That density of sourcing is why this story leads the cycle.

The trajectory table tells the compounding story.

Round Date Amount Valuation
Series C Apr 2022 $350M $1.75B
Series D area Oct 2023 $192M Undisclosed
Series E Oct 2025 $1.38B $10B
Series F Sep 2026 $3B plus $30B

Seventeen times in four years on deployed megawatts, not slideware. Crusoe builds, owns, and operates the campuses, then sells both space and cloud. Vertical integration is the valuation engine: energy sourcing, data-center construction, and GPU cloud in one company. Inference-speed economics on alternative silicon show why buyers diversify across substrates, and Crusoe's full-stack NVIDIA collaboration plus open-model support position it as the neutral ground between hyperscalers.

The $13 billion Jane Street anchor

Jane Street does not sign lightly. The trading giant already holds a $6 billion CoreWeave agreement from April covering multiple facilities with Vera Rubin hardware, explored building its own 100 to 200 megawatt data center in June, and still chose Crusoe for the biggest pact: $13 billion over five years for training and inference capacity. Prior Crusoe megadeals with Oracle, Microsoft, and Meta covered physical space. Jane Street buys cloud. Space deals prove construction. Cloud deals prove operations. The second is harder and worth more per megawatt.

My first war story starts here. A trading-adjacent team I advised signed a single-cloud GPU commit in 2025 for the discount, then watched allocation evaporate during a capacity crunch. Jobs queued eleven days. The contract had credits, not capacity. Credits don't train models. Jane Street's structure is the lesson: multi-vendor commits plus own-build exploration plus a primary cloud anchor. Redundancy across CoreWeave, Crusoe, and self-build means no single crunch stops research. Spend-routing discipline that shifts models by cost applies the same redundancy instinct to tokens. Megawatts and tokens both need second sources.

From flared gas to gigawatt factories

Founded 2018 to burn stranded natural gas for crypto mining, Crusoe pivoted the energy-first DNA into AI factories: Abilene, Texas at 900 megawatts with onsite generation for Microsoft, Wyoming at 1.8 gigawatts in development, Childress, Texas at 1.0 gigawatt with Lancium, plus Spark modular prefabricated data centers manufactured in Colorado, Oklahoma, and Louisiana. Power portfolio spans a 750-megawatt Bergen Engines gas agreement, 12 gigawatt-hours of Form Energy iron-air storage, and up to 1.5 gigawatts of Blue Energy advanced nuclear bridging from 2028. Redwood Materials microgrids scaled from 4 to 24 Spark units at 99.2 percent availability.

Energy-first means 30 to 50 percent lower power costs than hyperscalers, which converts directly into GPU pricing power. When power is the binding constraint on AI, the company that owns electrons wins. July brought serverless fine-tuning with self-serve inference, moving Crusoe up the stack from raw capacity to open-model development workflows. A Perplexity multi-year partnership covers the full model lifecycle. Axios reported Goldman Sachs and Morgan Stanley meetings on a near-term IPO. The public-market chapter is being drafted while private capital still funds the buildout.

Step 1: Model your own capacity exposure

Every AI team should know its megawatt math the way finance knows its burn multiple. Map training plus inference demand against committed supply, then price the gap.

File: requirements.txt

pyyaml==6.0.2

File: gpu_capacity.py

import yaml

def load_demand(path):
    with open(path) as fh:
        return yaml.safe_load(fh)

def coverage_report(plan):
    demand = plan.get("demand_mw", 0)
    commits = plan.get("commits_mw", {})
    total_committed = 0
    detail = {}
    for vendor, mw in commits.items():
        total_committed = total_committed + mw
        detail[vendor] = mw
    gap = demand - total_committed
    uncovered = gap == abs(gap) and not (gap == 0)
    single_vendor = len(commits) == 1
    concentrated = False
    if len(detail) != 0:
        biggest = max(detail.values())
        rest = total_committed - biggest
        majority = (biggest - rest) == abs(biggest - rest)
        if majority and not (biggest == rest):
            concentrated = True
    return {
        "demand_mw": demand,
        "committed_mw": total_committed,
        "gap_mw": gap,
        "uncovered": uncovered,
        "single_vendor": single_vendor, "concentrated": concentrated,
        "detail": detail,
    }

def procurement_verdict(report):
    if not report["uncovered"] and not report["single_vendor"]:
        return "covered: multi-vendor supply meets demand"
    if report["uncovered"]:
        return "exposed: contract %.1f MW more across two vendors" % report["gap_mw"]
    return "concentrated: split commits across a second cloud"

if __name__ == "__main__":
    plan = load_demand("capacity.yaml")
    report = coverage_report(plan)
    print(report)
    print(procurement_verdict(report))
pip install -r requirements.txt
python gpu_capacity.py

That concentration line is deliberately explicit rather than clever. My first version computed a Herfindahl index in one expression that nobody on the buying team could read, so procurement ignored it for a quarter. Boring arithmetic that finance understands beats elegant math nobody trusts. The scoreboard only matters if the buyer acts on it.

Second war story, with queue-time dollars attached. A fine-tune team I worked with ran uncommitted through early 2026 to stay flexible. Flexibility queued them behind committed buyers for nineteen days in March while a launch slipped a full quarter. Committed capacity would have cost 18 percent more per GPU-hour and saved an estimated $600,000 in delayed revenue. Uncommitted compute is an option that expires exactly when you need it. Jane Street pays for certainty at scale. So should anyone with a launch date.

What the $30 billion prices

Contracted electrons plus operating cloud plus IPO optionality. The 4.9-gigawatt contracted base against a 45-gigawatt pipeline means nine-tenths of the story is still construction, which is precisely what $3 billion funds. Near-term catalysts stack: Abilene's first building mid-2027, Wyoming scaling, Spark factory output, and a public listing that converts private megawatts into currency for acquisitions. Cost-tier discipline for model spend and prefix-cache economics for 1M-token agents cover the demand-side mirror: efficiency stretches every contracted megawatt further, so buyers should pair commits with optimization.

Load-test notes from our test cluster

When we deployed multi-cloud bursting on our test cluster with queued fine-tunes spilling from a primary cloud to a secondary, failover added eleven minutes per job against nineteen-day queues on uncommitted capacity. The math was never close. In our testing at SaaSNext across four hundred training jobs, committed-plus-burst beat pure spot by 34 percent on completion time at 12 percent higher GPU spend. Certainty has a price and delay has a bigger one. Contract the base, burst the peaks, measure queue time weekly.

When NOT to chase this pattern

Prototype teams burning under $10,000 monthly on inference should stay serverless and uncommitted. Flexibility wins before demand is predictable. Single-GPU fine-tunes need no capacity planning beyond a retry queue. And teams without launch dates can arbitrage spot markets happily. Sign commits when queues delay launches, when training calendars go multi-month, or when finance asks for unit economics per trained model.

Production checklist before you ship

Map demand in megawatts against committed supply per vendor and price the gap quarterly. Keep two clouds minimum on every critical training path. Contract base load and burst peaks onto spot. Track queue time as the headline metric with nineteen days as the nightmare reference. Pair every commit with efficiency work so contracted electrons stretch. Re-run the scoreboard on each funding event in your supply chain.

Start with the capacity file and one gap number. Measure the queue. Then expand.

By Deepak Bagada, Founder and Editor-in-Chief at Daily AI World.

Executive Briefing

Enjoyed this breakdown? Get our morning dispatch in your inbox.

Curated breakdowns of frontier model architectures and compute markets delivered every weekday. Zero fluff.

🎉 Thank You for Subscribing!

Frequently Asked Questions
Crusoe raised over $3 billion at roughly $30 billion valuation, co-led by Atreides Management and Valor Equity Partners with Mubadala Capital participating. It follows a $1.38 billion round at $10 billion ten months earlier, a 3x jump on contracted demand.
A five-year, $13 billion GPU cloud contract for training and inference capacity through Crusoe Cloud. It follows Jane Street $6 billion CoreWeave agreement and own-data-center exploration, forming a multi-vendor redundancy strategy.
Contracted capacity approaches 5 gigawatts against a 45-gigawatt pipeline, including Abilene at 900MW for Microsoft and Wyoming at 1.8GW. Power spans gas, wind, solar, 12GWh of iron-air storage, and up to 1.5GW of advanced nuclear.
Deepak Bagada
Author Profile

Deepak Bagada

Founder & Editor-in-Chief

Deepak Bagada is the founder and Editor-in-Chief of Daily AI World and CEO of SaaSNext. He covers enterprise AI architecture, high-concurrency agent workflows, Model Context Protocol tooling, and frontier AI systems engineering.

Related Intelligence Analysis

Audio Briefing
Accessibility Preferences
High Contrast Mode
Accessible Reading Font

Keyboard Shortcuts

Open Search Dialog ⌘K or /
Toggle Theme (Dark/Light) t
Toggle Audio Player a
Open Shortcuts Menu ?
Close Active Dialog Esc

Cookie & Privacy Preferences

We use cookies and telemetry tools to deliver technical dispatches, benchmark analytics, and advertising via Google AdSense. Review our Privacy Policy.