<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>With-Deepseek-V4-Pro on Jaehun's Blog</title><link>https://jaehun.me/en/categories/with-deepseek-v4-pro/</link><description>Recent content in With-Deepseek-V4-Pro on Jaehun's Blog</description><generator>Hugo</generator><language>en-US</language><lastBuildDate>Tue, 08 Sep 2026 10:56:16 +0000</lastBuildDate><atom:link href="https://jaehun.me/en/categories/with-deepseek-v4-pro/index.xml" rel="self" type="application/rss+xml"/><item><title>ShallowStream: Index Shallow then Answer Deep for Streaming Video Understanding</title><link>https://jaehun.me/en/posts/shallowstream-index-shallow-then-answer-deep-for-streaming-video-understanding/</link><pubDate>Tue, 08 Sep 2026 00:00:00 +0900</pubDate><guid>https://jaehun.me/en/posts/shallowstream-index-shallow-then-answer-deep-for-streaming-video-understanding/</guid><description>&lt;p&gt;&lt;a&#10; href="https://arxiv.org/abs/2609.02780v1"target="_blank"&#10; class="inline-flex items-center gap-1"&#10; &gt;Paper&lt;svg class="h-3 w-3 flex-shrink-0" id="external-link" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 3h6v6m-11 5L21 3m-3 10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/&gt;&lt;/svg&gt;&#10; &lt;/a&gt;&lt;/p&gt;&#10;&lt;h2 id="shallowstream-index-shallowly-answer-deeply--unlocking-the-computational-bottleneck-of-streaming-video-understanding"&gt;ShallowStream: Index Shallowly, Answer Deeply — Unlocking the Computational Bottleneck of Streaming Video Understanding&lt;a href="#shallowstream-index-shallowly-answer-deeply--unlocking-the-computational-bottleneck-of-streaming-video-understanding" class="heading-anchor" aria-label="Link to this section"&gt;&lt;svg class="h-4 w-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"&gt;&lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/&gt;&lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt; — In streaming video understanding, the most expensive cost is prefilling every frame through the MLLM&amp;rsquo;s &lt;strong&gt;full depth (28–32 layers)&lt;/strong&gt;. ShallowStream builds frame encoding and a retrieval index with &lt;strong&gt;only 4–5 shallow layers&lt;/strong&gt;, and runs full-depth computation on the retrieved evidence &lt;strong&gt;only at the moment a question arrives&lt;/strong&gt;. As a result, it keeps SOTA-level performance (OVO-Bench 69.5 / StreamingBench 78.2) while cutting per-frame prefill by &lt;strong&gt;up to 52.1×&lt;/strong&gt; and 10-second end-to-end latency by &lt;strong&gt;up to 11.9×&lt;/strong&gt; (source: Abstract).&lt;/p&gt;</description></item><item><title>Unlocking Lossless Speedups in LLMs via Discrete Diffusion</title><link>https://jaehun.me/en/posts/unlocking-lossless-speedups-in-llms-via-discrete-diffusion/</link><pubDate>Tue, 08 Sep 2026 00:00:00 +0900</pubDate><guid>https://jaehun.me/en/posts/unlocking-lossless-speedups-in-llms-via-discrete-diffusion/</guid><description>&lt;p&gt;&lt;a&#10; href="https://arxiv.org/abs/2609.04010v1"target="_blank"&#10; class="inline-flex items-center gap-1"&#10; &gt;Paper&lt;svg class="h-3 w-3 flex-shrink-0" id="external-link" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 3h6v6m-11 5L21 3m-3 10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/&gt;&lt;/svg&gt;&#10; &lt;/a&gt;&lt;/p&gt;&#10;&lt;h2 id="uno-ar-and-diffusion-in-one-model--lossless-parallel-generation-for-llm-acceleration"&gt;Uno: AR and Diffusion in One Model — Lossless Parallel Generation for LLM Acceleration&lt;a href="#uno-ar-and-diffusion-in-one-model--lossless-parallel-generation-for-llm-acceleration" class="heading-anchor" aria-label="Link to this section"&gt;&lt;svg class="h-4 w-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"&gt;&lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/&gt;&lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt; — LLMs are slow because next-token prediction (NTP) can emit only one token at a time by its very sequential structure. Uno plants &lt;strong&gt;AR weights that own quality&lt;/strong&gt; and &lt;strong&gt;lightweight LoRA diffusion weights that own speed&lt;/strong&gt; into a single architecture; the diffusion path drafts token blocks in parallel, and the AR path verifies them via rejection sampling. With neither a separate draft model nor a lossy AR→diffusion conversion, it achieves &lt;strong&gt;lossless&lt;/strong&gt; acceleration that exactly preserves the AR distribution. In practice it delivers &lt;strong&gt;up to 3×&lt;/strong&gt; speedup over the base AR model and still &lt;strong&gt;up to 2×&lt;/strong&gt; at the largest batch sizes, while beating open d-LLMs (26B DiffusionGemma) and proprietary models (Mercury 2) on agentic, coding, and long-form reasoning benchmarks (source: Abstract).&lt;/p&gt;</description></item><item><title>BeaconKV: Key-Value Cache Compression Guided by Beacon Queries for Efficient Large Reasoning Model Inference</title><link>https://jaehun.me/en/posts/beaconkv-key-value-cache-compression-guided-by-beacon-queries-for-efficient-large-reasoning-model-inference/</link><pubDate>Mon, 07 Sep 2026 00:00:00 +0900</pubDate><guid>https://jaehun.me/en/posts/beaconkv-key-value-cache-compression-guided-by-beacon-queries-for-efficient-large-reasoning-model-inference/</guid><description>&lt;p&gt;&lt;a&#10; href="https://arxiv.org/abs/2609.04971v1"target="_blank"&#10; class="inline-flex items-center gap-1"&#10; &gt;Paper&lt;svg class="h-3 w-3 flex-shrink-0" id="external-link" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 3h6v6m-11 5L21 3m-3 10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/&gt;&lt;/svg&gt;&#10; &lt;/a&gt;&lt;/p&gt;&#10;&lt;h2 id="catch-the-moment-a-model-revisits-its-thoughts-how-beaconkv-compresses-reasoning-kv-caches-58-with-beacon-queries"&gt;Catch the Moment a Model &amp;ldquo;Revisits Its Thoughts&amp;rdquo;: How BeaconKV Compresses Reasoning KV Caches 5.8× with Beacon Queries&lt;a href="#catch-the-moment-a-model-revisits-its-thoughts-how-beaconkv-compresses-reasoning-kv-caches-58-with-beacon-queries" class="heading-anchor" aria-label="Link to this section"&gt;&lt;svg class="h-4 w-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"&gt;&lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/&gt;&lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/a&gt;&lt;/h2&gt;&#10; &lt;blockquote&#10; class="border-primary bg-muted/30 hover:bg-muted/40 my-6 rounded-r-lg border-l-4 py-4 pr-4 pl-6 italic transition-all duration-200 ease-out hover:translate-x-1"&#10; &gt;&#10; &lt;div class="prose prose-sm max-w-none"&gt;&#10; &lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt; — The KV cache of a Large Reasoning Model (LRM) grows linearly as it produces longer Chains-of-Thought (CoT). When Qwen3-4B generates 32K tokens at batch size 16, the KV cache alone exceeds &lt;strong&gt;77 GB&lt;/strong&gt;, approaching the 80 GB GPU limit (source: §1). Existing compression methods predict future important tokens from &lt;strong&gt;recent queries&lt;/strong&gt;, but this assumption breaks down during reasoning because of a phenomenon called Thought Revisiting Token (TRT), in which the model &lt;strong&gt;re-reads distant past context (problem definition, solution plan)&lt;/strong&gt; (source: §3). Building on the geometric insight that the &lt;strong&gt;global queries&lt;/strong&gt; behind TRT form a few clusters in embedding space, BeaconKV selects a &lt;strong&gt;beacon query&lt;/strong&gt; to represent each cluster online via Continual FPS and compresses the KV cache accordingly. This achieves &lt;strong&gt;up to 5.8× memory savings (77.0 → 13.3 GB)&lt;/strong&gt; and &lt;strong&gt;4.3× throughput gains (82.3 → 356.4 tokens/s)&lt;/strong&gt;, while improving accuracy by up to &lt;strong&gt;31.7 pp&lt;/strong&gt; over RPC and R-KV (source: §5.4, Fig. 8).&lt;/p&gt;</description></item><item><title>Hardware-Aware FP4 FlashAttention-4</title><link>https://jaehun.me/en/posts/hardware-aware-fp4-flashattention-4/</link><pubDate>Mon, 07 Sep 2026 00:00:00 +0900</pubDate><guid>https://jaehun.me/en/posts/hardware-aware-fp4-flashattention-4/</guid><description>&lt;p&gt;&lt;a&#10; href="https://arxiv.org/abs/2609.04105v1"target="_blank"&#10; class="inline-flex items-center gap-1"&#10; &gt;Paper&lt;svg class="h-3 w-3 flex-shrink-0" id="external-link" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 3h6v6m-11 5L21 3m-3 10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/&gt;&lt;/svg&gt;&#10; &lt;/a&gt;&lt;/p&gt;&#10;&lt;h2 id="why-dont-fp4-tensor-cores-make-attention-faster-blackwell-flashattention-4-solved-with-direct-p-and-quantized-backprop"&gt;Why Don&amp;rsquo;t FP4 Tensor Cores Make Attention Faster? Blackwell FlashAttention-4, Solved with Direct-P and Quantized Backprop&lt;a href="#why-dont-fp4-tensor-cores-make-attention-faster-blackwell-flashattention-4-solved-with-direct-p-and-quantized-backprop" class="heading-anchor" aria-label="Link to this section"&gt;&lt;svg class="h-4 w-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"&gt;&lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/&gt;&lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt; — Blackwell&amp;rsquo;s FP4 tensor cores handle matrix multiplication far faster than BF16, but attention does not automatically inherit that benefit, because a &amp;ldquo;middle operation&amp;rdquo; — &lt;strong&gt;softmax&lt;/strong&gt; — sits between the &lt;em&gt;two matrix multiplications&lt;/em&gt;. This paper shortens the critical path with &lt;strong&gt;Direct-P&lt;/strong&gt;, which reframes softmax probability generation not as a sequential &amp;ldquo;accurate exponential → round&amp;rdquo; path but as a problem of &lt;strong&gt;directly classifying scores into E2M1 codes&lt;/strong&gt;, achieving up to &lt;strong&gt;2.13×&lt;/strong&gt; forward throughput over BF16 on an NVIDIA GB200 (source: §Abstract). For training, backward reuses the quantization state that forward produced to speed a single step of an 8B model by up to &lt;strong&gt;1.14×&lt;/strong&gt;, but lowering P/V to MXFP4 makes &lt;strong&gt;every trajectory diverge&lt;/strong&gt;, so P/V must be kept in FP8 (source: §7.6).&lt;/p&gt;</description></item><item><title>Language Models Can Control Their Own Attention</title><link>https://jaehun.me/en/posts/language-models-can-control-their-own-attention/</link><pubDate>Mon, 07 Sep 2026 00:00:00 +0900</pubDate><guid>https://jaehun.me/en/posts/language-models-can-control-their-own-attention/</guid><description>&lt;p&gt;&lt;a&#10; href="https://arxiv.org/abs/2609.02737v1"target="_blank"&#10; class="inline-flex items-center gap-1"&#10; &gt;Paper&lt;svg class="h-3 w-3 flex-shrink-0" id="external-link" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 3h6v6m-11 5L21 3m-3 10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/&gt;&lt;/svg&gt;&#10; &lt;/a&gt;&lt;/p&gt;&#10;&lt;h2 id="language-models-control-their-own-attention-declarative-attention"&gt;Language Models Control Their Own Attention: Declarative Attention&lt;a href="#language-models-control-their-own-attention-declarative-attention" class="heading-anchor" aria-label="Link to this section"&gt;&lt;svg class="h-4 w-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"&gt;&lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/&gt;&lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt; — Existing sparse attention methods still paid $O(N)$ per decoding step by &lt;em&gt;approximating externally&lt;/em&gt; which tokens matter. This paper flips the direction: it lets the model &lt;strong&gt;&amp;ldquo;declare&amp;rdquo;&lt;/strong&gt; directly, inside Chain-of-Thought (CoT), &lt;strong&gt;where it will look&lt;/strong&gt;. The inference engine parses this declaration like a tool call and skips most KV cache reads. Without any training (zero-shot), Gemma-4-31B cuts decoding attention cost by &lt;strong&gt;52.0%&lt;/strong&gt; with only a &lt;strong&gt;1.27pp&lt;/strong&gt; accuracy drop (source: §1, §5.1).&lt;/p&gt;</description></item><item><title>Same Request, Different Answer: Quantization Amplifies Cache-Induced Divergence in LLM Serving</title><link>https://jaehun.me/en/posts/same-request-different-answer-quantization-amplifies-cache-induced-divergence-in-llm-serving/</link><pubDate>Mon, 07 Sep 2026 00:00:00 +0900</pubDate><guid>https://jaehun.me/en/posts/same-request-different-answer-quantization-amplifies-cache-induced-divergence-in-llm-serving/</guid><description>&lt;p&gt;&lt;a&#10; href="https://arxiv.org/abs/2609.04748v1"target="_blank"&#10; class="inline-flex items-center gap-1"&#10; &gt;Paper&lt;svg class="h-3 w-3 flex-shrink-0" id="external-link" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 3h6v6m-11 5L21 3m-3 10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/&gt;&lt;/svg&gt;&#10; &lt;/a&gt;&lt;/p&gt;&#10;&lt;h2 id="same-request-different-answer-prefix-caching-makes-serving-non-reproducible-and-quantization-amplifies-it"&gt;Same Request, Different Answer: Prefix Caching Makes Serving Non-Reproducible, and Quantization Amplifies It&lt;a href="#same-request-different-answer-prefix-caching-makes-serving-non-reproducible-and-quantization-amplifies-it" class="heading-anchor" aria-label="Link to this section"&gt;&lt;svg class="h-4 w-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"&gt;&lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/&gt;&lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/a&gt;&lt;/h2&gt;&#10; &lt;blockquote&#10; class="border-primary bg-muted/30 hover:bg-muted/40 my-6 rounded-r-lg border-l-4 py-4 pr-4 pl-6 italic transition-all duration-200 ease-out hover:translate-x-1"&#10; &gt;&#10; &lt;div class="prose prose-sm max-w-none"&gt;&#10; &lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt; — Prefix caching is billed as a &amp;ldquo;transparent optimization,&amp;rdquo; but it is not transparent. With caching off, repeated runs of the same workload are &lt;strong&gt;bit-identical across all 10 configurations × 80 episodes = 800 runs&lt;/strong&gt; (source: Tab. 2); with caching on, agent trajectories change in &lt;strong&gt;36.2% of episodes at 16 bits and 75.0% under 4-bit quantization&lt;/strong&gt; (source: §IV-D). Yet average accuracy does not move — this is not &amp;ldquo;degradation&amp;rdquo; but &amp;ldquo;instability,&amp;rdquo; and the two call for different responses (source: §IV-F, §V).&lt;/p&gt;</description></item><item><title>SGD-KV: Summarization Guided KV Cache Compression</title><link>https://jaehun.me/en/posts/sgd-kv-summarization-guided-kv-cache-compression/</link><pubDate>Mon, 07 Sep 2026 00:00:00 +0900</pubDate><guid>https://jaehun.me/en/posts/sgd-kv-summarization-guided-kv-cache-compression/</guid><description>&lt;p&gt;&lt;a&#10; href="https://arxiv.org/abs/2609.03235v1"target="_blank"&#10; class="inline-flex items-center gap-1"&#10; &gt;Paper&lt;svg class="h-3 w-3 flex-shrink-0" id="external-link" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 3h6v6m-11 5L21 3m-3 10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/&gt;&lt;/svg&gt;&#10; &lt;/a&gt;&lt;/p&gt;&#10;&lt;h2 id="sgd-kv-finding-heads-that-are-good-at-summarizing-cuts-the-1m-token-kv-cache-by-up-to-75"&gt;SGD-KV: Finding &amp;lsquo;heads that are good at summarizing&amp;rsquo; cuts the 1M-token KV cache by up to 75%&lt;a href="#sgd-kv-finding-heads-that-are-good-at-summarizing-cuts-the-1m-token-kv-cache-by-up-to-75" class="heading-anchor" aria-label="Link to this section"&gt;&lt;svg class="h-4 w-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"&gt;&lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/&gt;&lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/a&gt;&lt;/h2&gt;&#10; &lt;blockquote&#10; class="border-primary bg-muted/30 hover:bg-muted/40 my-6 rounded-r-lg border-l-4 py-4 pr-4 pl-6 italic transition-all duration-200 ease-out hover:translate-x-1"&#10; &gt;&#10; &lt;div class="prose prose-sm max-w-none"&gt;&#10; &lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt; — Attention heads do not all do the same job. &lt;strong&gt;SGD-KV&lt;/strong&gt; pinpoints the &lt;strong&gt;summarization heads&lt;/strong&gt; — the ones responsible for the high-level information compression called &amp;lsquo;summarization&amp;rsquo; — with a diagnostic task, then hands out the KV cache budget in proportion to their scores. At contexts of up to 1 million (1M) tokens it cuts KV cache memory by up to &lt;strong&gt;75%&lt;/strong&gt; while beating existing head-level compression methods.&lt;/p&gt;</description></item><item><title>SMELT: Scaling Laws for Compute-Matched MoE Looped Transformers</title><link>https://jaehun.me/en/posts/smelt-scaling-laws-for-compute-matched-moe-looped-transformers/</link><pubDate>Mon, 07 Sep 2026 00:00:00 +0900</pubDate><guid>https://jaehun.me/en/posts/smelt-scaling-laws-for-compute-matched-moe-looped-transformers/</guid><description>&lt;p&gt;&lt;a&#10; href="https://arxiv.org/abs/2609.01343"target="_blank"&#10; class="inline-flex items-center gap-1"&#10; &gt;Paper&lt;svg class="h-3 w-3 flex-shrink-0" id="external-link" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 3h6v6m-11 5L21 3m-3 10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/&gt;&lt;/svg&gt;&#10; &lt;/a&gt;&lt;/p&gt;&#10;&lt;h2 id="smelt-scaling-laws-for-compute-matched-moe-loop-transformers"&gt;SMELT: Scaling Laws for Compute-Matched MoE Loop Transformers&lt;a href="#smelt-scaling-laws-for-compute-matched-moe-loop-transformers" class="heading-anchor" aria-label="Link to this section"&gt;&lt;svg class="h-4 w-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"&gt;&lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/&gt;&lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/a&gt;&lt;/h2&gt;&lt;h2 id="tldr"&gt;TL;DR&lt;a href="#tldr" class="heading-anchor" aria-label="Link to this section"&gt;&lt;svg class="h-4 w-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"&gt;&lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/&gt;&lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;Loop transformers scale depth by executing a layer block repeatedly, but most prior work fixed &lt;strong&gt;only the parameter count&lt;/strong&gt; and let FLOPs grow, racking up &amp;ldquo;free wins.&amp;rdquo; SMELT shows that looping is a pure architectural gain even while matching all three budgets — &lt;strong&gt;per-token FLOPs, total parameters, and KV cache&lt;/strong&gt; — simultaneously (source: §1). On the compute-optimal frontier it saves &lt;strong&gt;6.8–18.0% of training FLOPs&lt;/strong&gt;, and these gains come out larger downstream than validation loss predicts (source: §4.3, §5.1).&lt;/p&gt;</description></item><item><title>Why Gated DeltaNet Survives 4-Bit Quantization: NVFP4 W4A4 for the Recurrent Half of a Hybrid 27B LLM</title><link>https://jaehun.me/en/posts/why-gated-deltanet-survives-4-bit-quantization-nvfp4-w4a4-for-the-recurrent-half-of-a-hybrid-27b-llm/</link><pubDate>Mon, 07 Sep 2026 00:00:00 +0900</pubDate><guid>https://jaehun.me/en/posts/why-gated-deltanet-survives-4-bit-quantization-nvfp4-w4a4-for-the-recurrent-half-of-a-hybrid-27b-llm/</guid><description>&lt;p&gt;&lt;a&#10; href="https://arxiv.org/abs/2609.04098"target="_blank"&#10; class="inline-flex items-center gap-1"&#10; &gt;Paper&lt;svg class="h-3 w-3 flex-shrink-0" id="external-link" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 3h6v6m-11 5L21 3m-3 10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/&gt;&lt;/svg&gt;&#10; &lt;/a&gt;&lt;/p&gt;&#10;&lt;h2 id="the-recurrent-half-is-the-easy-to-quantize-half-why-gated-deltanet-survives-at-4-bits"&gt;The Recurrent Half Is the Easy-to-Quantize Half: Why Gated DeltaNet Survives at 4 Bits&lt;a href="#the-recurrent-half-is-the-easy-to-quantize-half-why-gated-deltanet-survives-at-4-bits" class="heading-anchor" aria-label="Link to this section"&gt;&lt;svg class="h-4 w-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"&gt;&lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/&gt;&lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt; — The 48 recurrent &lt;strong&gt;Gated DeltaNet (GDN)&lt;/strong&gt; layers of a hybrid 27B LLM (Qwen3.8-27B) have until now been protected at 8–16 bits, on the intuition that &amp;ldquo;error accumulates across the context.&amp;rdquo; This paper shows that intuition is &lt;strong&gt;exactly backwards&lt;/strong&gt;. &lt;code&gt;Minima&lt;/code&gt;, which quantizes &lt;strong&gt;all 496 layers — GDN gates included — to NVFP4 W4A4&lt;/strong&gt;, matches BF16 within seed noise on 6 benchmarks (5-task average −0.52) while also being the smallest (17.5 GiB) and the fastest at prefill (+14–19%). On top of that, a four-stage mechanistic study delivers an architecture-level account of &lt;strong&gt;why&lt;/strong&gt; — block scaling localizes outliers, gate nonlinearity compresses noise, and the delta rule actively erases state error.&lt;/p&gt;</description></item></channel></rss>