PulseAugur
实时 06:56:27
English(EN) I reverse-engineered an NPU vendor's engine format (int8 weights stored as two nibble planes) to run GGUFs with no model conversion — now 1.5× faster than the vendor's own runtime

开发者逆向工程NPU格式,将GGUF模型速度提升1.5倍

一位开发者逆向工程了一个NPU供应商的引擎格式,使得GGUF模型能够以比供应商自己的运行时快1.5倍的速度运行。这是通过解码供应商专有的int8权重存储为两个尼布尔平面,并在加载时将GGUF权重直接修补到预编译的引擎中实现的。开发者还发现并修复了批量预填充路径的一个问题,显著提高了提示处理速度,并实现了与CPU参考完全相同的字节输出。 AI

影响 通过优化模型加载和处理,在特定的NPU硬件上实现更快的推理。

排序理由 该条目描述了针对特定硬件/软件组合的技术优化和逆向工程工作,而不是新的模型发布或重大的行业性事件。

在 r/LocalLLaMA 阅读 →

AI 生成摘要 · Google Gemini · 来自 1 个来源。 我们如何撰写摘要 →

开发者逆向工程NPU格式,将GGUF模型速度提升1.5倍

本文如何被排名

Signal score
8 / 100
Composite score across the factors below. Higher = stronger signal that this story matters right now.
Newsworthiness bucket
Tool
该条目描述了针对特定硬件/软件组合的技术优化和逆向工程工作,而不是新的模型发布或重大的行业性事件。
Source corroboration
Single-source cluster
Only one publisher covered this so far. Single-source stories can still rank when the publisher is high-authority, but they lack cross-source corroboration.
Topics
infra, other
Editorial topic classification. Feeds into how the story surfaces on /topic/<slug> hub pages and into the per-entity coverage mix.
AI-industry relevance
High
Clearly on-topic for AI-industry coverage.
Story freshness
Breaking (< 6h)
Fresh story with cross-source coverage still developing. Ranking may shift as more sources report.

完整方法见我们的编辑标准

报道来源 [1]

  1. r/LocalLLaMA TIER_1 English(EN) · /u/woolcoxm ·

    我逆向工程了一个NPU供应商的引擎格式(int8权重存储为两个四位数组),实现了无需模型转换即可运行GGUF——现在速度比供应商自己的运行时快1.5倍

    <!-- SC_OFF --><div class="md"><p>I've been running Qwen3-0.6B on the M5Stack LLM-8850 card (Axera AX8850 NPU, 24 TOPS, 8GB LPDDR4x) hosted by a Raspberry Pi 5 — as a llama.cpp backend.</p> <p>The problem: the vendor stack requires converting every model through their compiler, a…