<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Papers Mache</title>
    <description>The latest articles on DEV Community by Papers Mache (@olaughter).</description>
    <link>https://dev.to/olaughter</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3907566%2Fa47c580b-0e36-4706-887e-97e33498a037.png</url>
      <title>DEV Community: Papers Mache</title>
      <link>https://dev.to/olaughter</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/olaughter"/>
    <language>en</language>
    <item>
      <title>Mixed‑precision routing speeds up attention prefill</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Sat, 05 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/mixed-precision-routing-speeds-up-attention-prefill-3l9</link>
      <guid>https://dev.to/olaughter/mixed-precision-routing-speeds-up-attention-prefill-3l9</guid>
      <description>&lt;p&gt;TileMix doubles prefill throughput while leaving the model untouched. The speedup comes from routing attention‑score tiles to INT8 Tensor Cores instead of running everything in FP16. By keeping the dense connectivity graph intact, the method avoids any retraining or architectural tweaks. “TileMix improves throughput over FlashAttention by routing score-tile groups to INT8 Tensor&amp;nbsp;Cores.” &lt;a href="https://arxiv.org/abs/2608.17336" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Before TileMix, practitioners had to choose between a uniform low‑precision path that hurt long‑context quality or token‑selection schemes that broke the full attention graph. FlashAttention remains the de‑facto FP16 fused kernel for dense self‑attention, and existing mixed‑precision tricks apply a single precision globally rather than per tile. Consequently, speed gains were modest and often came at the cost of accuracy on long prompts.&lt;/p&gt;

&lt;p&gt;According to the paper, SpTrans75 reaches 31.80 K tokens /s on a 4 k‑token prompt, more than double FlashAttention’s 14.33 K tokens /s while staying ahead of other INT8 baselines. The paper does not provide a direct TileMix vs. FlashAttention throughput comparison for this setting. &lt;a href="https://arxiv.org/abs/2608.17336" rel="noopener noreferrer"&gt;[1]&lt;/a&gt; The result holds across LLaMA, Qwen and Vicuna models, showing a consistent accuracy‑efficiency frontier.&lt;/p&gt;

&lt;p&gt;TileMix’s design hinges on hardware‑aligned score tiles and compact bitmask routing, which may limit portability to GPUs lacking INT8 Tensor Core support or to future attention kernels that change tile granularity. Although the authors emphasize that “by routing all legal tile groups, TileMix preserves dense token connectivity, requires no training, and supports grouped‑query attention, variable‑length batches, and INT8 key/value caches,” &lt;a href="https://arxiv.org/abs/2608.17336" rel="noopener noreferrer"&gt;[1]&lt;/a&gt; it remains an open question how well the approach scales to non‑A100 architectures or to inference frameworks that cannot fuse the mixed‑precision path.&lt;/p&gt;

&lt;p&gt;Deployments that spend most of their latency in prefill should replace FlashAttention with TileMix on supported hardware, cutting end‑to‑end latency roughly by half without sacrificing model quality.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.17336" rel="noopener noreferrer"&gt;TileMix: Tile-Centric Mixed-Precision Attention for LLM Inference Acceleration&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>Query‑aware routing lifts retrieval recall</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Fri, 04 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/query-aware-routing-lifts-retrieval-recall-3f22</link>
      <guid>https://dev.to/olaughter/query-aware-routing-lifts-retrieval-recall-3f22</guid>
      <description>&lt;p&gt;Retrieval pipelines have long forced engineers to pick either a fast but brittle retriever or a powerful yet latency‑heavy one, and the field has accepted that trade‑off as immutable. RetrievalRouter flips that assumption by learning, from the query text alone, which backend will serve each request, delivering measurable recall lifts for retrieval‑augmented generation (RAG) systems.&lt;/p&gt;

&lt;p&gt;Before this work, practitioners built static pipelines around dense encoders such as DPR or late‑interaction models like ColBERT, and multimodal variants were treated as separate tracks. Benchmarks showed that no single architecture dominated across domains, so teams settled on the best compromise for their whole workload.&lt;/p&gt;

&lt;p&gt;RetrievalRouter is 2.5 % more accurate and faster than the best static baseline. The authors train a lightweight classifier that predicts the optimal pipeline per query, exposing a single tunable knob that spans the full accuracy‑latency frontier, and then report that “Against the best static baseline, RetrievalRouter is 2.5% more accurate and faster.” &lt;a href="https://arxiv.org/abs/2608.25625" rel="noopener noreferrer"&gt;[1]&lt;/a&gt; This improvement holds across financial and scientific corpora without any architectural changes to the underlying retrievers.&lt;/p&gt;

&lt;p&gt;At its sweet spot RetrievalRouter reaches 0.755 nDCG@5 at 0.666 s, dominating all four late‑interaction pipelines. The paper highlights that “At , RetrievalRouter reaches 0.755 nDCG@5 at 0.666s and dominates all four late-interaction pipelines.” &lt;a href="https://arxiv.org/abs/2608.25625" rel="noopener noreferrer"&gt;[1]&lt;/a&gt; The result places the router on a Pareto‑optimal curve where both relevance and response time improve together, a regime previously unattainable with any static configuration.&lt;/p&gt;

