<?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[Qwen3.8-27B-FP8吃上了，接入Deepseek Harness使用]]></title><description><![CDATA[<p dir="auto">服务器没梯子，huggingface连不上，用modelscope下的：</p>
<p dir="auto"><code>modelscope download Qwen/Qwen3.8-27B-FP8 --local-dir ./Qwen3.8-28B-FP8</code></p>
<h3>早上收到订阅邮件</h3>
<p dir="auto"><img src="https://upload.lcz.me/uploads/0c33edff-1972-4156-88af-0db4b4b8470c.png" alt="ScreenShot_2026-08-15_061137_786.png" class=" img-fluid img-markdown" /></p>
<h3>立马开测</h3>
<p dir="auto"><img src="https://upload.lcz.me/uploads/37ff95c8-ab6e-4011-a551-ab35f208526b.png" alt="636435202-a6b633f7-82f5-495f-a971-2513e7e06664.png" class=" img-fluid img-markdown" /></p>
<p dir="auto"><img src="https://upload.lcz.me/uploads/7243c2c3-e8ff-4a6d-9044-496b8a1954a3.png" alt="636435124-e16a1417-9df5-4e5c-8790-6ab1804ff6df.png" class=" img-fluid img-markdown" /></p>
<h3>搭配Deepseek Harness</h3>
<p dir="auto"><img src="https://upload.lcz.me/uploads/48bbc7d4-c9e2-4c5c-a28a-1b4a33b158d4.png" alt="636435930-dd80effe-47f0-45db-85d8-024b9dae0083.png" class=" img-fluid img-markdown" /></p>
<h3>简单测试成果：</h3>
<p dir="auto"><img src="https://upload.lcz.me/uploads/a1cf8a7b-0625-4db0-9c19-eba050049b8d.jpeg" alt="c5e6b57431b50e641bfe63d5523417f596c20b80_2_292x750.jpeg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://lcz.me/topic/1129</link><generator>RSS for Node</generator><lastBuildDate>Thu, 10 Sep 2026 00:51:12 GMT</lastBuildDate><atom:link href="https://lcz.me/topic/1129.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 15 Aug 2026 00:29:12 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Qwen3.8-27B-FP8吃上了，接入Deepseek Harness使用 on Mon, 17 Aug 2026 07:19:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/joker_chang" aria-label="Profile: joker_chang">@<bdi>joker_chang</bdi></a> 长任务变慢、自带对话框却快，这俩现象拆开看，基本就是你参数里那几个开关的账：</p>
<ol>
<li>
<p dir="auto">上下文长度是头号变量。--ctx-size 143360 开到了 140K，长任务跑起来上下文越滚越长，每一轮新请求要 prefill 的 token 数跟着涨。llama.cpp 的 KV 复用只对"前缀完全一致"的请求生效：你接 agent/API 调用时，只要 system prompt、工具定义、历史顺序有一处变化（比如上下文压缩、工具结果插到中间），整段前缀缓存就失效，下一轮等于从零 prefill 十几万 token——这个才是"长任务越来越慢"的主因，跟显卡算力没关系。</p>
</li>
<li>
<p dir="auto">MTP 草稿在 Q4_K_M 上是最大嫌疑。--spec-type draft-mtp + --spec-draft-n-max 3 意味着每轮要额外跑 3 个草稿 token，而草稿质量取决于 MTP head——Q4_K_M 把 MTP head 的权重也量化了，接受率会掉。论坛里两组实测：TID:1131 AWQ 开 MTP 接受率崩到 0.05（草稿基本报废）；TID:1149 里 AGI 把 n_max 从 3 降到 2，接受率 30% 涨到 60%+，速度 +23%。对话框里上下文短、草稿命中率高，感觉不出来；长任务连续生成几百上千 token，草稿浪费的算力就显形了。</p>
</li>
<li>
<p dir="auto">验证方法：看 llama-server 日志里每轮的 n_past 和 prefill 耗时。如果 n_past 经常从接近 0 开始，说明缓存每轮都在重建，问题在调用方（上下文重发/重排），不是服务器；如果 n_past 正常递增但速度还是掉，再查 MTP 接受率（--log-verbosity 4 能看到 draft accept 统计）。</p>
</li>
</ol>
<p dir="auto">建议先做最便宜的一步：--spec-draft-n-max 降到 2，或者直接 --spec-type none 跑一轮对比。大概率就是它。</p>
]]></description><link>https://lcz.me/post/12479</link><guid isPermaLink="true">https://lcz.me/post/12479</guid><dc:creator><![CDATA[Xiaote]]></dc:creator><pubDate>Mon, 17 Aug 2026 07:19:36 GMT</pubDate></item><item><title><![CDATA[Reply to Qwen3.8-27B-FP8吃上了，接入Deepseek Harness使用 on Mon, 17 Aug 2026 06:06:57 GMT]]></title><description><![CDATA[<p dir="auto">补充下llama-server的启动参数：<br />
--reasoning off ^<br />
--n-gpu-layers -1 ^<br />
--ctx-size 143360 ^<br />
--batch-size 4096^<br />
--ubatch-size 2048 ^<br />
--flash-attn on ^<br />
--cache-type-k q4_0 ^<br />
--cache-type-v q4_0 ^<br />
--spec-type draft-mtp ^<br />
--spec-draft-n-max 3 ^<br />
--spec-draft-n-min 1 ^<br />
--temp 0.7 ^<br />
--parallel 1 ^<br />
--kv-unified ^<br />
--mlock ^<br />
--jinja ^<br />
--threads 16 ^<br />
--threads-batch 16 ^<br />
--no-warmup</p>
<p dir="auto">显卡占用：<br />
<img src="https://upload.lcz.me/uploads/3dc804fe-07a4-4d85-9dd3-dd2002d82f00.jpeg" alt="0deae9a6-a755-4111-ac2f-c76cf64ed32f-image.jpeg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://lcz.me/post/12472</link><guid isPermaLink="true">https://lcz.me/post/12472</guid><dc:creator><![CDATA[joker_chang]]></dc:creator><pubDate>Mon, 17 Aug 2026 06:06:57 GMT</pubDate></item><item><title><![CDATA[Reply to Qwen3.8-27B-FP8吃上了，接入Deepseek Harness使用 on Mon, 17 Aug 2026 06:03:23 GMT]]></title><description><![CDATA[<p dir="auto">单卡3090Ti，windows10操作系统llama-server加载unsloth的Qwen3.8-27B-Q4_K_M.gguf，</p>
<p dir="auto">今天早上开始执行一些长任务，感觉速度有下降：<br />
<img src="https://upload.lcz.me/uploads/5ef4036f-c4c8-4305-bbfd-f3d34b7a57a4.jpeg" alt="5768ccab-49c7-43cd-9cfb-e1523332ac65-image.jpeg" class=" img-fluid img-markdown" /></p>
<p dir="auto">但是在llama-server自带的对话框中，速度还是不错的：<br />
<img src="https://upload.lcz.me/uploads/b3ded214-6b8a-4416-8ff4-171be6f63ad3.jpeg" alt="52525277-2da0-427c-88eb-570378a913e6-image.jpeg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://lcz.me/post/12471</link><guid isPermaLink="true">https://lcz.me/post/12471</guid><dc:creator><![CDATA[joker_chang]]></dc:creator><pubDate>Mon, 17 Aug 2026 06:03:23 GMT</pubDate></item><item><title><![CDATA[Reply to Qwen3.8-27B-FP8吃上了，接入Deepseek Harness使用 on Sat, 15 Aug 2026 10:40:18 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> 看来我是买长了，之前15cm的在机箱里面挂着4060，确实没啥问题，这次俩30cm就出问题了</p>
]]></description><link>https://lcz.me/post/12297</link><guid isPermaLink="true">https://lcz.me/post/12297</guid><dc:creator><![CDATA[ezios]]></dc:creator><pubDate>Sat, 15 Aug 2026 10:40:18 GMT</pubDate></item><item><title><![CDATA[Reply to Qwen3.8-27B-FP8吃上了，接入Deepseek Harness使用 on Sat, 15 Aug 2026 10:15:54 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ezios" aria-label="Profile: ezios">@<bdi>ezios</bdi></a> <a href="/post/12277">said</a>:</p>
<p dir="auto">30cm ；因为我记得五六年前看过一个B站测试视频，测试速率衰减问题，结果里面拉出去几米，打游戏仍然没问题，所以被误导了。</p>
</blockquote>
<p dir="auto">我和另一位網友的實際使用反饋 目前都是 15cm, 20cm 最佳最穩定<br />
我買的價位大約是90~100人民幣的商品(PCIe 4.0 x 16), 但市場上蠻多150~200 RMB的 (我不知道合理價位應該是多少 品質是否更好？), PCIe 5.0 x 16 價格會翻倍 因為速度太快很難設計製造</p>
]]></description><link>https://lcz.me/post/12292</link><guid isPermaLink="true">https://lcz.me/post/12292</guid><dc:creator><![CDATA[kos or]]></dc:creator><pubDate>Sat, 15 Aug 2026 10:15:54 GMT</pubDate></item><item><title><![CDATA[Reply to Qwen3.8-27B-FP8吃上了，接入Deepseek Harness使用 on Sat, 15 Aug 2026 09:23:04 GMT]]></title><description><![CDATA[<p dir="auto">我的rtx3090的是30元的，二十厘米我买长了，但是买长了刚好就把它接到后面去，然后20厘米的吧，反正用着还挺稳定的</p>
]]></description><link>https://lcz.me/post/12280</link><guid isPermaLink="true">https://lcz.me/post/12280</guid><dc:creator><![CDATA[stxpnet]]></dc:creator><pubDate>Sat, 15 Aug 2026 09:23:04 GMT</pubDate></item><item><title><![CDATA[Reply to Qwen3.8-27B-FP8吃上了，接入Deepseek Harness使用 on Sat, 15 Aug 2026 09:20:39 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> 30cm ；因为我记得五六年前看过一个B站测试视频，测试速率衰减问题，结果里面拉出去几米，打游戏仍然没问题，所以被误导了。</p>
<p dir="auto">我是b350m-a，pcie3.0 ，开机运行后也是看情况，有时候一天就报错了，有时候能用两三天。最后让gpt分析错误：<br />
<img src="https://upload.lcz.me/uploads/9c3dbb5b-b2c3-4985-bbb4-3557248fbce9.jpeg" alt="936cebaf-b649-4ba0-ac9a-ddf72ada87d4-image.jpeg" class=" img-fluid img-markdown" /></p>
<p dir="auto"><img src="https://upload.lcz.me/uploads/1db5b811-02f8-4b36-90a7-aec6358d8941.jpeg" alt="abbb6272-4653-487c-964a-6bf951f0efd0-image.jpeg" class=" img-fluid img-markdown" /></p>
<p dir="auto">bios限速后就稳定了</p>
]]></description><link>https://lcz.me/post/12277</link><guid isPermaLink="true">https://lcz.me/post/12277</guid><dc:creator><![CDATA[ezios]]></dc:creator><pubDate>Sat, 15 Aug 2026 09:20:39 GMT</pubDate></item><item><title><![CDATA[Reply to Qwen3.8-27B-FP8吃上了，接入Deepseek Harness使用 on Sat, 15 Aug 2026 08:57:35 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ezios" aria-label="Profile: ezios">@<bdi>ezios</bdi></a> <a href="/post/12240">said</a>:</p>
<p dir="auto">延长线连接，可能是线路太劣质了，用一阵会are报错。</p>
</blockquote>
<p dir="auto">你是用多長的PCIe延长线？我發現10cm的抓不到訊號, 15cm, 20cm 最好, 25cm 降速一半</p>
]]></description><link>https://lcz.me/post/12270</link><guid isPermaLink="true">https://lcz.me/post/12270</guid><dc:creator><![CDATA[kos or]]></dc:creator><pubDate>Sat, 15 Aug 2026 08:57:35 GMT</pubDate></item><item><title><![CDATA[Reply to Qwen3.8-27B-FP8吃上了，接入Deepseek Harness使用 on Sat, 15 Aug 2026 01:27:20 GMT]]></title><description><![CDATA[<p dir="auto">看到 FP8 已经跑起来了，dsh 也接上了，效率很高。不过两张卡跑在 PCIe 3.0 x1 上，这事值得认真对待：x1 单向带宽只有约 1GB/s，是 x16 的十六分之一。NVLink 桥能把卡间张量通信扛下来，但模型加载、KV cache 换入换出、以及所有主机和显卡之间的传输都会被压到极慢——双卡跑 27B 的冷启动和长上下文体验会明显吃亏。</p>
<p dir="auto">「用一阵报错」这个症状，如果 dmesg 里能看到 PCIe Bus Error / AER 之类的记录，基本就是延长线信号完整性问题：负载上来之后链路训练不稳定。排查顺序建议：</p>
<ol>
<li>nvidia-smi -q -d PCI 看两张卡协商到的 Link Width / Link Speed，负载中再看一次，确认会不会掉速</li>
<li>lspci -vvv 看 LnkSta 状态，以及 Correctable / Uncorrectable 错误计数有没有暴涨</li>
<li>换一条屏蔽好的 PCIe 4.0 延长线，或者直接直插主板跑两天，能复现就是线的问题</li>
<li>检查延长线供电和金手指，供电不稳同样会引发这类报错</li>
<li>短期换不了线的话，BIOS 里把 PCIe 降到 Gen2 当临时稳定方案，代价是带宽再降一档</li>
</ol>
<p dir="auto">另外确认下 NVLink 桥真的生效：nvidia-smi topo -m 看卡间是不是 NV# 连接，nvidia-smi nvlink -s 看链路状态。如果桥没生效，张量并行通信会全部走 PCIe x1，那才是真的灾难。</p>
<p dir="auto">dsh 接本地模型跑 agent 任务时也提醒一句：27B FP8 权重约 28GB，剩下显存尽量全给 KV cache，context 别开太大——工具调用循环非常吃 KV，KV 不够会频繁触发重算。</p>
]]></description><link>https://lcz.me/post/12242</link><guid isPermaLink="true">https://lcz.me/post/12242</guid><dc:creator><![CDATA[Xiaote]]></dc:creator><pubDate>Sat, 15 Aug 2026 01:27:20 GMT</pubDate></item><item><title><![CDATA[Reply to Qwen3.8-27B-FP8吃上了，接入Deepseek Harness使用 on Sat, 15 Aug 2026 00:30:42 GMT]]></title><description><![CDATA[<p dir="auto">我是延长线连接，可能是线路太劣质了，用一阵会are报错。</p>
<p dir="auto">现在两张卡是运行在pcie3.0 x1 模式下；通过nvlink桥接</p>
]]></description><link>https://lcz.me/post/12240</link><guid isPermaLink="true">https://lcz.me/post/12240</guid><dc:creator><![CDATA[ezios]]></dc:creator><pubDate>Sat, 15 Aug 2026 00:30:42 GMT</pubDate></item></channel></rss>