The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Workflows that let LLMs act as agents repeatedly ping-pong between CPU and GPU, producing bursty, uneven demand that wastes conventional servers; an adaptive server prototype (Agora) reclaims idle CPU/GPU capacity and role-aware scheduling to boost utilization and throughput while protecting agent tail latency.

Architectural Implications of Agentic AI Workflows
Jirong Yang, Peizhe Liu, Chaojie Zhang, Jovan Stojkovic · August 05, 2026
arxiv descriptive high evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Jirong Yang unresolved corpus identity
  2. Peizhe Liu unresolved corpus identity
  3. Chaojie Zhang unresolved corpus identity
  4. Jovan Stojkovic unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Jirong Yang provider ID
  2. Peizhe Liu provider ID
  3. Chaojie Zhang provider ID
  4. Jovan Stojkovic provider ID
Agentic AI workloads fragment execution across CPU and GPU and produce bursty, heterogeneous resource demand that conventional uniform servers handle inefficiently, while Agora—an adaptive server prototype—recovers substantial CPU/GPU utilization and throughput without degrading tail latency.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Agentic AI is emerging in datacenters, but its architectural implications remain unexplored. We organize agentic workflows in a taxonomy and present its first architectural characterization with a production study at Microsoft Azure and a controlled study of open-source frameworks. We show that agentic execution is fragmented and heterogeneous. Requests expand into a workflow of LLM inferences, tool invocations, and orchestration decisions that repeatedly cross the CPU-GPU boundary. Our taxonomy explains how this fragmentation turns into resource demand. As orchestration and tools run on the host, the CPU sits on the critical path. Execution structure sets the load over time, which stays low with sudden spikes. Model composition sets how evenly the workflow uses the GPUs. Diversity in tasks and tools widens this range even further. These characteristics expose architectural mismatches of conventional uniform servers. Fragmented execution strands CPU and GPU capacity despite bursty demand. Different software roles make homogeneous CPU provisioning inefficient. Finally, multiplexing many agents onto shared cores degrades microarchitectural locality. Guided by our findings, we derive implications for agentic servers and examine them through Agora, our prototype for commodity servers. Agora dynamically harvests idle CPU cores for co-located throughput work, while protecting agentic tail latency against tool spikes. It oversubscribes GPU memory by placing more agents on each GPU, prefetching the next agent's state to hide swap latency. To match the machine to the heterogeneous roles, Agora pools cores by role and applies affinity-aware scheduling to restore locality. It automatically tunes mechanisms to the workload. Agora improves utilization and server throughput while preserving agent tail latency. Our insights also identify key directions for future server architectures for agentic AI.

Summary

Main Finding

Agentic AI—workloads where LLMs run in iterative control loops, call external tools, and coordinate across agents—produces highly fragmented, bursty, and heterogeneous CPU/GPU demand that breaks assumptions behind uniform server designs. Optimizing servers for these workloads (via dynamic CPU/GPU harvesting, role-aware core pooling, and consolidation-aware GPU management) materially increases utilization and throughput while preserving tail latency.

