
Deepinfra.com
AI inference startup DeepInfra opened its first data center outside the United States in Toronto on July 8, giving Canadian developers and enterprises their first access to a purpose-built, Blackwell-generation inference cluster on Canadian soil. The move narrows a real compliance friction point for regulated industries — but because DeepInfra is incorporated in the United States, Canadian organizations in heavily regulated sectors need to understand what the new cluster solves and what it does not.
The Toronto facility is physically located in Canada. Under the U.S. Clarifying Lawful Overseas Use of Data Act — the CLOUD Act — that physical location does not change the legal jurisdiction that governs the data. U.S. law enforcement can compel any U.S.-incorporated company to produce data from servers located anywhere in the world, regardless of where those servers physically sit. Data residency and data sovereignty are not the same thing, and the distinction matters in financial services, healthcare, and government — the sectors most likely to evaluate this launch.
The facility offers 1.7 megawatts of capacity and deploys more than 1,000 NVIDIA Blackwell B300 GPUs, making it DeepInfra's ninth data center location and its first outside its home market of eight U.S. sites. The Toronto cluster is designed exclusively for production AI inference — the computationally intensive task of running trained models in real-time applications — rather than for training.
The company was founded in 2022 in Palo Alto by Nikola Borisov, Georgios Papoutsis, and Yessenzhar Kanapin, the engineering team behind the messaging application imo, which scaled to more than 200 million users. That pedigree shapes DeepInfra's infrastructure philosophy: it owns and operates its GPU hardware rather than renting spot capacity from hyperscalers, and it optimizes the full stack from chips to APIs. The platform currently hosts more than 200 open-source models — including Llama, Mistral, Qwen, and Nemotron variants — through OpenAI-compatible APIs, and processes nearly five trillion tokens per week.
The Toronto launch followed two months after DeepInfra closed a $107 million Series B in May 2026, co-led by 500 Global and Georges Harik, one of Google's earliest engineers, with participation from NVIDIA, Samsung Next, Supermicro, Felicis, A.Capital Ventures, Crescent Cove, Peak6, Upper90, and others. CEO Nikola Borisov said at the time of the raise that global capacity expansion was a primary objective. Toronto is the first visible result.
Read more: Canada Sovereign AI: $220M Bell-Cohere Deal Puts Grace Blackwell on Canadian Soil
Toronto is Canada's largest data center market, home to colocation operators including Digital Realty, Equinix, Cologix, EdgeConneX, and Hut 8. The city offered DeepInfra a mature ecosystem for deploying high-density GPU capacity quickly without building from the ground up. The company has not confirmed which operator hosts the facility; the site is likely leased space at a third-party colocation provider.
Beyond logistics, the regulatory environment created genuine demand. Canadian enterprises in financial services, healthcare, and government operate under a layered compliance framework that makes where AI inference runs a material legal question. The Personal Information Protection and Electronic Documents Act requires organizations to ensure comparable protections when personal data is processed across borders. Quebec's Law 25 adds strict cross-border transfer requirements with penalties reaching CAD $25 million or four percent of global revenue for violations.
The concern driving procurement conversations was primarily this: routing AI inference calls to U.S.-based infrastructure meant data traversed the border and landed in a jurisdiction where the CLOUD Act could be invoked. A Canadian cluster reduces the frequency of that scenario for inference workloads — but does not eliminate CLOUD Act exposure, because the law follows the corporate parent, not the server rack.
Canada's federal government signaled how seriously it views this exposure. On June 4, 2026, Prime Minister Mark Carney launched the AI for All national artificial intelligence strategy, which explicitly described current dependencies on foreign-controlled cloud infrastructure as "a strategic exposure Canada cannot afford to leave in place." The strategy targets 850 megawatts of sovereign compute capacity by 2030, defined as Canadian-controlled infrastructure — a standard DeepInfra's Toronto cluster does not meet.
This distinction is where enterprises in regulated sectors need to read carefully.
The CLOUD Act, enacted in 2018, amended the Stored Communications Act to clarify that U.S. warrants, subpoenas, and court orders can compel any U.S.-based technology company to produce data in its possession, custody, or control, regardless of where that data is physically stored. The operative principle: jurisdiction follows the provider, not the server. A DeepInfra server in Toronto is as reachable by U.S. law enforcement as a DeepInfra server in California.
Physical data residency — the fact that a server sits inside Canada's borders — satisfies some compliance obligations. Under PIPEDA's cross-border transfer framework, data that is processed in Canada by a Canadian-located server can meet residency requirements. For enterprises primarily concerned with inference latency and straightforward PIPEDA compliance, the Toronto cluster addresses a meaningful friction point.
Data sovereignty is the harder standard. It requires that the data be governed by the laws of the jurisdiction where it resides — which means the hosting company must itself be subject only to Canadian law, not to the extraterritorial reach of a foreign government's statute. DeepInfra remains incorporated in the United States, which means it remains subject to CLOUD Act obligations regardless of where its servers are located. That is a fixed legal condition of operating under U.S. corporate law, not a risk to be weighed against other factors.
For most developers building consumer applications, content platforms, or productivity tools, this distinction is unlikely to be operationally relevant. For regulated enterprises handling sensitive client financial data, protected health information, or government-classified systems, it is the central question, and the answer has not changed with this announcement.
The choice of hardware is not incidental to DeepInfra's business model. The Blackwell B300 is NVIDIA's Blackwell Ultra GPU, designed from the ground up around inference and reasoning workloads rather than training. It carries 288 gigabytes of HBM3e memory per GPU — 50 percent more than the B200, and more than three and a half times the H100 — at a thermal design power of 1,400 watts per GPU that mandates direct liquid cooling. The Toronto facility's 1.7 megawatt envelope is consistent with liquid-cooled B300 deployment.
The memory advantage translates directly into inference economics. A single B300 can hold a full 70-billion-parameter model in FP16 precision with substantial capacity remaining for the key-value cache that supports batching and context management. The previous generation H200, by contrast, required model sharding across multiple GPUs for models above roughly 65 billion parameters — adding communication overhead, latency, and hardware cost for the same workload. DeepInfra documented this directly in its NVIDIA inference stack blog: after the release of DeepSeek V4, the company found that a workload previously requiring four H200 GPUs ran on a single B300 at higher tokens per second.
That four-to-one hardware reduction is the core of DeepInfra's cost efficiency claim. The company says its inference costs up to 20 times less than general-purpose cloud alternatives — a figure sourced from its own marketing and not independently audited, but directionally consistent with what the hardware consolidation arithmetic suggests.
The B300's raw capabilities are only part of the story. The efficiency gains come from the software stack DeepInfra runs on top of the hardware, which comprises three components from NVIDIA's ecosystem.
TensorRT-LLM provides optimized inference kernels — compiled, hardware-specific code that extracts maximum compute from each GPU for transformer-based model architectures. NVIDIA ModelOpt handles NVFP4 quantization: a process that converts model weights from 16-bit floating-point to a four-bit format using a two-level scaling scheme that preserves accuracy within roughly one percent while reducing memory requirements by approximately 1.8 times. That compression means more model fits in the B300's already-large memory pool, enabling larger batch sizes and higher throughput per GPU.
NVIDIA Dynamo is the orchestration layer that coordinates work across GPU clusters. Its central innovation is disaggregated inference: it splits the two phases of language model generation — prefill (processing the input tokens) and decode (generating each output token one at a time) — onto separate pools of GPUs rather than running both phases on the same hardware. Prefill is compute-bound and benefits from high-FLOPs GPUs; decode is memory-bandwidth-bound and can run on different hardware configurations. Separating them enables independent optimization of each phase. DeepInfra's blog described the result: the components work together so that "NVFP4 reduces memory pressure, Dynamo handles KV-aware routing and disaggregated prefill/decode, TensorRT-LLM makes sure the kernels are actually optimized for the hardware underneath." According to NVIDIA, GB300 NVL72 systems running Dynamo achieve up to 50 times higher throughput for mixture-of-experts models compared to Hopper-generation systems — NVIDIA's own benchmark on NVIDIA hardware, measured on specific workloads, not a general-purpose performance guarantee.
DeepInfra owns its GPU infrastructure rather than renting spot capacity. That ownership translates to a second class of advantage: consistent performance and pricing that general-purpose hyperscalers, who optimize multi-tenant resource allocation across training, inference, and other workloads simultaneously, cannot offer at the same cost structure.
DeepInfra estimates that approximately 30 percent of its weekly token volume — nearly five trillion tokens total — is already driven by autonomous AI agents rather than direct human queries. That proportion will grow. Production agentic systems trigger between 50 and 100 or more model calls per completed task, and operate continuously rather than in isolated sessions.
The economic implication is significant. A single user interacting with a chatbot once per day generates modest inference demand. An enterprise deploying an AI agent that monitors a system, summarizes incoming documents, coordinates with other agents, and takes actions continuously generates inference demand that scales with how many things the system is doing — not just how many people are using it. That sustained, high-volume pattern is exactly what purpose-built inference infrastructure is designed to handle and what general-purpose cloud pricing models make economically painful at scale.
AI inference is projected to account for more than 40 percent of total global data center demand by 2030, growing at a compound annual rate of approximately 35 percent, according to McKinsey and Company research cited by DeepInfra. Deloitte separately estimated that inference could account for roughly two-thirds of all AI compute spending in 2026 alone. DeepInfra's own revenue tripled between January and May 2026, according to the company — growth the company attributes to this demand trajectory.
Read more: Open Agent Stack Cuts Enterprise AI Cost 10x: NemoClaw Blueprint Ships
DeepInfra's Toronto deployment arrives inside a broader shift. Canadian AI infrastructure investment accelerated sharply in 2026: the Bell-Cohere consortium signed a $220 million deal in June to deploy NVIDIA Grace Blackwell GPUs at a British Columbia facility, and Meta announced plans on July 8 to build a one-gigawatt data center campus in Sturgeon County, Alberta — the company's first in Canada and its largest outside the United States. DeepInfra's cluster is smaller in absolute scale than either of those projects but more directly relevant for inference API customers: it is available now, it is purpose-built for the inference workload, and it accepts standard OpenAI-compatible API calls.
The company has not confirmed a timeline or specific regions for additional international deployments, but has said such deployments are "under evaluation." AI Wiki noted DeepInfra's stated long-term ambition is to become what investor Felicis described as "the CDN of the LLM Age" — a globally distributed inference network routing model requests to the lowest-latency cluster, the way a content delivery network routes static assets to an edge node near the user. Toronto is the first node outside the United States in what is intended to be a multi-continent footprint.
Whether the Palo Alto headquarters eventually becomes a liability for Canadian government customers who need full data sovereignty will depend on how procurement guidance evolves under the AI for All framework. For the developers and enterprises who need lower-latency inference with clearer data residency — and who have already assessed that the CLOUD Act exposure is manageable for their workload — DeepInfra's Toronto cluster is a real and immediate option.
Not entirely. Physical data residency — where the server is located — satisfies some Canadian compliance obligations under PIPEDA and may reduce cross-border transfer concerns. But data sovereignty, the stricter standard, requires that data be governed exclusively by the laws of the country where it resides. Because DeepInfra is incorporated in the United States, it is subject to the CLOUD Act, which allows U.S. law enforcement to compel production of data held by U.S. companies anywhere in the world, regardless of physical server location. The Toronto cluster improves your data residency position; it does not provide full data sovereignty.
Disaggregated inference is a software technique — used by NVIDIA Dynamo, which DeepInfra runs — that splits the two phases of language model text generation onto separate hardware pools. The prefill phase (processing the input prompt) is compute-intensive and benefits from high-FLOPs GPU allocation; the decode phase (generating each output token) is memory-bandwidth-intensive and can run on different hardware configurations. Separating them allows each phase to be independently optimized and scaled, which improves overall GPU utilization and lowers cost per token compared to running both phases on identical hardware. Combined with NVFP4 quantization — which reduces memory requirements by roughly 1.8 times — this is the architectural basis for DeepInfra's claimed cost efficiency relative to general-purpose cloud inference.
Canada's AI for All strategy, launched by Prime Minister Mark Carney on June 4, 2026, targets 850 megawatts of sovereign compute capacity by 2030 under its Canadian Sovereign AI Foundation pillar. The strategy defines sovereign compute as infrastructure that is Canadian-controlled — owned or operationally governed by Canadian entities. DeepInfra's Toronto cluster does not meet this definition: the company is U.S.-incorporated and U.S.-controlled. DeepInfra's facility counts as foreign-owned compute capacity on Canadian soil — useful for latency and data residency, but distinct from the sovereign alternative the federal strategy is trying to build.
The B300's 1,400-watt thermal design power requires mandatory direct liquid cooling — it cannot operate in a standard air-cooled data center without significant infrastructure retrofitting. This makes B300 deployment more capital-intensive and site-specific than previous GPU generations. Additionally, NVIDIA's published performance figures for Blackwell Ultra systems — including claims of up to 35 times lower cost per token and up to 50 times higher throughput versus Hopper — are generated on NVIDIA's own hardware using NVIDIA's benchmarking frameworks, and real-world performance at a given workload and batch configuration may differ. DeepInfra's claim of up to 20 times better inference cost efficiency versus general-purpose cloud is its own figure, also unaudited by independent third parties.