&lt;p&gt;Routing adds a fixed 15 ms overhead per query, limiting gains in ultra‑low‑latency scenarios. The authors acknowledge that “Routing incurs 15 ms of overhead.” &lt;a href="https://arxiv.org/abs/2608.25625" rel="noopener noreferrer"&gt;[1]&lt;/a&gt; While the net latency remains lower than most dense or multimodal backends, the extra step becomes noticeable when the target service time is already sub‑200 ms, suggesting that further engineering—such as batching router predictions or embedding them in inference servers—may be required.&lt;/p&gt;

&lt;p&gt;If these numbers hold across production workloads, every RAG benchmark should treat RetrievalRouter as the new baseline rather than a single static retriever. Re‑evaluating existing pipelines with query‑aware routing will reveal hidden recall gains and may eliminate the need for costly, heavyweight backends in many applications.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.25625" rel="noopener noreferrer"&gt;RetrievalRouter: Joint Modality and Architecture Selection for Document Retrieval&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>Test‑time policy optimization replaces supervised labels</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Thu, 03 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/test-time-policy-optimization-replaces-supervised-labels-1a0n</link>
      <guid>https://dev.to/olaughter/test-time-policy-optimization-replaces-supervised-labels-1a0n</guid>
      <description>&lt;p&gt;An asymmetric test‑time objective lets on‑policy distillation hit supervised OPSD performance without any hand‑labeled data. By rewarding rollouts that agree with a teacher and penalizing those that diverge, the method turns unlabeled interaction streams into a reliable supervisory signal. The result is label‑free test‑time training that reaches the same accuracy as pipelines built on costly annotation.&lt;/p&gt;

&lt;p&gt;Before this work, reinforcement‑learning fine‑tuning and On‑Policy Self‑Distillation (OPSD) both required ground‑truth labels to steer the model toward correct reasoning paths. A natural workaround—using majority‑vote pseudo‑labels—proved brittle: a single incorrect vote could corrupt the teacher and mislead every token in subsequent generations.&lt;/p&gt;

&lt;p&gt;Even when the pseudo‑label is wrong, 79 % of the rollouts that disagree with it are wrong too, confirming an asymmetric error pattern that can be exploited safely. This observation underpins the design of TTPO’s dual‑branch loss, where agreement triggers distillation and disagreement triggers a penalizing RL signal&lt;a href="https://arxiv.org/abs/2608.27448" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Without any labels, TTPO matches label‑supervised OPSD on five competition‑level benchmarks and lifts Qwen3‑1.7B from 38.0 % to 45.2 % in test‑time training, delivering a +25.2 % to +36.4 % gain when the model is evaluated without additional thinking time&lt;a href="https://arxiv.org/abs/2608.27448" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;TTPO exceeds the label‑dependent OPSD across all three model scales—40.1 vs. 39.7 on the 1.7B variant, 58.6 vs. 58.4 on 4B, and 62.6 vs. 61.7 on 8B in average score—despite operating without ground‑truth supervision&lt;a href="https://arxiv.org/abs/2608.27448" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The approach still leans on majority‑vote pseudo‑labels as a routing signal; if the vote is consistently noisy in a new domain, the asymmetry may weaken and the penalty branch could misfire. Moreover, the experiments focus on mathematical reasoning tasks, leaving open whether the same gains translate to language generation or classification settings.&lt;/p&gt;

&lt;p&gt;If these results hold broadly, the standard practice of building a labeled OPSD dataset before test‑time training should be abandoned for math‑heavy pipelines; simply run TTPO at inference time and cut the entire annotation stage out.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.27448" rel="noopener noreferrer"&gt;TTPO: Test-Time Policy Optimization&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>On‑the‑fly harnesses boost LLM agents</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Wed, 02 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/on-the-fly-harnesses-boost-llm-agents-57l6</link>
      <guid>https://dev.to/olaughter/on-the-fly-harnesses-boost-llm-agents-57l6</guid>
      <description>&lt;p&gt;Custom harness generation at inference time can lift LLM‑agent success rates by as much as twenty percentage points without touching the underlying model. JIT‑Agent shows that this leap comes from a trainable meta‑model that spits out task‑specific wrappers on the fly, turning a manual engineering bottleneck into an automated plug‑in.&lt;/p&gt;

&lt;p&gt;Before JIT‑Agent, agent scaffolds were hand‑crafted prompt wrappers that had to be rewritten for each new tool or workflow. Researchers treated these harnesses as static artefacts, and any performance gain required either painstaking redesign or a larger foundation model.&lt;/p&gt;

&lt;p&gt;Across all 18 directly matched backbone–benchmark pairs, replacing the default scaffold with a JIT‑generated harness improves performance. The paper reports gains ranging from five to twenty points, with the most dramatic jump of +20.2 on GLM‑5.2, proving that a modest meta‑model can outpace heavyweight retraining cycles &lt;a href="https://arxiv.org/abs/2608.25593" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;DeepSeek‑V4‑Flash equipped with JIT‑Agent surpasses GPT‑5.6 on DeepSearchQA by +9.1 and on OdysseyBench by +4.3, demonstrating that the benefit persists even when the backbone is already competitive &lt;a href="https://arxiv.org/abs/2608.25593" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. These results hold across heterogeneous model families such as Mimo‑V2.5 and Qwen3.6, underscoring the method’s portability.&lt;/p&gt;

