← Framework Collection
FW 06
Framework

AI Infrastructure Economics & Deployment Diligence Framework

A framework for engineering leaders evaluating AI ROI, inference architecture, deployment economics, and capital exposure.

Status
Published

AI infrastructure diligence should begin before a provider, GPU, model, or deployment pattern is selected.

The economic behavior of an AI system is created across a chain of decisions: the business outcome being pursued, workload behavior, model selection, agent behavior, inference architecture, infrastructure placement, utilization, and ultimately the financial commitments required to operate the system.

Token cost captures only one part of that chain.

This framework provides engineering leaders with a structured method for determining what an AI workload is worth, what it truly costs to operate, where inference should run, and how much economic and capital exposure the architecture creates.

The Diligence Sequence
  1. 01
    Business Outcome
  2. 02
    Workload
  3. 03
    Architecture
  4. 04
    Deployment
  5. 05
    Inference Placement
  6. 06
    Capital Exposure
  7. 07
    Technology Refresh
  8. 08
    Diligence Decision
01

Outcome Economics

Define the economic unit before the infrastructure.

The first question is not how much inference costs. It is what useful outcome the inference produces.

The economic unit should reflect the business result produced by the system.

Examples

  • Cost per successfully resolved customer case
  • Cost per accepted software change
  • Cost per completed underwriting assessment
  • Cost per qualified sales opportunity
  • Cost per successful transaction
  • AI cost per customer served
  • AI cost per dollar of revenue or margin generated

Engineering Leadership Questions

  • What constitutes a successful outcome?
  • What economic value does that outcome create?
  • How frequently will the system produce it?
  • What percentage of executions successfully produce the intended outcome?
  • What human, operational, or technology cost does it change?
  • What incremental revenue, margin, productivity, throughput, or capacity does it create?

Core Calculations

AI Cost per Successful Outcome

Total AI Operating Cost ÷ Successful Outcomes

Example

Annual AI operating cost = $120,000. Successful outcomes = 60,000. $120,000 ÷ 60,000 = $2.00.

The AI capability costs $2.00 in recurring operating expense for each successful business outcome produced.

Total AI Operating Cost represents the recurring cost required to operate the AI capability during the measurement period.

  • Model inference
  • GPU or cloud compute
  • Retrieval and embeddings
  • Storage
  • Networking
  • Supporting platform services
  • Observability
  • Recurring AI platform costs
  • Relevant production operations

This metric measures operational unit economics. It answers: 'How much does the AI system cost to produce one successful business outcome?'

Economic Contribution per Outcome

Economic Value per Successful Outcome − AI Cost per Successful Outcome

Example

Economic value created per successful outcome = $8.00. AI cost per successful outcome = $2.00. $8.00 − $2.00 = $6.00.

Each successful outcome contributes $6.00 of economic value after the AI operating cost required to produce it.

Economic Value per Successful Outcome represents the measurable financial value created or preserved by that outcome, such as labor savings, avoided operating cost, incremental margin, additional revenue, increased throughput, or another attributable economic benefit.

This metric answers: 'How much economic value remains after the AI operating cost required to produce the outcome?'

AI ROI

(Economic Benefit − Total AI Cost) ÷ Total AI Cost

Example

Economic benefit over the measurement period = $400,000. Total AI cost over the same period = $100,000. ($400,000 − $100,000) ÷ $100,000 = 3.0 = 300%.

The AI investment generated net economic benefit equal to 300% of the total investment required to create and operate it.

Economic Benefit and Total AI Cost must use the same measurement period.

Total AI Cost represents the total economic investment required to create and operate the AI capability over the ROI measurement period.

  • Initial implementation
  • Engineering and integration
  • Model and inference costs
  • Infrastructure
  • AI platforms and software
  • Production operations
  • Relevant capital expenditure
  • Financing or cost of capital where material
  • Maintenance
  • Other directly attributable lifecycle costs

