<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[AMD R9700（RDNA4 / gfx1201）單卡 Qwen3.8 27b llama.cpp 測試數據]]></title><description><![CDATA[<h1>* AMD R9700（RDNA4 / gfx1201）單卡：llama.cpp Vulkan MTP 去審查實測</h1>
<blockquote>
<p dir="auto">參考 <a href="https://lcz.me/topic/1484">BEN LIN 前輩《雙 R9700 單宿主 SGLang + llama.cpp MTP 同機實測》</a> 的方法學整理。<br />
<strong>本機：單張 AMD R9700 32GB（RDNA4 / gfx1201）跑「去審查（abliterated）」Qwen3.8-27B + llama.cpp Vulkan MTP。</strong><br />
4090 留給 ComfyUI，全程不參與推理。</p>
</blockquote>
<p dir="auto"><strong>一句話</strong>：原版Q4_K_M去審查(文中現役指的是這個)換上 huihui <code>UD-DW-Q4_K_M</code>（去審查 + Unsloth Dynamic + 內嵌 MTP）後，R9700 實測在 math 上接受率 <strong>70.8 → 78.8%（+8pp）</strong>、速度 <strong>43.9 → 54.7 t/s（+25%）</strong>；其餘內容持平或小勝。<strong>這是「去審查」前提下，現役（JonathanColetti + 外部 Q8_0 rafter）的明確升級。</strong></p>
<hr />
<h2><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/26a0.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--warning" style="height:23px;width:auto;vertical-align:middle" title="⚠" alt="⚠" />️ 一句話看懂數據（先看這個）</h2>
<p dir="auto"><strong>表格數字看起來跳動很大，是因為「測的內容 prompt 重複度不同」，不是卡或模型不穩。</strong> 分成兩個統一基準看就一致了：</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>基準</th>
<th>內容</th>
<th>代表</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>基準A：重複句</strong>（prompt 被 cache 壓縮成 4 token）</td>
<td>code / short / prose / math</td>
<td>數字偏低（50~59%）</td>
</tr>
<tr>
<td><strong>基準B：長獨特 prefill</strong>（401 token 非重複）</td>
<td>單一長 code</td>
<td>數字偏高（64~73%）</td>
</tr>
</tbody>
</table>
<p dir="auto"><strong>兩種基準下，huihui 都比現役好或持平。這是穩健結論。</strong></p>
<hr />
<h2>1. 硬體與環境</h2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>類別</th>
<th>規格</th>
</tr>
</thead>
<tbody>
<tr>
<td>CPU</td>
<td>（Ai-PC）Intel 平台，僅負責排程與 tokenizer，不構成瓶頸</td>
</tr>
<tr>
<td>GPU</td>
<td>AMD Radeon AI PRO R9700（RDNA4，gfx1201）<strong>32GB</strong> VRAM（實測可用 <strong>~31.9GB</strong>）</td>
</tr>
<tr>
<td>另一張卡</td>
<td>NVIDIA RTX 4090（實測 48.0GB total / 47.4GB free）— 留給 ComfyUI，<strong>不參與推理</strong></td>
</tr>
<tr>
<td>Vulkan 驅動</td>
<td>Mesa radv（<code>radv is not conformant, testing use only</code> 警告為正常）</td>
</tr>
<tr>
<td>引擎</td>
<td>llama.cpp 主線（認 <code>-md</code> / <code>--spec-type draft-mtp</code>）</td>
</tr>
<tr>
<td>主模型</td>
<td>huihui <code>Qwen3.8-27B-abliterated-UD-DW-Q4_K_M.gguf</code> 16.55G</td>
</tr>
<tr>
<td>Context</td>
<td>131072（128K）</td>
</tr>
<tr>
<td>投機解碼</td>
<td><strong>內嵌 MTP</strong>（<code>--spec-type draft-mtp</code>，免 <code>-md</code> 外部 rafter），n_max=5</td>
</tr>
<tr>
<td>作業系統</td>
<td>Ubuntu（遠端 Ai-PC）</td>
</tr>
</tbody>
</table>
<p dir="auto"><strong>關鍵背景</strong>：gfx1201 是 radv（RDNA4）。<strong>兩張卡共存時，<code>-dev Vulkan0</code> 會自動選到列表第一張——通常是 NVIDIA 4090</strong>。必須用 <code>VK_ICD_FILENAMES</code> 鎖定 radv，4090 才不可見、抽不到：</p>
<pre><code class="language-bash">VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/radeon_icd.json
</code></pre>
<hr />
<h2>2. 現役 service 啟動（port 8080，systemd）</h2>
<pre><code class="language-bash">llama-server \
  -m /home/powerjun/models/Huihui/Huihui-Qwen3.8-27B-abliterated-UD-DW-Q4_K_M.gguf \
  --mmproj /home/powerjun/models/mmproj-F16.gguf \
  -c 131072 \
  -ngl 99 \
  -fa on \
  -t 20 \
  -ctk q5_1 \
  -ctv q4_0 \
  -b 2048 \
  -np 1 \
  --reasoning auto \
  --spec-type draft-mtp \
  --spec-draft-n-max 5 \
  -dev Vulkan0 \
  --host 0.0.0.0 \
  --port 8080
</code></pre>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>參數</th>
<th>值</th>
<th>為什麼</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>-m</code></td>
<td>huihui <code>UD-DW-Q4_K_M</code></td>
<td>去審查 + Unsloth Dynamic + 內嵌 MTP</td>
</tr>
<tr>
<td><code>-c</code></td>
<td><code>131072</code></td>
<td>128K 上下文（32G 塞得下）</td>
</tr>
<tr>
<td><code>-ngl</code></td>
<td><code>99</code></td>
<td>全層 offload GPU</td>
</tr>
<tr>
<td><code>-fa on</code></td>
<td><code>--flash-attn</code></td>
<td>加速 attention</td>
</tr>
<tr>
<td><code>-ctk/-ctv</code></td>
<td><code>q5_1/q4_0</code></td>
<td>KV 量化省顯存（實測對 huihui 接受率無損 ±1pp）</td>
</tr>
<tr>
<td><code>--spec-type</code></td>
<td><code>draft-mtp</code></td>
<td><strong>內嵌 MTP 頭</strong>（讀主模型自帶的 nextn 頭，免 <code>-md</code>）</td>
</tr>
<tr>
<td><code>--spec-draft-n-max</code></td>
<td><code>5</code></td>
<td>投機最多 5 個草稿 token</td>
</tr>
<tr>
<td><code>-dev</code></td>
<td><code>Vulkan0</code></td>
<td>配 <code>VK_ICD_FILENAMES</code> 鎖 R9700</td>
</tr>
<tr>
<td><code>--host</code></td>
<td><code>0.0.0.0</code></td>
<td>對外服務</td>
</tr>
<tr>
<td><code>--reasoning</code></td>
<td><code>auto</code></td>
<td>保留 think/推理塊</td>
</tr>
</tbody>
</table>
<p dir="auto"><strong>無 <code>-md</code></strong>：huihui 主模型內嵌 MTP 頭（<code>blk.64.nextn.*</code>），<code>--spec-type draft-mtp</code> 直接啟用，無需外部 drafter。</p>
<hr />
<h2>3. R9700 實測對照（同矩陣，4 內容 × 2 次均值、暖機後）</h2>
<p dir="auto">方法：temp=0、decode ≥512（math 300）、每格 ≥2 次取均值、暖機後測、讀 server timings（predict_per_second + draft_n_accepted/draft_n 算接受率）。內容型別分開報。</p>
<h3>3.1 三欄對照：現役 vs huihui vs BEN LIN（基準A：重複句 prompt）</h3>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>內容</th>
<th>現役 Uncensored+Q8_0</th>
<th>huihui 內嵌MTP</th>
<th>BEN LIN 原文</th>
<th>結論</th>
</tr>
</thead>
<tbody>
<tr>
<td>code（長）</td>
<td>51.9% / 37.0 t/s</td>
<td>50.9% / 39.2 t/s</td>
<td>97.9% / 64.9 t/s</td>
<td>平；huihui tps 略高</td>
</tr>
<tr>
<td>short_code</td>
<td>56.5% / 37.9</td>
<td>59.1% / 40.6</td>
<td>90.5% / 90.5</td>
<td><strong>huihui 勝現役</strong></td>
</tr>
<tr>
<td>prose</td>
<td>43.5% / 32.2</td>
<td>44.4% / 34.3</td>
<td>24.9% / 19.4</td>
<td><strong>huihui 勝現役</strong></td>
</tr>
<tr>
<td>math</td>
<td>70.8% / 43.9</td>
<td><strong>78.8% / 45.6</strong></td>
<td>71.9% / 37.0</td>
<td><strong>huihui 大勝現役 +8pp</strong></td>
</tr>
</tbody>
</table>
<blockquote>
<p dir="auto">※ BEN LIN 為外部 MTP + 196K ctx，<strong>基準不同僅參考</strong>——它的 code/short 高達 97.9 / 90.5 是「外部同源 rafter」的系統級優勢；huihui 用內嵌 MTP 追不到，但已穩勝現役。</p>
</blockquote>
<h3>3.2 切換後正式服務（128K ctx）實測 — huihui 內嵌MTP + KV q5_1/q4_0</h3>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>內容</th>
<th>accept</th>
<th>t/s</th>
<th>對比切換前現役 t/s</th>
</tr>
</thead>
<tbody>
<tr>
<td>code（長）</td>
<td>49.2%</td>
<td>40.4</td>
<td>37.0（+9%）</td>
</tr>
<tr>
<td>short_code</td>
<td>57.6%</td>
<td>43.8</td>
<td>37.9（+16%）</td>
</tr>
<tr>
<td>prose</td>
<td>44.4%</td>
<td>37.2</td>
<td>32.2（+16%）</td>
</tr>
<tr>
<td>math</td>
<td><strong>78.8%</strong></td>
<td><strong>54.7</strong></td>
<td>43.9（<strong>+25%</strong>）</td>
</tr>
</tbody>
</table>
<hr />
<h2>4. KV 量化專項（huihui 內嵌 MTP）</h2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>KV</th>
<th>code</th>
<th>short_code</th>
<th>prose</th>
<th>math</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>q8_0/q8_0</code></td>
<td>50.9/39.2</td>
<td>59.1/40.6</td>
<td>44.4/34.3</td>
<td>78.8/45.6</td>
</tr>
<tr>
<td><code>q5_1/q4_0</code></td>
<td>49.2/37.7</td>
<td>57.6/40.0</td>
<td>44.9/34.5</td>
<td>78.8/43.8</td>
</tr>
</tbody>
</table>
<p dir="auto"><strong>結論：huihui 內嵌 MTP 對 KV 量化幾乎免疫（±1pp 隨機波動）。選 <code>q5_1/q4_0</code> 純粹省顯存塞 128K ctx，無精度代價。</strong></p>
<blockquote>
<p dir="auto">注意：這與 BEN LIN「KV 傷接受率（98→95）」不同——那是對<strong>外部 rafter</strong> 而言；<strong>內嵌 MTP</strong> 對 KV 量化不敏感。</p>
</blockquote>
<hr />
<h2>5. 歷史 rafter 交換（同主模型 Uncensored，長 code 條件）</h2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Rafter</th>
<th>accept</th>
<th>t/s</th>
<th>結論</th>
</tr>
</thead>
<tbody>
<tr>
<td>同源 <code>draft-Q8_0</code>（現役）</td>
<td>~72–81%</td>
<td>40–51</td>
<td>Q8_0 貼主模型浮點基準最準</td>
</tr>
<tr>
<td>同源 <code>draft-Q4_0</code></td>
<td>42.6%</td>
<td>35</td>
<td>位寬不對稱→猜不中</td>
</tr>
<tr>
<td>a4lg <code>MTP-ONLY</code></td>
<td>50–67%</td>
<td>35</td>
<td>異源頭嫁接→崩</td>
</tr>
</tbody>
</table>
<blockquote>
<p dir="auto">※ 歷史 72–81% 是**長 code（prefill 長）**條件，跟基準A的 51.9% <strong>不同 prompt，不可直接比</strong>——這正是數字看起來跳的原因。</p>
</blockquote>
<hr />
<h2>6. BEN LIN 參考基準（unsloth UD-Q4_K_XL + 外部 MTP + KV q5_1/q4_0, 196K）</h2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>內容</th>
<th>accept</th>
<th>t/s</th>
</tr>
</thead>
<tbody>
<tr>
<td>code 改寫</td>
<td><strong>97.9%</strong></td>
<td><strong>64.9</strong></td>
</tr>
<tr>
<td>短 code</td>
<td>90.5%</td>
<td>90.5</td>
</tr>
<tr>
<td>prose 散文</td>
<td>24.9%</td>
<td>19.4</td>
</tr>
<tr>
<td>math 思考</td>
<td>71.9%</td>
<td>37.0</td>
</tr>
</tbody>
</table>
<hr />
<h2>7. 踩坑補充</h2>
<p dir="auto"><strong>雙卡必須鎖 R9700</strong>：<code>-dev Vulkan0</code> 會選到列表第一張（NVIDIA 4090），導致模型載到 4090、數據失真。<strong>一定要 <code>VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/radeon_icd.json</code> 鎖 radv</strong>，並確認 <code>nvidia-smi</code> memory.used 維持低值（本文全程 532MiB）。</p>
<p dir="auto"><strong>內嵌 MTP 免 <code>-md</code></strong>：<code>--spec-type draft-mtp</code> 直接讀主模型 <code>blk.64.nextn.*</code> 內嵌頭，無需外部 drafter。載入日誌出現 <code>creating MTP draft context against the target model</code> 即成功。</p>
<p dir="auto"><strong>接受率對 prompt 重複度敏感</strong>：重複句 prompt 被 cache 壓縮成 4 token → accept 偏低（50~59%）；獨特長 prefill（401 token）→ accept 可達 64~73%。<strong>對比時要控制 prompt 基準一致。</strong></p>
<p dir="auto"><strong>128K ctx + KV q5_1/q4_0 塞進 32G</strong>：實測 R9700 15.56GB（huihui+KV），無 OOM。若用 q8_0 KV 可能頂爆。</p>
<p dir="auto"><strong>硬體真實數字</strong>：R9700 可用 ~31.9GB（非 34.2，bytes 換算 + MMU/保留區扣減）；4090 可用 47.4GB（free，非 total 的 48.0G）。</p>
<hr />
<h2>8. 為什麼 huihui 比較厲害（原理分析）</h2>
<p dir="auto">huihui 的「厲害」其實不是 tps 大幅飆升，而是<strong>投機解碼的「接受率」明顯更高</strong>（尤其 math +8pp）。拆開來看是三個原因疊加：</p>
<h3>8.1 內嵌 MTP 頭「同源」→ 接受率高（核心）</h3>
<p dir="auto">這是最大差異。huihui 的 GGUF <strong>主模型裡直接內嵌了 MTP 頭</strong>（<code>blk.64.nextn.*</code>），<code>--spec-type draft-mtp</code> 直接讀它。</p>
<ul>
<li><strong>huihui</strong>：草稿模型 = 主模型自己的 MTP 頭 → <strong>預測方向跟主模型 100% 同權重同源</strong>，草稿猜的 token 與主模型真正要輸出的高度一致 → accept 高（math 78.8%）。</li>
<li><strong>現役</strong>：靠<strong>外部</strong> <code>draft-Q8_0</code> rafter（獨立 draft 模型）→ 再怎麼同基底也是另一套權重，猜測方向跟主模型有偏差 → 命中率較低（math 70.8%）。</li>
</ul>
<p dir="auto"><strong>投機解碼的接受率，取決於「草稿模型與主模型的契合度」。內嵌頭 = 絕對契合；外部 rafter = 不同程度離散。</strong></p>
<h3>8.2 Unsloth Dynamic（UD）量化 → 主模型本身更準</h3>
<p dir="auto">huihui 是 <code>UD-DW-Q4_K_M</code>，「Dynamic」是 Unsloth 的動態量化——<strong>同一 Q4 位寬下，把預算偏向敏感層</strong>，比一般 Q4_K_M 保留更多關鍵層精度。因此主模型本體預測品質更高，草稿更容易猜中。</p>
<h3>8.3 對 KV 量化「免疫」→ 能省顯存不犧牲精度</h3>
<ul>
<li>現役 + Q8_0 rafter：換 KV q5_1/q4_0 會<strong>傷接受率</strong>（BEN LIN 98→95 那種）。</li>
<li>huihui 內嵌 MTP：KV 換 q5_1/q4_0 → <strong>接受率 ±1pp 幾乎不動</strong>。</li>
</ul>
<p dir="auto">這讓它能「<strong>用省一半顯存的 KV 還不犧牲精度</strong>」→ 128K 塞進 32G 靠的就是這個。</p>
<h3>8.4 誠實預期：它追不到 BEN LIN 的 97.9%</h3>
<p dir="auto">huihui 用內嵌 MTP（主模型自帶），機制上就追不到「<strong>為特定主模型訓練的同源外部 rafter</strong>」。BEN LIN 那套是「Unsloth 原始版 + 外部專用 MTP-Q4_0 rafter + 196K + 長獨特 prefill」的<strong>系統級配對</strong>，外部 rafter 可針對主模型優化到極致。</p>
<p dir="auto"><strong>總結</strong>：huihui 勝現役 = <strong>內嵌同源 MTP（接受率高）+ UD 量化（模型自身準）+ KV 免疫（能塞 128K）</strong> 三者疊加。但它仍不是 BEN LIN 那種「外部專用 rafter」的頂配。</p>
<hr />
<h2>9. 結論</h2>
<ol>
<li><strong>破口 = huihui UD 系列</strong>：abliterated（去審查）+ Unsloth Dynamic + 保留 MTP 頭，三條件同時滿足。</li>
<li><strong>huihui 內嵌 MTP 在 R9700 全面持平或小勝現役</strong>，math +8pp 最明顯；tps 略高。</li>
<li><strong>切換後正式服務（128K）提升有感</strong>：math tps <strong>+25%</strong>（43.9→54.7）、接受率 +8pp；其餘 +9~16% tps。</li>
<li><strong>KV 量化對 huihui 幾乎無影響</strong>（q8_0 vs q5_1/q4_0 ±1pp）。</li>
<li><strong>接受率受 prompt 重複度影響大</strong>：重複句 50~59%，長獨特 prefill 64~73%。</li>
<li><strong>BEN LIN 97.9% 是系統級配對</strong>（外部同源 MTP + UD 原始 + KV q5_1/q4_0 + 196K）。huihui 用<strong>內嵌 MTP</strong>（非外部 rafter）達不到外部 rafter 的 97.9%，但已勝現役。</li>
<li><strong>鐵律</strong>：R9700 靠 <code>VK_ICD_FILENAMES</code> 鎖定；4090 全程 532MiB 不參與推理（留 ComfyUI）。</li>
</ol>
<hr />
<h2>10. 方法學</h2>
<p dir="auto">所有 t/s 皆 decode 穩態（非峰值）。接受率 = <code>draft_n_accepted / draft_n × 100</code>（讀 server timings，非掐表）。基準 A 用重複句 prompt（4 內容 × 2 次均值、暖機後）；切換後正式服務用 128K ctx。方法學參考 BEN LIN 篇 §8（temp=0、內容型別分開報、讀 timings 非掐表）。</p>
<p dir="auto">原始測試腳本：<code>[bench_longprefill.py](https://upload.lcz.me/uploads/a4fed611-a6eb-49db-b10a-ffcf7723d6f5.py) [bench_matrix.py](https://upload.lcz.me/uploads/bfc3c6d4-f02c-4304-b156-498c00ca4c9d.py) </code>。<br />
<img src="https://upload.lcz.me/uploads/e5c9c0ce-590e-4bd6-bfa9-382b24b351bb.png" alt="01_平台對照.png" class=" img-fluid img-markdown" /><br />
<img src="https://upload.lcz.me/uploads/6842e3a1-8e88-4313-a35b-5cda56bb9326.png" alt="02_切換前後.png" class=" img-fluid img-markdown" /><br />
<img src="https://upload.lcz.me/uploads/a5e0279c-c043-456d-b310-af7440d443c5.png" alt="03_KV量化影響.png" class=" img-fluid img-markdown" /><br />
<img src="https://upload.lcz.me/uploads/31cbc725-eed5-4921-871d-93cefbc5cd99.png" alt="04_rafter對比.png" class=" img-fluid img-markdown" /><br />
<img src="https://upload.lcz.me/uploads/e7445d0a-53e5-4be6-b2e1-d2b829014005.png" alt="05_BENLIN參考.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">PS:小弟第一次發文 如有做不好還請見諒 <img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f647.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--bow" style="height:23px;width:auto;vertical-align:middle" title=":bow:" alt="🙇" /> <img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f647.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--bow" style="height:23px;width:auto;vertical-align:middle" title=":bow:" alt="🙇" /> 折騰快14個小時 前面試了sglang 那速度20t/s 沒設定好甚至不到10t/s(沒開cuda什麼的?)折騰一天 找不到過程了  就是整理了下實測數據分享 目前打算是4090 48g跑圖影(comfyui) r9700 負責劇本提示詞及重複作業(agent) 雲端輔助(api) 小弟我還有一張5070 ti目前還沒有想到能幹嘛</p>
]]></description><link>https://lcz.me/topic/1514</link><generator>RSS for Node</generator><lastBuildDate>Mon, 07 Sep 2026 16:04:22 GMT</lastBuildDate><atom:link href="https://lcz.me/topic/1514.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 05 Sep 2026 21:21:15 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to AMD R9700（RDNA4 / gfx1201）單卡 Qwen3.8 27b llama.cpp 測試數據 on Sat, 05 Sep 2026 22:03:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kos-or" aria-label="Profile: kos-or">@<bdi>kos-or</bdi></a> 我顺手查了下两位作者的底细，可证实的信息：</p>
<p dir="auto"><strong>HauhauCS vs huihui：同量级头部，路线略不同</strong></p>
<ul>
<li>huihui 这个 abliterated 仓库 2.15M 下载；HauhauCS 的 Qwen3.8-27B-Uncensored-HauhauCS-Aggressive-MTP-GGUF 也有 1.53M 下载（他家 Qwen3.6-35B-A3B 更高 1.66M）。两边都不是小作坊。</li>
<li>路线差异：huihui 主打 abliterated（abliteration 去审查）+ 保留 MTP 头 + 被烧层提权到 Q8_0/BF16（K_L 那套）；HauhauCS 主打 Aggressive/Balanced 两档 uncensored，MTP 也是招牌。</li>
<li>谁"表现较佳"没有普适答案——同模型同量化，直接照 Jun 这篇的方法学（temp=0、分内容型别、读 server timings 算接受率、暖机后多轮均值）各跑一轮矩阵就有结论，比看下载量靠谱。</li>
</ul>
<p dir="auto"><strong>DW 不是新技术，是 huihui 新一批更克制去审查的系列标记</strong><br />
从模型卡能证实的：UD-DW 是 huihui 最新一批（update 4）加的系列，底子是 unsloth 官方 UD GGUF（Unsloth Dynamic 动态量化，同 bit 下预算偏向敏感层），huihui 拿来做 abliteration。跟同仓库不带 DW 的 UD 系列比，差别是<strong>烧的层更少</strong>：DW 版只 ablate 23-51 层，旧 UD 版烧 18-51 层，保留更多原版能力；MTP 和视觉头都没动（Jun 用 --spec-type draft-mtp 直接读到内嵌 blk.64.nextn.* 头也是佐证）。<br />
所以 "UD-DW-Q4_K_M" = unsloth 动态量化底 + 部分层去审查 + 内嵌 MTP 的 16.55G 单文件。"DW" 三个字母的官方全称模型卡里没展开，别过度解读成新量化技术。</p>
]]></description><link>https://lcz.me/post/16078</link><guid isPermaLink="true">https://lcz.me/post/16078</guid><dc:creator><![CDATA[Xiaote]]></dc:creator><pubDate>Sat, 05 Sep 2026 22:03:53 GMT</pubDate></item><item><title><![CDATA[Reply to AMD R9700（RDNA4 / gfx1201）單卡 Qwen3.8 27b llama.cpp 測試數據 on Sat, 05 Sep 2026 21:56:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kos-or" aria-label="Profile: kos-or">@<bdi>kos-or</bdi></a> 那是早期，现在很多算子缺失都补上了，差距还是有，但没那么夸张。</p>
]]></description><link>https://lcz.me/post/16076</link><guid isPermaLink="true">https://lcz.me/post/16076</guid><dc:creator><![CDATA[terry]]></dc:creator><pubDate>Sat, 05 Sep 2026 21:56:56 GMT</pubDate></item><item><title><![CDATA[Reply to AMD R9700（RDNA4 / gfx1201）單卡 Qwen3.8 27b llama.cpp 測試數據 on Sat, 05 Sep 2026 21:51:35 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jun" aria-label="Profile: Jun">@<bdi>Jun</bdi></a> <a href="/post/16073">said</a>:</p>
<p dir="auto">BEN LIN 為外部 MTP + 196K ctx，基準不同僅參考——它的 code/short 高達 97.9 / 90.5 是「外部同源 rafter」的系統級優勢；huihui 用內嵌 MTP 追不到，但已穩勝現役。</p>
</blockquote>
<p dir="auto">這樣不錯, Coding 時 直接調 "Ben Lin"版,</p>
<blockquote>
<p dir="auto">主模型	huihui Qwen3.8-27B-abliterated-UD-DW-Q4_K_M.gguf 16.55G</p>
</blockquote>
<p dir="auto">我看大家都用huihui, 也有一個HauhauCS, huihui 表現較佳嗎？<br />
第一次看到 DW 又是新的技術...</p>
<blockquote>
<p dir="auto">4090 留給 ComfyUI，全程不參與推理。</p>
</blockquote>
<p dir="auto">ComfyUI 我只使用過N卡, 據說生圖片和影片比A卡快 3~4 倍</p>
]]></description><link>https://lcz.me/post/16074</link><guid isPermaLink="true">https://lcz.me/post/16074</guid><dc:creator><![CDATA[kos or]]></dc:creator><pubDate>Sat, 05 Sep 2026 21:51:35 GMT</pubDate></item></channel></rss>