&lt;p&gt;JIT‑Agent makes these choices explicit through four interoperable modules: how history is compressed, how local intent is formed, how tools and skills are orchestrated, and how control advances. The design assumes an archive of prior harnesses to distill from, so completely novel toolkits may still require a bootstrap phase, and the additional inference step introduces latency that has not been quantified in the benchmarks.&lt;/p&gt;

&lt;p&gt;If this line of work scales, product teams can upgrade existing LLM agents simply by inserting JIT‑Agent as a harness generator, re‑running their internal test suites to capture the 5–20 pp lift without buying bigger GPUs or retraining. The immediate next experiment is to replace hand‑written scaffolds in any deployed agent stack with a JIT‑generated counterpart and measure the real‑world throughput impact.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.25593" rel="noopener noreferrer"&gt;JIT-Agent: Scaling Harness Intelligence via Just-in-Time Harness Evolution&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>Blockwise diffusion achieves &gt;5 faster inference</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Tue, 01 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/blockwise-diffusion-achieves-5x-faster-inference-2dme</link>
      <guid>https://dev.to/olaughter/blockwise-diffusion-achieves-5x-faster-inference-2dme</guid>
      <description>&lt;p&gt;Text‑to‑3D generation still burns tens of seconds per output, making interactive use impractical. By partitioning the token sequence into confidence‑guided blocks, a new inference path sidesteps the sequential bottleneck and preserves the fine geometric detail that users expect.&lt;/p&gt;

&lt;p&gt;Prior pipelines either decode shape tokens autoregressively or run global diffusion over the entire representation, both of which are costly. Autoregressive decoding cannot revise early mistakes, while diffusion repeatedly processes the full 3‑D state, inflating runtime as fidelity improves &lt;a href="https://arxiv.org/abs/2608.19567" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Block3D reduces mean end‑to‑end generation time to &lt;strong&gt;4.99 seconds&lt;/strong&gt;, a &lt;strong&gt;5.15×&lt;/strong&gt; speedup over the fine‑tuned autoregressive baseline, while keeping geometric fidelity on par with existing methods. “Its mean end-to-end generation time is 4.99 seconds, corresponding to a speedup over the controlled Cube baseline,” and “it improves paired geometry and reduces Cube’s mean generation time from 25.71 to 4.99 seconds while retaining competitive text‑shape alignment” &lt;a href="https://arxiv.org/abs/2608.19567" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The reported gains are limited to a held‑out split of TRELLIS‑500K and rely on confidence‑guided intra‑block correction, whose overhead may grow with larger token vocabularies or higher‑resolution meshes. This suggests an open question: will the same &amp;gt;5× acceleration hold when scaling to industrial datasets or multi‑GPU deployments &lt;a href="https://arxiv.org/abs/2608.19567" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Adopting blockwise diffusion as the default generation loop can reduce latency, and using the released pretrained checkpoint enables inference without additional model training. Practitioners can drop the standard diffusion scheduler, plug in the Block3D checkpoint, and re‑run CD‑L1 and F‑score evaluations to verify that speed gains come with no measurable loss in quality.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.19567" rel="noopener noreferrer"&gt;Block3D: Efficient Text-to-3D Generation via Block-Wise Diffusion&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>AI/ML Research Digest — Aug 29, 2026</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Mon, 31 Aug 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/aiml-research-digest-aug-29-2026-2ppa</link>
      <guid>https://dev.to/olaughter/aiml-research-digest-aug-29-2026-2ppa</guid>
      <description>&lt;h3&gt;
  
  
  Efficiency through latent compression and adaptive decoding
&lt;/h3&gt;

&lt;p&gt;Latent compression, block‑wise inference, and mixed‑precision routing slash compute by roughly 5–10× while keeping output quality intact &lt;a href="https://arxiv.org/abs/2608.15062" rel="noopener noreferrer"&gt;[1]&lt;/a&gt; &lt;a href="https://arxiv.org/abs/2608.20953" rel="noopener noreferrer"&gt;[2]&lt;/a&gt; &lt;a href="https://arxiv.org/abs/2608.27448" rel="noopener noreferrer"&gt;[3]&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
The gain matters because it makes large generative models viable on cheaper hardware and reduces energy consumption—two practical bottlenecks for deployment.&lt;/p&gt;

&lt;h3&gt;
  
  
  LLM agent performance hinges on curated harnesses and evaluation frameworks
&lt;/h3&gt;

&lt;p&gt;Task‑specific harnesses that generate, patch, or evaluate code at inference time lift success rates of language‑model agents by 5–20 percentage points, even though the underlying model stays unchanged &lt;a href="https://arxiv.org/abs/2608.25593" rel="noopener noreferrer"&gt;[4]&lt;/a&gt; &lt;a href="https://arxiv.org/abs/2608.26530" rel="noopener noreferrer"&gt;[5]&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
This shows that much of the current performance gap is engineering rather than model capacity, suggesting a low‑cost path to more reliable agents.&lt;/p&gt;

