ArtificialIntelligence.io

The Signal

Everything that matters in AI, with our take.

Updated through the day. Every headline links straight to the source. The two lines underneath are ours.

arXiv cs.CLPaper

It's Not RoPE that Creates Sinks: The Role of Self-Concentration and Value-Non-Mixing in Attention

This reframes a known scaling problem: attention sinks aren't a RoPE artifact, they're a structural consequence of causal masking. It matters for quantization strategies and for anyone compressing models into edge deployments. The paper doesn't propose a fix, just explains the mechanism. Useful for infrastructure engineers who need to know what they're actually fighting.

arXiv cs.CLPaper

Language Models Can Control Their Own Attention

This is a real efficiency win for long-context inference. Instead of scanning the full KV cache at each step, the model declares which region it needs (global, focused, or local), and the inference engine skips the rest. It's intrinsic rather than extrinsic: the model already knows what matters. If you're running long-context inference at scale, this cuts compute per token without architectural changes. Likely to land in production systems within months.

arXiv cs.LGPaper

Hardware-Aware FP4 FlashAttention-4

Blackwell is shipping now and naive FP4 attention doesn't auto-unlock speed gains. This paper shows how: Direct-P for inference, causal paths with FP8 gradients for training. For teams running large models on Blackwell hardware, this translates directly to wall-clock gains. The 1.14x single-GPU update speedup is real money. Implementation details matter here, so read carefully or grab the code.

arXiv cs.LGPaper

LoGo: Token-Level Dynamic Local-Global Attention

The efficiency gains here are real but modest in scope. This is an incremental optimization to the Transformer backbone targeting a specific bottleneck (attention cost at scale), and it requires gate learning to work. Worth tracking if you're building inference-heavy systems that need to serve long contexts, but this isn't a paradigm shift. The mechanism assumes you can identify which tokens need long-range access before computing attention, which is a strong constraint.

arXiv cs.CLPaper

Sliding-window beats linear attention

Linear attention has been the darling of the efficiency crowd, but this work shows the simpler sliding-window baseline was never actually beaten. For builders working on long-context systems, this is permission to stick with what you know works rather than chasing the research hype. The implication is that the scaling path forward stays quadratic, not linear. That has cost consequences at million-token scale.