Key Points

  • Taxonomy (platform-relevant axes)
    • Orchestration: host-orchestrated vs LLM-orchestrated (who decides next actions).
    • Execution structure: sequential vs parallel (how steps are arranged over time).
    • Model composition: homogeneous vs heterogeneous (whether agents share the same model family).
  • Host roles expand beyond a simple scheduler:
    • Scheduler: dispatches inference work.
    • Orchestrator: routes messages, advances workflow state.
    • Runner: executes agent logic and invokes tools.
  • Fragmentation and heterogeneity
    • Each user request expands into many LLM inferences, tool calls, and orchestration decisions, repeatedly crossing CPU–GPU boundary.
    • Tool execution is a first-class component of end-to-end latency; ~27%+ of requests spend as much or more time in tools than inference.
    • Execution structure causes long low-utilization periods punctuated by sharp bursts (stage boundaries, tool fan-out), producing high peak-to-mean demand.
    • Model composition can unevenly use GPUs (some saturated, others idle), especially with heterogeneous models.
  • Architectural mismatches with uniform servers
  • Fragmented execution strands CPU and GPU capacity: average utilization low, but short bursts cause near-saturation.
  • Homogeneous core pools are inefficient: different host roles have distinct resource profiles.
  • High multiplexing on shared cores degrades microarchitectural locality and increases coordination costs.
  • Agora prototype (case studies and mechanisms)
    • CPU harvesting: dynamically uses idle cores for co-located throughput work while protecting agent tail latency.
    • GPU harvesting/consolidation: place more agents per GPU, oversubscribe memory, prefetch next-agent state to hide swap latency.
    • Role-aware pooling and affinity scheduling: isolate and right-size control plane vs bursty runner pool, pin tasks to preserve cache/branch locality.
  • Quantified improvements (Agora vs static baseline)
    • CPU harvesting: recovers 95% of co-located workload’s standalone throughput; host CPU utilization +30%; agent slowdown <3%.
    • GPU harvesting: frees ~1/3 of GPUs; generation throughput +82%; tail latency cut by 2.5×.
    • Role-aware pooling: tool CPU demand reduced up to 46%; worst-case tool latency improved up to 13%; serving throughput retained at 99%.

Data & Methods

  • Two complementary studies:
  • Production fleet study (Microsoft Azure) - 24-hour trace of production agentic requests across the hyperscaler. - Instrumented to attribute time, tool activity, and CPU metrics to scheduler, orchestrator, runner roles. - Observed request lifetimes, tool mixes, and distribution of time in LLM vs tool execution.
  • Controlled experiments - Representative open-source frameworks exercised points in the taxonomy: - SWE-Agent (single-agent, sequential, tool-heavy coding workflow) - Trae (sequential coding workflow with long tool chains and three model endpoints) - CORAL (four-agent parallel homogeneous evolutionary workflow) - Owl (heterogeneous workforce: coordinator + six text roles + vision/speech models) - Hardware: 96-core AMD EPYC 7V12 CPU, 8 × NVIDIA A100 GPUs. - Software: one vLLM instance per agent role; concurrency varied (1–32 tasks). - Metrics collected: CPU utilization over time, GPU utilization and residency, end-to-end and tail latency, throughput, microarchitectural effects (cache/branch locality), tool latency.
  • Analysis focused on temporal patterns (bursts vs slack), CPU/GPU crossing, role-specific loads, and efficacy of the proposed server mechanisms.