&lt;h3&gt;
  
  
  Multimodal world modeling and interactive RL
&lt;/h3&gt;

&lt;p&gt;Linking large multimodal models with simulators and reinforcement learning creates agents capable of planning, acting, and adapting inside dynamic visual environments &lt;a href="https://arxiv.org/abs/2608.25518" rel="noopener noreferrer"&gt;[6]&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Such closed‑loop systems move us from static perception toward embodied AI that can learn by interaction.&lt;/p&gt;




&lt;h2&gt;
  
  
  Standout papers
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Stream4D – 4D reward for coherent video generation&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Replacing static 3‑D critics with a feed‑forward 4‑D reconstruction loss and a motion prior preserves long‑range dynamics, improves visual fidelity, and aligns better with human preferences &lt;a href="https://arxiv.org/abs/2608.19556" rel="noopener noreferrer"&gt;[7]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Gated Recurrent Transformer (GRT) depth sharing&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
A three‑layer GRT reuses a shared core updated by a gate. Under identical FLOP budgets it matches the performance of a twelve‑layer GPT‑2 Small, proving that clever weight reuse can replace raw depth &lt;a href="https://arxiv.org/abs/2608.15062" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;JIT‑Agent – on‑the‑fly harness synthesis&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
JIT‑Agent learns to produce bespoke harness code during inference, boosting LLM agent task success by 5–20 pp without any retraining of the base model &lt;a href="https://arxiv.org/abs/2608.25593" rel="noopener noreferrer"&gt;[4]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Quantization‑Aware Healing (QAH)&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
QAH teaches a 4‑bit student directly from a full‑precision teacher via distillation. The resulting model reaches or exceeds the original accuracy while converging dramatically faster than traditional quantization pipelines &lt;a href="https://arxiv.org/abs/2608.20953" rel="noopener noreferrer"&gt;[2]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Test‑Time Policy Optimization (TTPO)&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
TTPO uses an asymmetric objective that rewards agreement and penalizes disagreement during on‑policy distillation. It attains supervised OPSD performance without any external labels, simplifying data collection for policy learning &lt;a href="https://arxiv.org/abs/2608.27448" rel="noopener noreferrer"&gt;[3]&lt;/a&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Notable details
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Blockwise diffusion with confidence‑guided intra‑block correction&lt;/strong&gt; cuts text‑to‑3D inference time by more than fivefold while preserving geometric fidelity &lt;a href="https://arxiv.org/abs/2608.19567" rel="noopener noreferrer"&gt;[8]&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Faster diffusion expands the range of interactive 3‑D applications.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Entropy‑Valley length selection&lt;/strong&gt; picks denoising‑friendly target lengths for masked diffusion translation, yielding sizable adequacy gains in machine translation benchmarks &lt;a href="https://arxiv.org/abs/2608.22274" rel="noopener noreferrer"&gt;[9]&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;TileMix mixed‑precision routing&lt;/strong&gt; directs tiles of the attention matrix through low‑precision kernels, boosting dense‑attention prefill throughput without retraining and retaining long‑context quality &lt;a href="https://arxiv.org/abs/2608.17336" rel="noopener noreferrer"&gt;[10]&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;OraRL oracle rollouts&lt;/strong&gt; introduce expert rollouts and a decoupled advantage estimator, slashing the sample budget needed for video‑grounded multimodal language models while preserving performance &lt;a href="https://arxiv.org/abs/2608.20492" rel="noopener noreferrer"&gt;[11]&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;RetrievalRouter query‑aware routing&lt;/strong&gt; learns to select the most suitable dense or multimodal retriever per query, delivering noticeable recall improvements in retrieval‑augmented generation pipelines &lt;a href="https://arxiv.org/abs/2608.25625" rel="noopener noreferrer"&gt;[12]&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.15062" rel="noopener noreferrer"&gt;Gated Recurrent Transformers: Expressive Depth through Recurrent Modulation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.20953" rel="noopener noreferrer"&gt;Quantization-Aware Healing: A Practical Recipe for Recovering Compressed, 4-Bit LLMs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.27448" rel="noopener noreferrer"&gt;TTPO: Test-Time Policy Optimization&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.25593" rel="noopener noreferrer"&gt;JIT-Agent: Scaling Harness Intelligence via Just-in-Time Harness Evolution&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.26530" rel="noopener noreferrer"&gt;PILOT in the Loop: Live Self-Improvement for Long-Horizon Agents&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.25518" rel="noopener noreferrer"&gt;Agentic Game Development as a Verifiable Trajectory Data Engine for Scaling World Models&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.19556" rel="noopener noreferrer"&gt;Stream4D: 4D-Consistency for Streaming Autoregressive Diffusion Video Models&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.19567" rel="noopener noreferrer"&gt;Block3D: Efficient Text-to-3D Generation via Block-Wise Diffusion&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.22274" rel="noopener noreferrer"&gt;Length-Adaptive Decoding for Masked Diffusion Machine Translation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.17336" rel="noopener noreferrer"&gt;TileMix: Tile-Centric Mixed-Precision Attention for LLM Inference Acceleration&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.20492" rel="noopener noreferrer"&gt;Annotations as Rollouts: Efficient and Scalable Reinforcement Learning for Video MLLMs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.25625" rel="noopener noreferrer"&gt;RetrievalRouter: Joint Modality and Architecture Selection for Document Retrieval&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>AdaptiveMem reduces reasoning fixation errors</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Mon, 31 Aug 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/adaptivemem-reduces-reasoning-fixation-errors-2kih</link>
      <guid>https://dev.to/olaughter/adaptivemem-reduces-reasoning-fixation-errors-2kih</guid>
      <description>&lt;p&gt;Dynamic external memory can slash stale‑belief mistakes at inference time without any retraining. AdaptiveMem achieves this by prompting the model at inference time to reconsider and avoid reliance on potentially outdated or misleading retrieved memories.&lt;/p&gt;

