W4M · Research Notes

Series · The Edge-Native Future

20 hours of agent work in 46 minutes.

We replayed 2,745 real agent turns, token for token, on two desk-side NVIDIA DGX Spark units running DeepSeek-V4-Flash, a leading open 304-billion-parameter model. The identical day of agent work took 46 minutes with GoM recall and 19.8 hours without it: a 25.7× difference, with 98.3% of the model’s reading served from memory. One serve flag separated the two runs. The model, the hardware, and every input token were identical.

W4M Research · August 2026 · ~5 min read

46 min vs 19.8 h
the same 2,745 agent turns, from 25 complete software-repair sessions in SWE-bench Verified, replayed token-for-token with GoM recall on and off. Same model, same two desk-side boxes, one flag different.
25.7×
the wall-clock difference on two NVIDIA DGX Sparks, versus 3.6× for the identical replay on a datacenter B300. The scarcer the compute, the more recall is worth; the desk is the extreme case.
98.3%
of the model’s prompt reading served from memory instead of recomputed. That fraction is a property of the agent workload itself: four unrelated architectures spanning ~200× in parameters measure 90.6–98.6% on these same turns.
The short version Agents re-read their whole conversation on every turn. On a big model that re-reading is almost all of the compute, and almost all of it is the same tokens as the turn before. GoM recall serves the repeat reading from memory. On desk-side hardware, that turned 19.8 hours of real agent work into 46 minutes.

The experiment: one flag, everything else frozen

We took 25 complete agent sessions from SWE-bench Verified: real software-repair work on production open-source codebases, where an agent reads a repository, runs tests, and iterates on patches over roughly a hundred turns per task. 2,745 turns in all. Then we replayed them token for token: no re-generation, no sampling, the exact recorded conversation of each turn resubmitted as-is. That design removes every confound except the one under test. The serve ran DeepSeek-V4-Flash (a 304-billion-parameter mixture-of-experts, ~12B active per token, FP8) on a two-unit NVIDIA DGX Spark tensor-parallel pair. This is hardware that sits on a desk, not in a datacenter.

Two runs. Recall off: every turn recomputes its entire prompt from scratch. Recall on: the growing conversation prefix is served from memory, and only the new tokens are computed. The off-arm’s counters confirm the control is clean (zero cache queries), and all 2,745 turns completed in both arms. Timing and cached-token counts come from the serving engine’s own metrics, not ours.

Why agents make this number so large

An agent’s conversation only grows. Turn one is a page; turn eighty is a book. On turn eighty-one, a model without recall re-reads the whole book to add a sentence. Summed over a session, nearly all the compute is spent re-reading text the model has already read. That is why 98.3% of the prompt tokens in this workload could be served from memory: the number measures the workload’s redundancy, not a property of any one model. On the same turns, four unrelated architectures spanning ~200× in total parameters measured 90.6–98.6%. The saving belongs to how agents work.

Prompt tokens served from cache: same 2,745 turns, four unrelated architectures Nemotron-3-Ultra 550B90.6% DeepSeek-V4-Flash 304B98.3% gemma-4-E4B 4B98.6% LFM2.5 2.6B98.6%
~200× spread in parameters and four training lineages: the redundancy belongs to the workload, not the model.
The identical day of agent work: 46 minutes with GoM recall, 19.8 hours without. One serve flag. 25.7×.

Why the desk multiplies it

The same replay on a datacenter B300 shows a 3.6× wall-clock difference: large, but far from 25.7×. The cache-hit fraction is nearly identical on both machines; what differs is what a recomputed token costs. A datacenter GPU burns through redundant prefill quickly; a desk-side box cannot. So the scarcer the compute, the more each remembered token is worth. That inverts the usual story about the edge. Recall doesn’t merely make small hardware tolerable for agents. It makes small hardware rational: the hardware class that benefits most from remembering is exactly the class that runs beside you.

Wall-clock multiple from recall: identical replay, identical model 2× DGX Spark (desk-side)25.7× B300 (datacenter)3.6×
Cache-hit rate is nearly identical on both machines; what differs is the cost of a recomputed token. The scarcer the compute, the more each remembered token is worth.

What this does not show

Three honest limits. First, this is a token-exact replay: the right instrument for isolating recall, but it means the agent is not improvising new actions live. Second, it is one workload class (multi-turn software repair); other agent workloads will have their own redundancy profiles, though the four-architecture spread above suggests the profile is broad. Third, the 25.7× is a wall-clock ratio on this specific hardware pair; the number that travels across hardware is the cache-hit fraction, and the multiple scales with how expensive prefill is wherever you run.

Method & integrity notes

The caching mechanism itself is standard serving infrastructure; prefix/KV-cache reuse ships in every modern serving stack. The contribution here is the controlled measurement: what that reuse is actually worth on real agent workloads, isolated cleanly, and where it is worth most. Token-exact replay of 2,745 agentic turns (25 SWE-bench Verified trajectories), twice, with prefix caching off then on; one serve flag different, everything else identical. Serve: DeepSeek-V4-Flash FP8 on a 2× DGX Spark (GB10) tensor-parallel pair, the same deployed serve we use daily. On-arm: 2,784 s wall-clock, 98.26% of prompt tokens served from cache (rounded to 98.3% above). Off-arm: 71,416 s, with the inverted control clean at zero cache queries. 2,745/2,745 turns completed in both arms; all counters and timings read from the serving engine’s own metrics. Cross-architecture context (90.6–98.6% across four models, and the 3.6× B300 comparison) comes from the same replay protocol run on identical turns.

Sources

SWE-bench Verified · DeepSeek (DeepSeek-V4-Flash) · NVIDIA DGX Spark

Qualified partners: request access to the full evidence →