RepoJournal
Local LLMs Local LLMs
59 wires and counting

$ follow Local LLMs

Keep up with Local LLMs in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-09-16
stories 255

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

GPU backends converge on sparse attention as vLLM wires DeepSeek V4.1 indexer

By RepoJournal · Filed · About Local LLMs · Composed from the cited sources · methodology

Sparse attention and MoE decode paths landed across llama.cpp, vLLM, and SGLang today, while a silent ROCm sampling bug in SGLang's EAGLE verify path turned out to be ignoring temperature entirely.

[DSA] Wire DeepGEMM sparse MQA logits into the DeepSeek V4.1 indexer vllm-project/vllm

by JaredforReal

DeepSeek V4.1 consumer indexer layers used to score the whole context with dense MQA logits and mask everything outside the top candidate blocks; they now score only the blocks DeepGEMM 2.8's sparse MQA-logits kernels hand them. In one line that is the difference between attention work proportional to context length and work proportional to the candidate set.

[ROCm] Fix EAGLE spec-decode verify silently sampling greedy on HIP sgl-project/sglang

by xiaobochen-amd

SGLang's EAGLE spec-decode verify was committing argmax on ROCm regardless of temperature or top_p, because _is_hip sat next to is_all_greedy in the eagle_sample branch, and nothing in the log said so. At temp > 0 it degenerates into repetition loops; the fix restores real sampling on HIP.

vulkan: support sparse Flash Attention ggml-org/llama.cpp

by 0cc4m

Vulkan joins the sparse Flash Attention work tracked in the upstream CUDA effort, giving Vulkan backend users the same skipping of masked attention blocks rather than a full dense pass.

OpenVINO: optimize stateful decode and GPU MoE inference ggml-org/llama.cpp

by wine99

OpenVINO gains compressed expert fusion with grouped 8-bit requantization for GPU MoE, plus weight spilling and a configurable K-quant requant target via GGML_OPENVINO_REQUANT_KQUANT and GGML_OPENVINO_SPILL_DIR. Stateful KV-cache handling now covers sliding-window and per-layer head layouts, and cacheless encoder models run on NPU.

[Perf][Kernel] Add sampled filtering for persistent top-k vllm-project/vllm

by mgoin

Sampled filtering estimates a cutoff, compacts survivors in shared memory, and finishes exact FP32 selection on those candidates, which is what makes long sparse-indexer decode top-k tractable. It only kicks in above 64 rows and at actual valid length >= 98,304 for k=512 (or >= 65,536 for k=1024/2048) with at least 144 KiB of opt-in shared memory; outside those bounds, full-row selection.

[AMD] GLM-5.2 NextN: cast draft fused MoE to per-channel FP8 sgl-project/sglang

by jiejingzhangamd

GLM-5.2's layer 78 MTP draft reads its routed and shared experts in bf16 from the MXFP4 checkpoint, 71.7 MB per expert against 19.0 MB for a decoder layer, once per draft step. Casting the draft fused MoE to per-channel FP8 removes that repetition from bandwidth-bound decode.

fix(npu): fix hybrid KV transfer with PP prefill in PD disaggregation sgl-project/sglang

by JinyanYi

Kimi-K3's HybridLinearKVPool only gives KV buffers to sparse full-attention layers and Ascend exposes multiple buffer groups per layer, so positional PP slicing picked the wrong ones; Ascend hybrid-linear PP KV transfer now routes through global layer-id pairing with Mamba state slot sizes validated after pairing.

OpenVINO: optimize stateful decode and GPU MoE inference (#28638) ggml-org/llama.cpp

by Zijun Yu

llama.cpp's OpenVINO backend picked up stateful decode fixes for Gemma-4 per-layer head sizes, structural sliding-window classification on interleaved-SWA models, and a fix for a GPU/NPU failing POOL_2D case.

Quick answers

What shipped in Local LLMs on September 16, 2026?
Sparse attention and MoE decode paths landed across llama.cpp, vLLM, and SGLang today, while a silent ROCm sampling bug in SGLang's EAGLE verify path turned out to be ignoring temperature entirely. In total, 122 commits, 122 pull requests, and 11 releases landed.
Who contributed to Local LLMs on September 16, 2026?
15 developers shipped this update, including dhiltgen, MohamedElashri, Zijun Yu, 0cc4m, lhez, JaredforReal, mgoin, and zixi-qi, and 7 more.
What were the notable Local LLMs updates?
[DSA] Wire DeepGEMM sparse MQA logits into the DeepSeek V4.1 indexer, [ROCm] Fix EAGLE spec-decode verify silently sampling greedy on HIP, and vulkan: support sparse Flash Attention.