AI ROI measures the return on the overall AI investment, rather than only its recurring operating expense. It answers: 'What economic return did the enterprise generate relative to the total investment required to create and operate the capability?'

Summary

MetricWhat It Measures
AI Cost per Successful OutcomeOperational unit economics
Economic Contribution per OutcomeEconomic value retained per successful outcome
AI ROIReturn on total AI investment

The denominator should ultimately connect to a business outcome, rather than stopping at tokens, requests, or GPU hours.

02

Workload Economics

Understand what the application actually asks infrastructure to do.

Two AI applications using the same model can have radically different economics.

Workload diligence should establish:

  • Request volume
  • Input and output tokens
  • Context size
  • Model mix
  • Peak concurrency
  • Latency requirements
  • Availability requirements
  • Retrieval activity
  • Tool calls
  • Agent steps
  • Retry behavior
  • Multimodal processing
  • Batch versus interactive inference
  • Geographic requirements
  • Expected growth

Agentic systems require particular attention.

A single user request can initiate planning, retrieval, multiple model calls, tool execution, validation, retries, and coordination across additional agents. The resulting infrastructure demand is determined by the entire execution path rather than the interaction that initiated it.

AI Compute Intensity

AI Compute Intensity

AI Compute Intensity = Total AI compute consumed by the workflow ÷ Successful outcomes produced

Example

Total measured AI compute = 12,000 GPU-seconds. Successful outcomes = 850. 12,000 ÷ 850 = 14.1 GPU-seconds per successful outcome.

The workload consumes an average of 14.1 measured GPU-seconds to produce one successful outcome.

AI Compute Intensity measures the computational resources required to produce one useful outcome.

It allows engineering teams to compare models, agent architectures, routing strategies, and inference environments using a common workload efficiency measure.

The metric should capture the relevant compute consumed across the execution path, including model inference and other material AI compute required to complete the workflow.

Raw GPU time should be used primarily for comparisons on equivalent or normalized infrastructure. GPU-seconds across different accelerator generations or architectures are not inherently equivalent because throughput, memory, power efficiency, and model performance can differ materially.

For cross-infrastructure economic comparisons, use Cost per Successful Outcome as the more portable business measure.

Engineering Leadership Questions

  • How much AI compute is required to produce one successful outcome?
  • Which stages of the workflow consume the most compute?
  • What happens to compute intensity when workload volume reaches 10× or 100×?
  • How much workload is predictable?
  • What drives peak demand?
  • How much autonomous activity can agents generate?
  • What percentage of compute contributes to successful outcomes?
03

Architecture Economics

Treat architecture as an economic control surface.

Infrastructure cost is partially determined before infrastructure is provisioned.

Engineering architecture determines how efficiently compute is consumed.

Architecture LeverEconomic Question
Model routingWhat level of model capability does each task require?
Context managementHow much context creates measurable improvement in outcome quality?
CachingWhat computation or retrieval can be reused?
BatchingWhich workloads can trade immediacy for higher utilization?
QuantizationWhat precision produces the required quality at lower compute intensity?
Inference placementWhere can this workload execute most efficiently?
Agent budgetsHow much compute can an autonomous workflow consume?
Concurrency controlsHow should simultaneous workloads compete for capacity?
Termination policiesAt what point does additional reasoning stop creating economic value?
ObservabilityCan infrastructure consumption be traced to a workload and business outcome?

These controls create an economic control plane around AI.

For agentic architectures, that control plane becomes particularly important. Hundreds of autonomous agents can independently consume models, context, tools, retrieval systems, and compute.

The architecture should therefore govern both what an agent may do and how much economic resource it may consume while doing it.

04

Deployment Economics

Compare deployment models using the same workload.

The deployment decision should answer:

Which deployment model produces the required outcome at the best risk adjusted economics for this workload?

Model A — External Model API

Calculate:

Model inference + embeddings + retrieval + storage + networking + observability + supporting platform costs