&lt;p&gt;Before AdaptiveMem, adding long‑term memory to LLMs often backfired: all evaluated memory strategies underperform the no‑memory setting, with even the strongest methods suffering drops of more than 10 % on the new MemTrapBench benchmark. This revealed a systematic “cognitive trap” where faithfully stored memories distort current reasoning.&lt;/p&gt;

&lt;p&gt;AdaptiveMem is a simple yet effective prompt skill for mitigating memory‑induced cognitive traps. The authors describe it as “a simple yet effective prompt skill for mitigating memory‑induced cognitive traps.” &lt;a href="https://arxiv.org/abs/2608.20202" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It can be directly integrated into diverse memory frameworks and guides the model to reconsider how retrieved memories should be used. The paper notes that “it can be directly integrated into diverse memory frameworks and guides the model to rethink how retrieved memories should be used.” &lt;a href="https://arxiv.org/abs/2608.20202" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;AdaptiveMem improves performance on MemTrapBench while preserving performance on typical memory benchmarks such as LongMemEval. As reported, “AdaptiveMem improves performance on MemTrapBench while preserving performance on typical memory benchmarks such as LongMemEval.” &lt;a href="https://arxiv.org/abs/2608.20202" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The authors evaluate scenarios covered by MemTrapBench; they do not discuss performance on other downstream tasks. moreover, the approach hinges on prompt engineering, which can be sensitive to phrasing variations. This suggests an open question: will similar inference‑time rewrites work for multimodal or chain‑of‑thought settings where memory interaction is less explicit?&lt;/p&gt;

&lt;p&gt;If AdaptiveMem reduces reasoning fixation without extra training, it could be considered as an alternative to static retrieved snippets in production pipelines, though the paper does not make specific deployment recommendations. The expected gain—eliminating a major source of error while keeping overall performance steady—makes it a compelling plug‑in for deployed systems.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.20202" rel="noopener noreferrer"&gt;MemTrapBench: Benchmarking Cognitive Traps in LLM Memory Use&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>Multimodal robots learn more efficiently</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Sun, 30 Aug 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/multimodal-robots-learn-more-efficiently-2mg9</link>
      <guid>https://dev.to/olaughter/multimodal-robots-learn-more-efficiently-2mg9</guid>
      <description>&lt;p&gt;A vision‑language backbone can significantly reduce robot training data requirements, addressing the reliance on extensive teleoperation recordings. EXIMO flips that script: a pretrained multimodal encoder drives exploration, letting the robot learn long‑horizon manipulation with dramatically fewer environment interactions.&lt;/p&gt;

&lt;p&gt;Before EXIMO, state‑of‑the‑art manipulation relied on behaviour cloning from massive teleoperation datasets and on‑policy reinforcement learning that spirals in sample cost. The dominant VLA models sit at billions of parameters and demand hundreds of hours of human control to cover new tasks — a bottleneck that has limited rapid iteration in embodied AI.&lt;/p&gt;

&lt;p&gt;EXIMO compresses the finetuning workflow into three stages—explore, imitate, and optimise—thereby eliminating redundant data collection loops. The three‑stage design lets a vision‑language model plan subgoals for the VLA, which then gathers an orchestrated dataset before a brief off‑policy RL polish &lt;a href="https://arxiv.org/abs/2608.19891" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;When the VLM planner is added, success rates jump sharply while wall‑clock time to solve each task stays unchanged. “VLM orchestration significantly increases the success rate of GROD while maintaining similar time to success,” the authors report, showing that richer visual‑language reasoning does not slow execution &lt;a href="https://arxiv.org/abs/2608.19891" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Fine‑tuning on the VLM‑generated data gives an immediate boost: “GROD + SFT starts at a higher success rate than the base model and also obtains higher performance at convergence compared to the base GROD model.” This early advantage persists through training, confirming that shared multimodal representations shrink the data bottleneck &lt;a href="https://arxiv.org/abs/2608.19891" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The paper’s own ablations reveal two open gaps. First, the experiments in the paper focus on a set of tabletop manipulation tasks; it remains an open question how well the approach scales to mobile manipulation or deformable objects. Second, the approach hinges on the VLM’s planning fidelity—errors in subgoal decomposition can propagate through the orchestrated dataset, a risk that the authors acknowledge but do not quantify.&lt;/p&gt;

