RepoJournal
Local LLMs Local LLMs
36 wires and counting

$ follow Local LLMs

Keep up with Local LLMs in about 3 minutes a day: 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 morning, this isn't your newsletter.

One email a day. Unsubscribe in one click.

$ status

wire 2026-08-28
stories 249

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

LLAMA.CPP UNLEASHES QWEN3.8-FLASH-NEXT SUPPORT

By RepoJournal · Filed · About Local LLMs

The biggest local-model news in weeks: llama.cpp just landed draft support for Qwen3.8-Flash-Next, and it ships with three quantizer fixes the model needs.

Llama.cpp's draft PR adds the full Qwen3.8-Flash-Next stack: converter, text graph, sparse attention, vision, and the quantizer fixes, but it is held back because "the weights are not public yet" [1]. While you wait, two supporting patches are worth grabbing now: quantize caps working memory to 8GB by default to stop OOM on big tensors [2], and the new TENSOR_READ_LAZY flag lets PLE and engrams embeddings stream from disk instead of loading into RAM [3]. On the AMD side, SGLang shipped a gfx950 ASM FMHA kernel that rescues Qwen3.5 prefill, which was running at "roughly 15% of the GPU's FP8 peak" on MI355X [4], and the same repo enables the aiter MLA asm path on Kimi K3 by padding attention heads for TP=8 [5]. vLLM squashed a parser bug where a stale </think> from history broke reasoning detection on multi-turn prompts [6], and fixed a race condition in fused groupwise RMSNorm quantization [7]. Ollama released v0.33.2 overnight, restoring system dark mode and syncing macOS app handoff [8], but the real headline there is the Claude Desktop picker now includes signed-in cloud models beyond recommendations [9].

Action items

References

  1. [1] model: add Qwen3.8-Flash-Next (qwen4exp) ↗ ggml-org/llama.cpp
  2. [2] quantize: cap working memory size to avoid loading big tensors onto RAM ↗ ggml-org/llama.cpp
  3. [3] llama: model_loader: add TENSOR_READ_LAZY ↗ ggml-org/llama.cpp
  4. [4] [AMD] Qwen3.5 ASM FMHA chunked-prefill context attention ↗ sgl-project/sglang
  5. [5] [AMD] Enable aiter mla asm path through padding attn heads for Kimi K3 ↗ sgl-project/sglang
  6. [6] [Bugfix][Parser] Scope reasoning-end detection to the current turn via turn-boundary tokens ↗ vllm-project/vllm
  7. [7] [Bugfix] Remove race in fused groupwise RMSNorm quantization (#54111) vllm-project/vllm
  8. [8] v0.33.2 ↗ ollama/ollama
  9. [9] app: list account cloud models for Claude ↗ ollama/ollama

Quick answers

What shipped in Local LLMs on August 28, 2026?
The biggest local-model news in weeks: llama.cpp just landed draft support for Qwen3.8-Flash-Next, and it ships with three quantizer fixes the model needs. In total, 119 commits, 119 pull requests, and 11 releases landed.
Who contributed to Local LLMs on August 28, 2026?
16 developers shipped this update, including dhiltgen, hoyyeva, github-actions[bot], danielhanchen, ngxson, shenron0101, MatthewBonanni, and Xarbirus, and 8 more.
What were the notable Local LLMs updates?
model: add Qwen3.8-Flash-Next (qwen4exp), quantize: cap working memory size to avoid loading big tensors onto RAM, and llama: model_loader: add TENSOR_READ_LAZY.