Implications for AI Economics

  1. Capacity planning and utilization
    • Agentic workloads are forecasted to be among the fastest-growing datacenter consumers. Their bursty, fragmented nature implies naive static overprovisioning is expensive: providers must balance high peak capacity (to meet bursts/SLA) vs low average utilization.
    • Techniques like Agora that reclaim idle CPU/GPU capacity can significantly reduce effective required capacity (e.g., freeing ~1/3 of GPUs), lowering capital expenditure (CAPEX) per unit of delivered agentic throughput.
  2. Cost per request and pricing models
    • Traditional per-request or per-inference pricing underestimates the host-side and orchestration costs of agentic workflows (tool calls and orchestrator CPU are material).
    • Providers could shift to pricing that captures workflow complexity (per-workflow pricing, per-stage, or hybrid models that include host orchestration premiums) or offer specialized "agentic-optimized" instance types with different rates.
    • Improved server-side efficiency (consolidation, role-aware scheduling) enables lower marginal costs that providers can monetize (competitive pricing) or use to increase margins.
  3. Instance/product differentiation and market opportunity
    • A clear opportunity exists to offer instance families or managed services tuned for agentic AI (e.g., agent-optimized VMs with role-partitioned cores, aggressive GPU consolidation, or hardware featuring asymmetric cores).
    • Vendors who invest in agentic-optimized infrastructure can capture customers needing better cost/latency tradeoffs; differentiation can be a competitive moat.
  4. SLA design and tail-risk pricing
    • Agentic workflows are sensitive to tool-induced spikes and tail latency. Providers may need to create (and price) different SLAs: best-effort lower-cost options (with consolidation) vs premium low-tail-latency guarantees (reserved/isolated resources).
    • Customers with strict latency constraints may prefer dedicated or affinity-managed deployments and will pay a premium for isolation.
  5. Multi-tenancy and interference externalities
    • Multiplexing many agents on shared cores degrades microarchitectural locality; unmanaged multi-tenancy raises tail latencies and unpredictability.
    • Market designs may include chargebacks for interference or offer isolation options (higher-priced) to avoid cross-tenant degradation.
  6. Hardware investment signals
    • Findings motivate investment in heterogeneous server architectures:
      • Mix of efficiency cores (for lightweight orchestration) and high-performance cores (for tool-heavy runners).
      • Hardware support for rapid context switching, offloaded scheduling/context management, and better GPU memory management (to reduce swap latency when oversubscribing).
    • Cloud providers must weigh CAPEX for next-gen servers against software-level improvements—both reduce costs but differ in investment horizon and vendor lock-in.
  7. Model composition effects on economics
    • Homogeneous deployments (single base model) enable resident model sharing and batching—lower operating costs. Heterogeneous workflows increase GPU memory footprint and complicate consolidation, raising cost per workflow.
    • Providers can incentivize customers toward homogeneous stacks (discounts, technical guidance) to improve packing efficiency.
  8. Operational complexity vs cost savings
    • Techniques like oversubscribing GPU memory and prefetching require sophisticated runtime logic and tuning; they add operational complexity and potential risk (incorrect tuning risks SLA violations).
    • Providers must evaluate trade-offs between cost savings and engineering/operational overhead; managed services that encapsulate that complexity can command premiums.
  9. Impacts on pricing & product strategy for cloud providers
    • Short-term: offer software-based optimizations (Agora-like orchestration) as value-added services to reduce customers’ bills and increase utilization.
    • Medium-term: introduce agentic-optimized instance classes and role-aware SLAs.
    • Long-term: hardware differentiation (heterogeneous cores, on-chip support for orchestration) could justify new premium tiers and long-lived capital investments.
  10. For customers / firms building agentic applications - Design for homogeneous models when possible to reduce hosting costs. - Prefer frameworks and deployments that expose orchestration semantics to the runtime (host-orchestrated) to enable prefetching and better scheduling. - Consider paying for managed agentic infrastructure to avoid building solution-specific schedulers and capacity planners.

In short: agentic AI shifts cost drivers from pure accelerator compute toward complex host–accelerator interactions and coordination. Operational and architectural innovations (software + targeted hardware) can substantially lower the effective cost of agentic workloads; these techniques create both opportunities (new differentiated products, lower unit costs) and trade-offs (operational complexity, new SLA tiers) for cloud providers and customers alike.

Assessment

Paper Typedescriptive Evidence Strengthhigh — The paper combines a production 24-hour fleet trace from a hyperscaler (Microsoft Azure) with controlled experiments on real servers (96-core AMD EPYC + 8× A100 GPUs) using multiple open-source agentic frameworks; it measures role-level CPU/GPU usage, latency, throughput, and evaluates a prototype (Agora) against static baselines, producing quantitative improvements. The main limitations are scope (one cloud provider, a limited set of frameworks and hardware) rather than measurement quality. Methods Rigorhigh — The authors develop a clear taxonomy, decompose host roles (scheduler/orchestrator/runner), attribute production trace events to roles, and run controlled reproducible experiments across several representative frameworks and workloads on real hardware, comparing Agora to static configurations with multiple metrics; however, there is limited information on statistical uncertainty, cross-datacenter replication, and longer-term variability. SampleA 24-hour production trace of agentic requests from Microsoft Azure (capturing LLM calls, tool invocations, and CPU metrics attributed to scheduler/orchestrator/runner roles); controlled experiments on a server with a 96-core AMD EPYC 7V12 CPU and eight NVIDIA A100 GPUs using four open-source frameworks (SWE-Agent, Trae, CORAL, Owl), varying concurrency (1–32) and deploying one vLLM instance per agent role. Themesproductivity innovation GeneralizabilityProduction trace is from a single hyperscaler (Microsoft Azure) and may not reflect other providers' workloads or configurations., Controlled experiments use one hardware configuration (AMD EPYC + A100); results may differ on other CPUs/GPUs, network/disaggregated setups, or ASIC accelerators., Selected open-source frameworks and workloads cover representative points but do not exhaust the full diversity of agentic applications (e.g., different tool mixes, extreme heterogeneity of models)., Trace duration (24 hours) may miss longer-term diurnal or seasonal effects and rare workload modes., Prototype (Agora) evaluated against static baselines on commodity servers; dedicated or custom hardware designs might alter relative benefits.