&lt;p&gt;If EXIMO’s efficiency holds across domains, the community should rerun standard embodied benchmarks (e.g., RLBench) with VLM‑guided exploration as the default finetuning baseline. Doing so will expose whether shared visual‑language backbones can consistently replace costly teleoperation pipelines and accelerate real‑world robot deployment.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.19891" rel="noopener noreferrer"&gt;EXIMO: VLM Guided Exploration of VLA Policies&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>Object‑agnostic planners grasp unseen objects zero‑shot</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Sat, 29 Aug 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/object-agnostic-planners-grasp-unseen-objects-zero-shot-1iik</link>
      <guid>https://dev.to/olaughter/object-agnostic-planners-grasp-unseen-objects-zero-shot-1iik</guid>
      <description>&lt;p&gt;Grasp planners that hinge on object models are being eclipsed by approaches that synthesize contacts directly on the hand. A new generation of generative planners learns only the geometry of a gripper’s contact surface and can produce viable grasps for any unseen item in a single inference step.&lt;/p&gt;

&lt;p&gt;Before these works, data‑driven grasp synthesis required large, object‑specific datasets collected either from painstaking annotation or from expensive simulation pipelines. The resulting models generalized poorly to novel shapes and incurred substantial engineering overhead to maintain per‑object training corpora.&lt;/p&gt;

&lt;p&gt;GOAG reaches an average success rate of 86.93% on the MultiDex benchmark despite never seeing object‑specific data during training. While being trained in an object‑agnostic manner, GOAG achieved a higher average success rate for generating accurate grasps across all three grippers compared to the baselines &lt;a href="https://arxiv.org/abs/2608.19759" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The entire dataset creation for GOAG consumed only about 1 GPU hour on a single Nvidia RTX 4090, whereas comparable object‑specific pipelines reported generation times of roughly 1,400 GPU hours on an Nvidia A100. “The entire dataset creation required approximately 1 GPU hour on a single Nvidia RTX&amp;nbsp;4090.” “In contrast, a previous work [12] reported a much longer generation time of 1,400 GPU hours using Nvidia A100.” &lt;a href="https://arxiv.org/abs/2608.19759" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;CoToGrasp attains state‑of‑the‑art performance on the large‑scale DexGraspNet dataset, surpassing existing taxonomy‑guided planners while remaining completely object‑agnostic. “Extensive evaluations on the large‑scale DexGraspNet dataset demonstrate that CoToGrasp achieves state-of-the-art performance, outperforming existing taxonomy-guided planners.” “By learning the intrinsic contact manifold of the gripper within this workspace, our model achieves zero-shot generalization to unseen objects at inference.” &lt;a href="https://arxiv.org/abs/2608.19776" rel="noopener noreferrer"&gt;[2]&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Both papers evaluate primarily on static benchmark collections and rely on simulated depth or point‑cloud inputs; real‑world clutter, occlusions, and dynamic interactions remain underexplored. This suggests that while contact‑surface learning removes the need for object‑specific datasets, additional research is required to confirm robustness under uncontrolled perception conditions.&lt;/p&gt;

&lt;p&gt;Benchmarks such as MultiDex and DexGraspNet should incorporate an object‑agnostic baseline, because these results demonstrate that eliminating per‑object data does not sacrifice grasp success and dramatically cuts dataset generation time.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.19759" rel="noopener noreferrer"&gt;GOAG: Generative and Object-Agnostic Grasp Planner for Dexterous Robotic Manipulation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.19776" rel="noopener noreferrer"&gt;CoToGrasp: Contact-Topology-Conditioned Dexterous Grasp Synthesis via Canonical Workspace Learning&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>IAR embeds documents directly into model weights</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Fri, 28 Aug 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/iar-embeds-documents-directly-into-model-weights-4am</link>
      <guid>https://dev.to/olaughter/iar-embeds-documents-directly-into-model-weights-4am</guid>
      <description>&lt;p&gt;Retrieval‑free internalization now beats standard fine‑tuning on domain‑specific question answering, and it does so without sacrificing the model’s broad linguistic competence. The IAR framework makes this possible by turning a static document collection into parametric knowledge that lives directly in the weights.&lt;/p&gt;

&lt;p&gt;Before IAR, most systems relied on an external retriever at inference time, coupling a dense index with a language model or augmenting the model via LoRA adapters to expose domain data. Those approaches still incurred latency from the retrieval step and often required separate pipelines for general‑purpose tasks.&lt;/p&gt;

&lt;p&gt;IAR improves over Vanilla SFT on all four reported metrics in 7 of 8 dataset‑model settings, with average gains of &lt;strong&gt;3.6 percentage points&lt;/strong&gt; in domain QA accuracy and &lt;strong&gt;12.1 percentage points&lt;/strong&gt; in mean general performance across IFEval, MMLU, and MSBench&lt;a href="https://arxiv.org/abs/2608.20281" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. The three‑stage post‑training—Inject, Align, Recover—delivers a consistent uplift while keeping the model usable for unrelated benchmarks.&lt;/p&gt;