Example

Monthly model inference = $4,200. Embeddings and retrieval = $600. Storage and networking = $250. Observability and supporting platform services = $150. Total = $5,200 per month.

The external API deployment carries $5,200 in recurring monthly operating cost with no infrastructure commitment.

Best suited to workloads where elasticity, rapid model access, and low infrastructure commitment carry significant value.

Model B — On Demand Rented GPU

GPU Rental Cost

GPU Rental Cost = Number of GPUs × Provisioned Hours per GPU × Rate per GPU Hour

Example

10 GPUs × 100 provisioned hours × $8 per GPU hour = $8,000 GPU rental cost.

The organization incurs $8,000 of raw GPU rental expense for the provisioned capacity before adding storage, networking, orchestration, observability, and other supporting infrastructure costs.

Then add:

Storage + networking + orchestration + observability + engineering operations + idle capacity

Example

GPU rental cost = $8,000. Supporting infrastructure and idle capacity = $4,000. Total GPU infrastructure cost = $12,000.

The raw GPU rental represents only two thirds of the true infrastructure cost once supporting services and idle capacity are included.

Utilization becomes a central economic variable.

Effective Productive GPU Hour Cost — Rented

Effective Productive GPU Hour Cost — Rented

Effective Productive GPU Hour Cost = Total GPU Infrastructure Cost ÷ Productive GPU Hours

Example

10 GPUs provisioned for 100 hours = 1,000 provisioned GPU hours. Productive GPU hours = 650. Total GPU infrastructure cost, including relevant supporting infrastructure = $12,000. $12,000 ÷ 650 = $18.46 per productive GPU hour.

After utilization and supporting infrastructure are considered, each productive GPU hour effectively costs $18.46.

Productive GPU Hours represent GPU time actually utilized serving the intended workload. Idle provisioned capacity remains part of infrastructure cost but does not enter the productive-hour denominator.

This metric should be evaluated alongside AI Compute Intensity from Section 02 and AI Cost per Successful Outcome from Section 01.

Together, the framework creates the economic chain: Infrastructure Cost → Effective Cost of Productive Compute → Compute Required per Successful Outcome → Cost per Successful Outcome → Economic Value and ROI.

Model C — Reserved or Dedicated GPU Capacity

Base Reserved Compute Commitment

Base Reserved Compute Commitment

Base Reserved Compute Commitment = Number of Committed GPUs × Committed Hours per GPU × Contract Rate per GPU Hour

Example

20 committed GPUs × 8,760 hours × $5 per GPU hour = $876,000 annual base compute commitment.

The enterprise has committed $876,000 annually for GPU capacity before supporting infrastructure and operating costs.

Full reserved infrastructure cost should also include relevant storage, networking, orchestration, software, operations, and other contractual charges. Unused committed capacity remains an economic cost and creates utilization exposure.

  • Unused capacity
  • Demand variability
  • Minimum commitments
  • Scaling constraints
  • Contractual flexibility
  • Migration costs

Reserved capacity can improve unit economics while increasing commitment exposure.

Model D — Owned GPU Fleet

Effective Productive GPU Hour Cost — Owned Fleet

Effective Productive GPU Hour Cost — Owned Fleet

Effective Productive GPU Hour Cost = Total Lifecycle Cost of GPU Fleet ÷ Total Productive GPU Hours over Economic Life

Total Lifecycle Cost includes, where applicable: hardware acquisition + financing or cost of capital + power + cooling + networking + storage + facilities allocation + platform software + operations + maintenance + expected failures − residual value.

Example

Total lifecycle cost over modeled economic life = $9,000,000. Total productive GPU hours over that economic life = 600,000. $9,000,000 ÷ 600,000 = $15.00 per productive GPU hour.

After acquisition, operations, utilization, financing, and residual value are incorporated, the owned fleet costs $15.00 for each productive GPU hour delivered.

