[research] InferScale cuts agent memory TTFT by 4x — no model changes needed #352
Closed
Replies: 1 comment
|
This discussion was automatically closed because it expired on 2026-08-07T10:29:57.329Z.
|
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
🔬 The Finding
Researchers introduced InferScale, a GPU-native memory system for LLM serving that replaces repeated prompt prefilling with reusable precomputed KV state. Instead of re-injecting retrieved memory facts into every prompt, InferScale caches each fact's KV representation on-GPU and injects it directly into vLLM's paged cache at serving time. At k=50 retrieved facts, it cuts time-to-first-token (TTFT) by 72–79% (3.6–4.8×) and delivers 3.7–4.5× throughput under concurrent load — with only a ~3% accuracy drop versus full recomputation.
⚙️ What It Means for Agentic Workflows
🔗 Source
InferScale: GPU-Native KV Injection for Personalized LLM Serving — July 29, 2026
All reactions