AQUA: Network-Accelerated Memory Offloading for LLMs in Scale-Up GPU Domains
Abhishek Vijaya Kumar, Gianni Antichi, Rachee Singh
TL;DR
GPU memory capacity limits constrain LLM inference under bursty loads, causing contention and degraded responsiveness. Aqua introduces a memory management stack that decouples memory from compute and enables preemptive, fair scheduling across a scale-up Nvlink domain, using Aqua-profiler, Aqua-placer, and Aqua-lib to offload and migrate inference state with low paging overhead. On eight Nvidia H100 80GB GPUs, Aqua delivers approximately 20x improvements in time-to-first-token and up to 4x gains in long-prompt throughput, while maintaining high utilization under memory pressure. By leveraging fast inter-GPU memory sharing and dynamic memory elasticity, Aqua enables responsive, scalable LLM serving in modern datacenters.
Abstract
Inference on large-language models (LLMs) is constrained by GPU memory capacity. A sudden increase in the number of inference requests to a cloud-hosted LLM can deplete GPU memory, leading to contention between multiple prompts for limited resources. Modern LLM serving engines deal with the challenge of limited GPU memory using admission control, which causes them to be unresponsive during request bursts. We propose that preemptive scheduling of prompts in time slices is essential for ensuring responsive LLM inference, especially under conditions of high load and limited GPU memory. However, preempting prompt inference incurs a high paging overhead, which reduces inference throughput. We present Aqua, a GPU memory management framework that significantly reduces the overhead of paging inference state, achieving both responsive and high-throughput inference even under bursty request patterns. We evaluate Aqua by hosting several state-of-the-art large generative ML models of different modalities on servers with 8 Nvidia H100 80G GPUs. Aqua improves the responsiveness of LLM inference by 20X compared to the state-of-the-art and improves LLM inference throughput over a single long prompt by 4X.