This allows a more disciplined comparison against rented or reserved infrastructure for a comparable workload.

Hardware ownership becomes attractive when utilization, workload duration, and infrastructure efficiency support the capital commitment.

Model E — Owned AI Factory / Data Center Infrastructure

Evaluate:

  • Land and facilities
  • Power acquisition
  • Electrical infrastructure
  • Cooling systems
  • Networking fabric
  • Construction
  • Financing
  • GPU and accelerator acquisition
  • Capacity ramp
  • Operating workforce
  • Maintenance
  • Depreciation
  • Technology refresh
  • Residual asset value

At this point, an engineering architecture decision has become a capital allocation decision.

05

Inference Placement

Determine where each workload belongs.

A single enterprise may rationally use several deployment models simultaneously.

Placement should follow workload characteristics.

Diligence DimensionEconomic Consequence
Demand predictabilityStable demand increases the economic potential of committed capacity.
UtilizationHigher sustained utilization improves the economics of owned and reserved infrastructure.
ElasticityHighly variable demand increases the value of flexible capacity.
LatencyInteractive applications may require infrastructure closer to users or dedicated performance characteristics.
Data localitySensitive or high volume data can materially influence placement economics.
Model requirementsModel size, accelerator requirements, memory footprint, quantization, and serving architecture affect infrastructure options.
PortabilityPortable workloads preserve future infrastructure choices.
Operational capabilityOwned infrastructure requires engineering and operational capabilities beyond those required for API consumption.

The objective is workload placement, rather than selecting one infrastructure philosophy for the entire enterprise.

06

Capital Exposure

Understand when infrastructure becomes a financial commitment.

External API
        ↓
On Demand Compute
        ↓
Reserved Compute
        ↓
Dedicated Capacity
        ↓
Owned GPU Fleet
        ↓
Owned AI Infrastructure
Operational Maturity Coherence Framework

Movement down the ladder generally increases:

  • Commitment duration
  • Utilization exposure
  • Technology obsolescence exposure
  • Depreciation exposure
  • Capital intensity
  • Operational responsibility

At sufficient utilization and scale, it can also decrease unit inference cost.

Break Even Utilization

Break Even Utilization

Break Even Utilization = Annual Fixed Cost of Owned or Committed Infrastructure ÷ (Annual On Demand Cost at 100% Utilization − Annual Variable Cost of Owned or Committed Infrastructure at 100% Utilization)

Example

Annual fixed infrastructure cost = $3,000,000. Equivalent annual on demand cost at 100% utilization = $8,000,000. Annual variable operating cost of owned infrastructure at 100% utilization = $2,000,000. $3,000,000 ÷ ($8,000,000 − $2,000,000) = 0.50 = 50%.

Under these assumptions, the owned or committed infrastructure reaches economic break even against on demand capacity at approximately 50% utilization.

This is a simplified break even model. A full investment decision should also incorporate financing, contract structure, migration costs, capacity constraints, technology refresh risk, and other material lifecycle considerations.

At what utilization, duration, and workload stability does ownership create superior economics to renting?
07

Technology Refresh & Stranded Capacity

Treat hardware optionality as an economic variable.

Accelerator performance is advancing rapidly.

Infrastructure purchased today may remain operational while newer hardware delivers materially better performance per watt, performance per dollar, memory capacity, or inference throughput.

Evaluate:

  • Remaining book value
  • Remaining contractual commitments
  • Current utilization
  • Current cost per useful inference
  • Performance per dollar of replacement infrastructure
  • Performance per watt
  • Migration engineering cost
  • Application portability
  • Model portability
  • Serving stack dependencies
  • Expected workload growth
  • Residual value of existing hardware
  • Economic value of improved performance

Incremental NPV of Migration

Incremental NPV of Migration

Incremental NPV of Migration = Present Value of Future Costs if Staying − Present Value of Future Costs if Migrating + Present Value of Incremental Economic Benefits from Migration