&lt;p&gt;Qwen3‑4B CC is the clearest example, reaching &lt;strong&gt;50.5 %&lt;/strong&gt; versus &lt;strong&gt;42.4 %&lt;/strong&gt; domain accuracy while improving all three general metrics&lt;a href="https://arxiv.org/abs/2608.20281" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. This single model jump illustrates how weight‑level knowledge injection can eclipse a vanilla supervised fine‑tune even on a mid‑size 4B parameter backbone.&lt;/p&gt;

&lt;p&gt;Relative to Vanilla SFT, Best IA improves domain accuracy by &lt;strong&gt;2.8&lt;/strong&gt;, &lt;strong&gt;7.7&lt;/strong&gt;, &lt;strong&gt;5.3&lt;/strong&gt;, and &lt;strong&gt;4.7 points&lt;/strong&gt; on CC for Llama, Phi, Qwen3‑4B, and SmolLM respectively; the corresponding CCI gains are &lt;strong&gt;5.6&lt;/strong&gt;, &lt;strong&gt;6.1&lt;/strong&gt;, &lt;strong&gt;0.4&lt;/strong&gt;, and &lt;strong&gt;2.3 points&lt;/strong&gt;&lt;a href="https://arxiv.org/abs/2608.20281" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. The injection‑and‑align stages alone already capture a sizable fraction of the final performance boost before any recovery step.&lt;/p&gt;

&lt;p&gt;The paper’s own limitation is that achieving these gains requires a three‑stage training pipeline, which adds engineering overhead and may not scale trivially to corpora larger than those tested. This suggests an open question: can a single‑pass or lighter‑weight internalization procedure retain both domain fidelity and general capability at scale?&lt;/p&gt;

&lt;p&gt;If the reported improvements hold across broader settings, developers should replace external retriever components with IAR‑enhanced models for latency‑critical services, cutting inference time and infrastructure complexity while preserving—or even improving—answer quality.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.20281" rel="noopener noreferrer"&gt;Inject, Align, Recover: Staged Post-Training for Retrieval-Free Document Knowledge Internalization&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>Self‑evolving agents acquire skills without scaling</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Thu, 27 Aug 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/self-evolving-agents-acquire-skills-without-scaling-3fob</link>
      <guid>https://dev.to/olaughter/self-evolving-agents-acquire-skills-without-scaling-3fob</guid>
      <description>&lt;p&gt;Agents that can rewrite their own simulated worlds and distill those rewrites into reusable modules now eclipse raw model scaling as the dominant path to higher accuracy. Two independent systems released this month demonstrate a co‑evolutionary loop where workflows become skills and feedback loops sustain evolution without any extra training.  &lt;/p&gt;

&lt;p&gt;Previously, LLM agents constructed ad‑hoc workflows at inference time but discarded the resulting procedures once a task finished, while skill libraries were handcrafted or assembled offline &lt;a href="https://arxiv.org/abs/2607.21596" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. This static pipeline prevented agents from capitalizing on successes they had already achieved, leaving long‑term capability growth to be driven solely by larger backbones.  &lt;/p&gt;

&lt;p&gt;Earlier attempts to evolve skills relied on a single‑turn question‑answer signal, which quickly ran out of trustworthy gradients and left multi‑turn defects invisible &lt;a href="https://arxiv.org/abs/2608.13120" rel="noopener noreferrer"&gt;[2]&lt;/a&gt;. Without a persistent source of feedback the evolution process stalled after the first round of fixes.  &lt;/p&gt;

&lt;p&gt;FlowEvo reaches 85.6% accuracy on ALFWorld, a 26.4‑point lead over the strongest baseline, while consuming roughly one third of the tokens ["On ALFWorld, it reaches 85.6%, 26.4 points above the strongest baseline, while using roughly one third as many tokens."&amp;nbsp;2607.21596]. The system compiles each successful workflow into a callable skill, stores it in a persistent bank, and reuses it either directly or as context for new plans, turning transient traces into permanent capabilities.  &lt;/p&gt;

&lt;p&gt;Across ten base models ranging from 7 B to 671 B parameters, FlowEvo outperforms the ExpeL baseline in 49 of 50 model‑dataset comparisons, showing that the gain comes from skill accumulation rather than raw scaling &lt;a href="https://arxiv.org/abs/2607.21596" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. The authors track downstream utility for each skill and suppress those that cause negative transfer, ensuring that the bank grows only with beneficial routines.  &lt;/p&gt;

&lt;p&gt;When compiled skills are made available for reuse, performance jumps from 38.8% to 80.6%, confirming that the feedback loop of skill compilation is the dominant factor ["Enabling skill reuse on top of compilation produces the dominant improvement (38.8% to 80.6%), confirming that the gain is driven by skill feedback rather than curation."&amp;nbsp;2607.21596]. This leap dwarfs gains from merely curating a larger static library, because each skill carries its execution trace and contextual cues.  &lt;/p&gt;

&lt;p&gt;SkillEvo lifts production‑skill success by 23 points over self‑reflection evolution and by 15.4 points over single‑turn QA‑driven evolution across six cloud‑service categories, nine skills, and ninety‑eight reference files ["Across six categories of cloud services, 9 production Skills, and 98 skill-reference files, SkillEvo surpasses self‑reflection‑based evolution by 23.0 points and single‑turn‑QA-driven evolution by 15.4 points."&amp;nbsp;2608.13120]. The framework replaces a scalar rejection gate with an active governance layer that repairs factual degradation and structural bloat, keeping the skill set healthy over many iterations.  &lt;/p&gt;