Claims (10)

ClaimDirectionOutcomeConfidence & EvidenceDetails
Agentic AI execution is highly fragmented: each request expands into interleaved LLM inferences, tool invocations, and orchestration decisions that repeatedly cross the CPU–GPU boundary. Organizational Efficiency negative CPU–GPU execution fragmentation and host involvement in request execution
Reading fidelity high
Study strength medium
n=4
0.18
Host-side tool execution accounts for a large and highly variable share of agentic request time; for more than 27% of production requests, tool execution time is comparable to or greater than LLM inference time. Task Completion Time negative Fraction of end-to-end request time spent in tool execution
Reading fidelity high
Study strength medium
more than 27% of requests
0.18
Agentic workloads can exhibit highly bursty host demand: in a Trae run, host CPU utilization had an 11% median during sequential portions but rose rapidly to nearly 100% when reasoning stages launched parallel builds and tests. Organizational Efficiency negative Host CPU utilization over time
Reading fidelity high
Study strength medium
n=1
11% median utilization; nearly 100% peak utilization
0.18
Heterogeneous model composition increases GPU-memory pressure, fragments batching, and complicates load balancing relative to homogeneous workflows. Organizational Efficiency negative GPU model residency, batching efficiency, and load balancing
Reading fidelity high
Study strength low
not reported
0.09
Multiplexing many agents on shared CPU cores degrades microarchitectural locality by evicting cache lines and branch-predictor state, increasing pipeline stalls. Organizational Efficiency negative Microarchitectural locality and pipeline stalls
Reading fidelity high
Study strength medium
not reported
0.18
Agora’s CPU harvesting recovers 95% of a co-located workload’s standalone throughput, increases host CPU utilization by 30%, and limits agent slowdown to under 3%. Organizational Efficiency positive Co-located throughput, host CPU utilization, and agent slowdown
Reading fidelity high
Study strength medium
n=4
95% standalone throughput; 30% increase in host CPU utilization; under 3% agent slowdown
0.18
Agora’s GPU harvesting frees approximately one-third of the GPUs while increasing generation throughput by 82% and reducing tail latency by 2.5×. Organizational Efficiency positive GPU capacity required, generation throughput, and tail latency
Reading fidelity high
Study strength medium
n=8
a third of GPUs freed; 82% higher generation throughput; 2.5× lower tail latency
0.18
Agora’s role-aware CPU pooling reduces tools’ CPU demand by up to 46% and worst-case tool latency by 13% while retaining 99% of serving throughput. Organizational Efficiency positive Tool CPU demand, worst-case tool latency, and serving throughput
Reading fidelity high
Study strength medium
n=4
up to 46% lower CPU demand; 13% lower worst-case tool latency; 99% serving throughput retained
0.18
The controlled study used four representative open-source frameworks—SWE-Agent, Trae, CORAL, and Owl—covering sequential, parallel, homogeneous-model, heterogeneous-model, and tool-intensive workflows. Organizational Efficiency mixed Architectural resource demands across workflow types
Reading fidelity high
Study strength medium
n=4
concurrency varied from 1 to 32 tasks
0.18
A single CORAL run expanded into 580 LLM calls interleaved with 552 heterogeneous tool invocations. Organizational Efficiency negative Number of model-inference and tool-invocation events per workflow
Reading fidelity high
Study strength low
n=1
580 LLM calls and 552 tool invocations
0.09

Notes