The migrating scenario should incorporate migration engineering cost, remaining contractual obligations, stranded asset cost, residual value recovered, new infrastructure cost, and the operating cost of the replacement environment.

Example

Present value of future costs if staying = $12.0M. Present value of future costs if migrating, including migration and stranded-asset effects = $9.5M. Present value of incremental economic benefits from improved performance = $1.0M. $12.0M − $9.5M + $1.0M = $3.5M.

Migration creates $3.5M of incremental economic value before applying the enterprise's required investment hurdle.

A positive Incremental NPV indicates that migration creates economic value relative to staying. The final investment decision should also satisfy the enterprise's required return or investment hurdle.

The Stay and Migrate scenarios should be structured so that costs, residual values, stranded assets, and migration costs are counted once and are not double counted.

Optionality has financial value.

08

The Diligence Decision

An executive diligence scorecard.

MeasureDecision Output
Business outcomeWhat economic result is being produced?
Economic value per outcome$
AI cost per successful outcome$
Annual workloadVolume
AI Compute IntensityCompute per successful outcome
Expected utilization%
Peak utilization%
Recommended inference placementAPI / Rent / Reserve / Own
Annual operating cost$
Capital commitment$
3 year Total Cost of Ownership$
Break even utilization%
Technology refresh exposureLow / Medium / High
Migration cost$
Payback periodMonths
Expected ROI%

The Economic Chain

INFRASTRUCTURE EFFICIENCY
Cost ÷ Productive GPU Hours
        ↓
WORKLOAD EFFICIENCY
AI Compute ÷ Successful Outcomes
        ↓
BUSINESS UNIT ECONOMICS
AI Operating Cost ÷ Successful Outcomes
        ↓
ECONOMIC CONTRIBUTION
Economic Value per Outcome − AI Cost per Outcome
        ↓
INVESTMENT RETURN
(Economic Benefit − Total AI Cost) ÷ Total AI Cost
Operational Maturity Coherence Framework

RENT / RESERVE / OWN / STAY / MIGRATE

Engineering Leadership Diligence Questions
  1. Outcome

    What business outcome does this workload produce, and what is that outcome worth?

  2. Consumption

    How much inference and supporting compute does one successful outcome consume?

  3. Compute Intensity

    How much AI compute is required to produce one successful outcome?

  4. Architecture

    Which architectural decisions materially change consumption?

  5. Placement

    Why is this workload running here?

  6. Utilization

    What utilization does the economic model assume, and what evidence supports it?

  7. Scale

    What happens to unit economics at 10× and 100× volume?

  8. Commitment

    What financial commitment does the deployment architecture create?

  9. Optionality

    How easily can the workload move when infrastructure economics change?

  10. Refresh

    What happens if substantially better accelerator economics arrive during the commitment period?

  11. Attribution

    Can infrastructure spending be traced from compute to workload to business outcome?

  12. Return

    What measurable economic return justifies the infrastructure consumption?

The Principle
  1. Business Outcome
  2. Workload
  3. Model
  4. Agent Behavior
  5. Architecture
  6. Inference Placement
  7. Infrastructure
  8. Capital Exposure
  9. Unit Economics
  10. ROI

A token price answers what a model invocation costs.

A GPU price answers what compute capacity costs.

Neither answers what the AI system costs the enterprise to produce a useful outcome.

That answer emerges only when architecture, infrastructure, and finance are evaluated together.

The architecture creates the bill. The diligence determines whether the bill creates value.

Connected Work
Developed From Field Notes
FN 15 · Published
The Architecture Creates the Bill

AI infrastructure cost rarely begins with the infrastructure bill. It begins earlier, in architecture.

Related Publication
Publication № 04 · Published
From Technological Capability to Economic Value

The developed argument examining how technological capability moves through intervention, architecture, operating change and value capture before becoming measurable economic value.

Practice
Portfolio AI & Technology Value Creation Scan

The commercial practice connected to this research.