&lt;p&gt;Its multi‑turn simulation rewrites defects layer by layer—each follow‑up question both consumes feedback and creates fresh gradients—keeping the evolutionary signal alive without expanding model size ["Follow‑up questions expose defects layer by layer, so that every round of revision both consumes feedback and produces new feedback."&amp;nbsp;2608.13120]. By treating interaction as a continuous gradient generator, SkillEvo avoids the decay observed in single‑turn pipelines and sustains improvement across long dialogues.  &lt;/p&gt;

&lt;p&gt;The reported gains were achieved using a powerful GPT‑4o‑mini backbone; the paper does not evaluate whether smaller or open models would achieve similar token efficiency &lt;a href="https://arxiv.org/abs/2607.21596" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. Moreover, maintaining a persistent skill bank introduces overhead for indexing and versioning, and mismanagement could lead to subtle interference between skills.  &lt;/p&gt;

&lt;p&gt;SkillEvo relies on simulated user feedback, where follow‑up questions are used to expose defects layer by layer; however, the paper does not claim that these simulations faithfully capture real‑world defects, which could limit performance in noisy production settings. If the feedback generator is biased or incomplete, the evolution gradient can drift toward spurious optimizations rather than true capability growth.  &lt;/p&gt;

&lt;p&gt;Teams can now prioritize building persistent skill banks and multi‑turn evaluation pipelines over chasing larger parameter counts, re‑running existing benchmarks with half‑sized models to achieve comparable scores. The co‑evolutionary recipe suggests that future agent performance will be defined more by the richness of their reusable skill ecosystems than by raw scaling.  &lt;/p&gt;

&lt;p&gt;If this loop holds, will the next generation of agents be judged by the size of their skill libraries rather than the size of their parameters?&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2607.21596" rel="noopener noreferrer"&gt;FlowEvo: Self-Evolving Agents through the Co-Evolution of Workflows and Executable Skills&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.13120" rel="noopener noreferrer"&gt;SkillEvo: Self-Renewing Evolution Gradients from Multi-Turn Interaction Feedback&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>FlashPrefillV2 gives 47 long‑context speedup</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Wed, 26 Aug 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/flashprefillv2-gives-47x-long-context-speedup-4366</link>
      <guid>https://dev.to/olaughter/flashprefillv2-gives-47x-long-context-speedup-4366</guid>
      <description>&lt;p&gt;Sparse block‑prefill kernels now make 128 K token prompts tractable for dense LLMs, shattering the long‑standing quadratic bottleneck that forces most services to truncate inputs. FlashPrefill V2 flips the script by delivering an order‑of‑magnitude speedup while keeping output quality essentially intact.&lt;/p&gt;

&lt;p&gt;Before this work, inference on very long contexts relied on dense attention implementations such as FlashAttention‑2, whose quadratic scaling still dominated latency even after low‑level optimizations. The community accepted that serving 100 K‑plus tokens would require either massive hardware or severe approximation, leaving high‑quality long‑context use cases out of reach.&lt;/p&gt;

&lt;p&gt;FlashPrefill V2 achieves a &lt;strong&gt;47.26×&lt;/strong&gt; speedup over FlashAttention‑2 at 128 K context length in FP8 precision, and still delivers &lt;strong&gt;27.19×&lt;/strong&gt; faster inference in BF16 while achieving substantially lower latency than dense baselines, delivering up to 30.49× speedup over an FA3/4‑aligned dense baseline in FP8 precision &lt;a href="https://arxiv.org/abs/2608.19758" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. The authors attribute this gain to a mean‑corrected block‑sparse operator coupled with warp‑specialized kernels, ping‑pong pipelining, and native support for paged KV caches that align with the latest FlashAttention‑3/4 stack.&lt;/p&gt;

&lt;p&gt;The method “confining the accuracy loss to within about one point on RULER and LongBench averages, and to within points at 128K on RULER where fewer than of the blocks are computed” demonstrates that the aggressive sparsity does not materially degrade generation quality even at extreme context lengths &lt;a href="https://arxiv.org/abs/2608.19758" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. This bound holds across both FP8 and BF16 runs, suggesting the mean‑correction term successfully mitigates approximation error.&lt;/p&gt;

&lt;p&gt;The paper’s evaluation stops at 128 K tokens and focuses on homogeneous workloads; it does not report performance on mixed‑length batches, multi‑GPU scaling, or models larger than those tested on Hopper GPUs. Moreover, integration is demonstrated only with SGLang, leaving open whether the same gains translate to other serving stacks or to inference under heavy request concurrency.&lt;/p&gt;

&lt;p&gt;If these results hold in production, any service that currently falls back to truncation for inputs beyond 64 K tokens should swap its dense attention backend for FlashPrefill V2, cutting end‑to‑end latency by roughly an order of magnitude and unlocking real‑time summarisation or code completion on massive documents.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.19758" rel="noopener noreferrer"&gt;FlashPrefill V2: Block-Sparse Prefill Attention for Long-Context LLM Serving&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
  </channel>
</rss>
