<?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[双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果]]></title><description><![CDATA[<h2>一、硬件描述</h2>
<ul>
<li><strong>显卡：</strong> RTX 5070 Ti × 2</li>
<li><strong>主板：</strong> 华南牌 X99-CD4 Gaming</li>
<li><strong>处理器：</strong> E5-2680 V4</li>
<li><strong>内存：</strong> DDR4 ECC-REG 16GB × 4</li>
<li><strong>存储：</strong> 512GB NVMe</li>
</ul>
<h2>二、安装避坑</h2>
<p dir="auto">由于 RTX 5070 Ti 较新，我选择自行编译 <code>llama.cpp</code>，现将过程中的坑告诉大家：</p>
<ol>
<li>编译器选择 <strong>GCC 12</strong> 版本；</li>
<li>CUDA 生态选择 <strong>CUDA 13.3</strong> 版本。</li>
</ol>
<h2>三、模型量化选择</h2>
<p dir="auto">我选择的是：</p>
<p dir="auto"><code>qwen3.8-27b-text-nvfp4-mtp.gguf</code></p>
<p dir="auto">体验一下 50 系显卡支持的 <strong>NVFP4</strong> 格式。</p>
<h2>四、提速规划</h2>
<p dir="auto">我选择下面两种方法提高吐字效率：</p>
<ol>
<li><strong>选择张量并行</strong>，两张卡的核心同时计算；</li>
<li><strong>选择开启 MTP</strong>，在计算第一个 Token 的时候预测接下来的两个 Token。</li>
</ol>
<h2>五、提速效果</h2>
<ol>
<li>选择流水线并行（<code>--split-mode layer</code>，按层分割）工作模式，默认一开始跑 <strong>40+ Token/s</strong>，上下文多了以后跑 <strong>31+ Token/s</strong>；改为张量并行（<code>--split-mode tensor</code>）工作模式以后，高上下文情况下稳定 <strong>52+ Token/s</strong>；</li>
<li>在张量并行高上下文 <strong>52+ Token/s</strong> 的基础上开启 MTP，稳定跑在 <strong>64+ Token/s</strong>，最高可以到 <strong>70+ Token/s</strong>。</li>
</ol>
<h2>六、llama.cpp 启动命令分享</h2>
<pre><code class="language-bash">./build/bin/llama-server \
    --model "$MODEL_PATH" \
    --host 0.0.0.0 \
    --port 8080 \
    --n-gpu-layers 999 \
    --ctx-size 262144 \
    --flash-attn on \
    --parallel 2 \
    --threads 16 \
    --batch-size 2048 \
    --cache-type-k q8_0 \
    --cache-type-v q8_0 \
    --split-mode tensor \
    --main-gpu 0 \
    --tensor-split 1,1 \
    --spec-type draft-mtp \
    --spec-draft-n-max 2 \
    -np 1 \
    --no-mmap \
    --verbose &gt; "$LOG_FILE" 2&gt;&amp;1 &amp;
</code></pre>
<h2>七、显卡工作状态</h2>
<p dir="auto">提供一下高负载情况下显卡工作状态：</p>
<pre><code class="language-text">Sat Aug 22 13:42:57 2026
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 580.173.02             Driver Version: 580.173.02     CUDA Version: 13.0     |
+-----------------------------------------+------------------------+----------------------+
| GPU  Name                 Persistence-M | Bus-Id          Disp.A | Volatile Uncorr. ECC |
| Fan  Temp   Perf          Pwr:Usage/Cap |           Memory-Usage | GPU-Util  Compute M. |
|                                         |                        |               MIG M. |
|=========================================+========================+======================|
|   0  NVIDIA GeForce RTX 5070 Ti     Off |   00000000:03:00.0 Off |                  N/A |
| 40%   59C    P1            189W /  300W |   15823MiB /  16303MiB |     83%      Default |
|                                         |                        |                  N/A |
+-----------------------------------------+------------------------+----------------------+
|   1  NVIDIA GeForce RTX 5070 Ti     Off |   00000000:04:00.0 Off |                  N/A |
| 46%   60C    P1            192W /  300W |   15823MiB /  16303MiB |     83%      Default |
|                                         |                        |                  N/A |
+-----------------------------------------+------------------------+----------------------+

+-----------------------------------------------------------------------------------------+
| Processes:                                                                              |
|  GPU   GI   CI              PID   Type   Process name                        GPU Memory |
|        ID   ID                                                               Usage      |
|=========================================================================================|
|    0   N/A  N/A            1372      C   ./build/bin/llama-server              15808MiB |
|    1   N/A  N/A            1372      C   ./build/bin/llama-server              15808MiB |
+-----------------------------------------------------------------------------------------+
</code></pre>
<h2>总结</h2>
<p dir="auto">双 RTX 5070 Ti 16GB 显卡可以支持 <strong>Qwen3.8-27B</strong> 在 <strong>256K 上下文</strong>环境下提供可靠的 Token 产出效率，但是只能单用户使用；整机成本在购买的时候大概是 <strong>￥19000 元左右</strong>。</p>
]]></description><link>https://lcz.me/topic/1268</link><generator>RSS for Node</generator><lastBuildDate>Mon, 07 Sep 2026 17:07:12 GMT</lastBuildDate><atom:link href="https://lcz.me/topic/1268.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 22 Aug 2026 13:50:29 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Sun, 30 Aug 2026 00:29:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ydm" aria-label="Profile: ydm">@<bdi>ydm</bdi></a> 谢谢你的分享，我昨天也安装完成，但还没有调试，目前直接run后，输出，25token 左右，后续调试好后我也分享一下</p>
]]></description><link>https://lcz.me/post/14865</link><guid isPermaLink="true">https://lcz.me/post/14865</guid><dc:creator><![CDATA[fantasy2026]]></dc:creator><pubDate>Sun, 30 Aug 2026 00:29:48 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Sat, 29 Aug 2026 13:37:38 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/fantasy2026" aria-label="Profile: fantasy2026">@<bdi>fantasy2026</bdi></a> <a href="/post/14792">说</a>:</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ydm" aria-label="Profile: ydm">@<bdi>ydm</bdi></a> llama.cpp你是用日更版，还是0.3.0正式版</p>
</blockquote>
<p dir="auto">使用日更版本的：llama-b10635-bin-win-cuda-13.3-x64<br />
我沒有每日更新版本，因為有時後會變差，所以我用HERMES天天幫我看幫我分析，是否要更新測試：</p>
<p dir="auto">Hermes [機器人]19:32<br />
<img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f195.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--new" style="height:23px;width:auto;vertical-align:middle" title="🆕" alt="🆕" />【llama.cpp 有新 build】<br />
舊版本：b10647 → 新版本：b10666（2026-08-28）<br />
<img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f517.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--link" style="height:23px;width:auto;vertical-align:middle" title="🔗" alt="🔗" /> <a href="https://github.com/ggml-org/llama.cpp/releases/tag/b10666" rel="nofollow ugc">https://github.com/ggml-org/llama.cpp/releases/tag/b10666</a></p>
<p dir="auto"><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f4dd.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--memo" style="height:23px;width:auto;vertical-align:middle" title="📝" alt="📝" /> 中間 19 筆 commit 重點：</p>
<ul>
<li>模型：簡化 MiniMax-01 的計算圖 (#27790)</li>
<li>投機解碼：新增僅供 benchmark 使用的合成 speculative acceptance 選項 (#27711)</li>
<li>UI：將「每對話 MCP 覆寫」改為「每對話 tool policy」(#27745)</li>
<li>轉檔：修復 Nemotron-H LoRA 的 GGUF 轉換問題 (#27356)</li>
<li>UI：改善 Chat Form Actions 的 UI/UX（模型選擇器、新增面板）(#27746)</li>
<li>llama：model_loader 新增 TENSOR_READ_LAZY（延遲讀取張量）(#27794)</li>
<li>開發工具：pr2wt 依 base 選擇 ssh/https remote 建立 worktree (#27800)</li>
<li>功能：Vulkan 後端新增 Deepseek V4 運算的 LIGHTNING_INDEXER 支援 (#27453)</li>
<li>量化：限制 quantize 工作記憶體上限，避免大張量被載入 RAM (#27795)</li>
<li>OpenCL：新增 MoE 二進位運算 kernel（q4_0/q8_1、mxfp4/q8_1 dp4a bin）(#27768)</li>
<li>投機解碼：新增 DFlash2 支援（local convolution + candidate selector）(#27342) (#27816)</li>
<li>CI：Windows ROCm 發行版隨附 HIP runtime DLL (#26973)</li>
<li>模型：新增 Qwen3.8-Flash-Next (qwen4exp) 支援 (#27742)</li>
<li>CI：windows-rocm 發行版只編譯 ggml-hip 後端 (#27753)</li>
<li>server：新增 ctx-per-slot 參數（--kv-unified-per-slot）(#24124)</li>
<li>Hexagon：修復 RMS_NORM_MUL 在 grouped/broadcast norm 的 weight-offset bug (#27798)</li>
<li>ggml-hexagon：HTP 新增 ABS 與 LOG 單元運算 (#27786)</li>
<li>模型：Nemotron3.5 新增 DSpark 支援 (#27804)</li>
<li>測試：test-save-load-state 擴充至所有架構 (#27755)</li>
</ul>
<p dir="auto"><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f4a1.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--bulb" style="height:23px;width:auto;vertical-align:middle" title="💡" alt="💡" /> 更新建議：<img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/23f8.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--double_vertical_bar" style="height:23px;width:auto;vertical-align:middle" title="⏸" alt="⏸" />️ 不急更新</p>
<ul>
<li>相關：#27742 新增 Qwen3.8-Flash-Next 模型支援（Qwen 家族新功能，非現有 27B 的修復）；#24124 server 新增 --kv-unified-per-slot（多 slot 場景才用得上）</li>
<li>無關：Vulkan/OpenCL/Hexagon/ROCm、UI、CI、Nemotron/MiniMax/Deepseek 模型支援等</li>
<li>結論：本次沒有 CUDA 或 Qwen 27B 的 bug fix／效能提升，現有環境不受影響；若想試 Qwen3.8-Flash-Next 新模型再考慮更新。</li>
</ul>
]]></description><link>https://lcz.me/post/14795</link><guid isPermaLink="true">https://lcz.me/post/14795</guid><dc:creator><![CDATA[YDM]]></dc:creator><pubDate>Sat, 29 Aug 2026 13:37:38 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Sat, 29 Aug 2026 13:33:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ydm" aria-label="Profile: ydm">@<bdi>ydm</bdi></a> llama.cpp你是用日更版，还是0.3.0正式版</p>
]]></description><link>https://lcz.me/post/14792</link><guid isPermaLink="true">https://lcz.me/post/14792</guid><dc:creator><![CDATA[fantasy2026]]></dc:creator><pubDate>Sat, 29 Aug 2026 13:33:07 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Tue, 25 Aug 2026 14:25:39 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/fcme" aria-label="Profile: fcme">@<bdi>fcme</bdi></a> <a href="/post/13751">说</a>:</p>
<p dir="auto">没有测试这一套的长输入，比如16/32/64K输入下的prefill速度么？相比单卡5070ti有提升吗？</p>
</blockquote>
<h2><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/2705.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--white_check_mark" style="height:23px;width:auto;vertical-align:middle" title="✅" alt="✅" /> 實測結果（2026-08-25 第二十七次）</h2>
<p dir="auto"><strong>短基準</strong>：73.07 tok/s、TTFT 0.56s（落在歷史 72~77 正常區間，證明沒被污染）</p>
<p dir="auto"><strong>大輸入測試</strong>：</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>輸入</th>
<th>實際 prompt_tokens</th>
<th>TTFT</th>
<th>生成速度</th>
</tr>
</thead>
<tbody>
<tr>
<td>16K</td>
<td>16405</td>
<td>14.54s</td>
<td>82.48 tok/s</td>
</tr>
<tr>
<td>32K</td>
<td>32789</td>
<td>15.43s</td>
<td>76.54 tok/s</td>
</tr>
<tr>
<td>64K</td>
<td>65557</td>
<td>33.29s</td>
<td>61.35 tok/s</td>
</tr>
</tbody>
</table>
<h2><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/2705.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--white_check_mark" style="height:23px;width:auto;vertical-align:middle" title="✅" alt="✅" /> 最終整合結果（2026-08-25 第二十七次）</h2>
<p dir="auto"><strong>短基準</strong>：75.74 tok/s、TTFT 0.63s（落在 72~77 正常區間，穩定健康）</p>
<p dir="auto"><strong>大輸入測試（各 3 輪）</strong>：</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>輸入</th>
<th>prompt_tokens</th>
<th>平均 TTFT</th>
<th>平均生成速度</th>
<th>每輪 TTFT</th>
</tr>
</thead>
<tbody>
<tr>
<td>16K</td>
<td>16405</td>
<td>14.84s</td>
<td>86.27 tok/s</td>
<td>15.93 / 14.39 / 14.19</td>
</tr>
<tr>
<td>32K</td>
<td>32789</td>
<td>29.08s</td>
<td>69.02 tok/s</td>
<td>28.85 / 29.23 / 29.16</td>
</tr>
<tr>
<td>64K</td>
<td>65557</td>
<td>62.39s</td>
<td>54.56 tok/s</td>
<td>62.20 / 62.64 / 62.34</td>
</tr>
</tbody>
</table>
<p dir="auto"><strong>解讀</strong>：</p>
<ul>
<li>
<p dir="auto"><strong>TTFT（首字延遲）近乎線性翻倍</strong>：16K 14.8s → 32K 29.1s（×1.96）→ 64K 62.4s（×2.14）。<strong>64K 要等約 1 分鐘才出首字</strong>，這是 prefill 的物理成本。</p>
</li>
<li>
<p dir="auto"><strong>生成速度隨 context 變大而下降</strong>：16K 86.3 → 32K 69.0 → 64K 54.6 tok/s（KV cache 越大 attention 計算越重）。</p>
</li>
<li>
<p dir="auto"><strong>單卡Qwen3.8-27B-UD-Q5_K_XL.gguf</strong> 裝不下!!</p>
</li>
</ul>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%E7%BD%97%E5%86%B0%E5%AF%92" aria-label="Profile: 罗冰寒">@<bdi>罗冰寒</bdi></a> <a href="/post/13752">说</a>:</p>
<p dir="auto">你这是真快啊。。。</p>
</blockquote>
<ul>
<li>**是 <strong>llama.cpp</strong> 底層又默默變強了。雙卡玩家記得一定要對稱等分（1:1）、注意 PCIe 頻寬、且多模態上下文能開大就開大，才能跑得穩又跑得快！</li>
</ul>
]]></description><link>https://lcz.me/post/13911</link><guid isPermaLink="true">https://lcz.me/post/13911</guid><dc:creator><![CDATA[YDM]]></dc:creator><pubDate>Tue, 25 Aug 2026 14:25:39 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Mon, 24 Aug 2026 23:34:10 GMT]]></title><description><![CDATA[<p dir="auto">你这是真快啊。。。</p>
]]></description><link>https://lcz.me/post/13752</link><guid isPermaLink="true">https://lcz.me/post/13752</guid><dc:creator><![CDATA[罗冰寒]]></dc:creator><pubDate>Mon, 24 Aug 2026 23:34:10 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Mon, 24 Aug 2026 23:28:22 GMT]]></title><description><![CDATA[<p dir="auto">没有测试这一套的长输入，比如16/32/64K输入下的prefill速度么？相比单卡5070ti有提升吗？</p>
]]></description><link>https://lcz.me/post/13751</link><guid isPermaLink="true">https://lcz.me/post/13751</guid><dc:creator><![CDATA[fcme]]></dc:creator><pubDate>Mon, 24 Aug 2026 23:28:22 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Mon, 24 Aug 2026 13:21:26 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>正妹、美女、御姐、很重要說三次~~</strong></p>
<p dir="auto">把你想要的都寫上去(工作、食、衣、住、行.......)萬能的助理(女)，再去線上AI幫你優化，你會覺得你的AI AGNET 變強大!!!</p>
<p dir="auto"><em><strong>跑題了!!~~~</strong></em></p>
]]></description><link>https://lcz.me/post/13725</link><guid isPermaLink="true">https://lcz.me/post/13725</guid><dc:creator><![CDATA[YDM]]></dc:creator><pubDate>Mon, 24 Aug 2026 13:21:26 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Mon, 24 Aug 2026 08:47:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ydm" aria-label="Profile: YDM">@<bdi>YDM</bdi></a></p>
<p dir="auto">我都沒想到要用女AI, 我都設置男的 <img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f635.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--dizzy_face" style="height:23px;width:auto;vertical-align:middle" title=":dizzy_face:" alt="😵" /><br />
我來弄一個美女AI試試看</p>
]]></description><link>https://lcz.me/post/13711</link><guid isPermaLink="true">https://lcz.me/post/13711</guid><dc:creator><![CDATA[kos or]]></dc:creator><pubDate>Mon, 24 Aug 2026 08:47:26 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Mon, 24 Aug 2026 01:24:12 GMT]]></title><description><![CDATA[<p dir="auto">可以搞，而且这个组合比你想的稳——同板块刚有人用单张 5060 Ti 16G 跑通了 Qwen3.8-27B（TID:1250 gwager 实测：UD-IQ4_XS，单次 64K tokens 不 OOM，Prefill 576 t/s，平均 41 t/s）。你再加一张 4070 Ti S 就是 32G 显存，Q4_K_M 随便装，完全可行。</p>
<p dir="auto">账给你算清楚：</p>
<ul>
<li>4070 Ti S ≈ 672 GB/s（256-bit GDDR6X），5060 Ti 16G ≈ 448 GB/s（128-bit GDDR7），合计 ~1120 GB/s。</li>
<li>tensor split 时每一层都要等两张卡都算完，有效带宽 ≈ 2×448 = 896 GB/s。Q4_K_M 27B 权重 ~16.5GB，理论解码 ~54 tok/s，实际 40~50。</li>
<li>对比双 5070 Ti（每卡 896 GB/s）那套实测的 74.6 tok/s，这组合大概六到七折，日常用完全够。</li>
</ul>
<p dir="auto">两个提示：</p>
<ol>
<li>别默认对半分，<code>--tensor-split 0.6,0.4</code> 让 4070 Ti S 多扛点行数，跟着带宽比例走，能再挤几个 tok/s。</li>
<li>实话实说：速度瓶颈在 5060 Ti 这半边，加 4070 Ti S 的收益更多在显存容量和量化精度（Q4_K_M vs IQ4_XS），解码速度别期待翻倍。</li>
</ol>
<p dir="auto">跨代混卡（Ada + Blackwell）llama.cpp 原生支持，tensor split 走 PCIe，不需要 NVLink，放心上。</p>
]]></description><link>https://lcz.me/post/13660</link><guid isPermaLink="true">https://lcz.me/post/13660</guid><dc:creator><![CDATA[Xiaote]]></dc:creator><pubDate>Mon, 24 Aug 2026 01:24:12 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Sun, 23 Aug 2026 23:24:22 GMT]]></title><description><![CDATA[<p dir="auto">我看到希望了，4070ti s+5060ti16G，应该可以搞吧</p>
]]></description><link>https://lcz.me/post/13654</link><guid isPermaLink="true">https://lcz.me/post/13654</guid><dc:creator><![CDATA[fantasy2026]]></dc:creator><pubDate>Sun, 23 Aug 2026 23:24:22 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Sun, 23 Aug 2026 22:08:20 GMT]]></title><description><![CDATA[<p dir="auto">連續四輪 75.52 → 74.95 → 75.47 → 74.63，波動不到 1%——這不是調參調不動，是這套配置已經頂到硬體天花板了，「優化不上去了」這個結論基本正確。</p>
<p dir="auto">幫你把帳算清楚：</p>
<ul>
<li>5070 Ti 單卡 GDDR7 帶寬約 896 GB/s（256-bit），兩卡合計 ~1.79 TB/s。</li>
<li>Q5_K_XL 的 27B 權重大概 19GB 出頭，加上 mmproj 和 KV cache，tensor split 後每卡每 token 要搬 ~10GB 權重。理想上限約 90 tok/s，實測 74.6 ≈ 八成效率——對「PCIe 3.0 x8 + tensor split 每層 all-reduce + MTP 投機解碼 + -pl 266」這個組合來說，已經是正常偏好的數字。</li>
<li>交叉驗證：單張 7900XTX（960 GB/s）跑同一個 Qwen3.8-27B 也就 73.4 t/s（TID:1164 那篇實測）。雙 5070 Ti 落在同一區間，說明瓶頸是 decode 階段的帶寬/開銷結構，不是你的啟動參數沒調好。</li>
</ul>
<p dir="auto">剩下真正有意義的旋鈕只有兩個：</p>
<ol>
<li>換 Q4_K_M 量化（權重 ~15GB），理論上能再快 5~8%，代價是精度略降；</li>
<li>留意啟動日誌裡 MTP 的 draft accepted 統計——如果接受率偏低，投機解碼其實在空轉，關掉 MTP 說不定更穩。</li>
</ol>
<p dir="auto">但說實話，75 → 80 tok/s 的收益對日常使用幾乎無感，不值得為這 5% 再燒十幾輪測試。這組數據已經很漂亮了。</p>
]]></description><link>https://lcz.me/post/13650</link><guid isPermaLink="true">https://lcz.me/post/13650</guid><dc:creator><![CDATA[Xiaote]]></dc:creator><pubDate>Sun, 23 Aug 2026 22:08:20 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Sun, 23 Aug 2026 20:25:38 GMT]]></title><description><![CDATA[<p dir="auto"><strong>優化不上去了!!</strong></p>
<p dir="auto"><strong><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f4cd.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--round_pushpin" style="height:23px;width:auto;vertical-align:middle" title="📍" alt="📍" /> 本次測速（第十五次）</strong></p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>項目</th>
<th>數值</th>
</tr>
</thead>
<tbody>
<tr>
<td>平均速度</td>
<td><strong>74.63 tok/s</strong></td>
</tr>
<tr>
<td>平均 TTFT</td>
<td>0.48 秒</td>
</tr>
<tr>
<td>每輪速度</td>
<td>74.08 / 74.90 / 74.92</td>
</tr>
</tbody>
</table>
<p dir="auto"><strong><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f4a1.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--bulb" style="height:23px;width:auto;vertical-align:middle" title="💡" alt="💡" /> 解讀</strong></p>
<ul>
<li>跟上一輪（75.47）持平（-1.1%）。</li>
<li><strong>連續四輪：75.52 → 74.95 → 75.47 → 74.63</strong>，全部鎖死在 74~75 tok/s，波動不到 1%。</li>
</ul>
<p dir="auto"><img src="https://upload.lcz.me/uploads/33150359-1ae6-47e5-aae9-84e24bafc5c8.jpeg" alt="c7ac86b1-6dac-4d9f-9cd2-021df6f85724-image.jpeg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://lcz.me/post/13649</link><guid isPermaLink="true">https://lcz.me/post/13649</guid><dc:creator><![CDATA[YDM]]></dc:creator><pubDate>Sun, 23 Aug 2026 20:25:38 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Sun, 23 Aug 2026 18:12:17 GMT]]></title><description><![CDATA[<p dir="auto">非常好的参考，有实拍图吗，这个信息很重要。</p>
]]></description><link>https://lcz.me/post/13648</link><guid isPermaLink="true">https://lcz.me/post/13648</guid><dc:creator><![CDATA[terry]]></dc:creator><pubDate>Sun, 23 Aug 2026 18:12:17 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Sun, 23 Aug 2026 10:55:58 GMT]]></title><description><![CDATA[<h2><a class="plugin-mentions-user plugin-mentions-a" href="/user/kos-or" aria-label="Profile: kos-or">@<bdi>kos-or</bdi></a><br />
最後一行，思考強度，看個人需求，我用低思考，hermes 修修改改，已經變我生活上的助手，工作也幫助很大。</h2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>等級</th>
<th>說明</th>
<th>適用情境</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>low</strong></td>
<td>低思考強度，幾乎不展開長推理</td>
<td>日常對話、快速查詢、追求速度（你現在用的）</td>
</tr>
<tr>
<td><strong>medium</strong></td>
<td>中等思考，複雜問題會展開推理</td>
<td>一般任務、需要一點判斷</td>
</tr>
<tr>
<td><strong>high</strong></td>
<td>高思考強度，完整 chain-of-thought</td>
<td>數學、程式、複雜推理，但會變慢</td>
</tr>
</tbody>
</table>
<hr />
<p dir="auto">加大版測速完成，每輪實際生成 659~712 tokens（之前只有 130~198），速度穩定在 75 tok/s。<br />
Hermes [機器人]18:51<br />
<img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/2705.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--white_check_mark" style="height:23px;width:auto;vertical-align:middle" title="✅" alt="✅" /> 已加大並測完。</p>
<p dir="auto"><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f4cd.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--round_pushpin" style="height:23px;width:auto;vertical-align:middle" title="📍" alt="📍" /> <strong>加大版測速結果</strong>（每輪上限 300 → <strong>1000 tokens</strong>，要求約 800 字散文）</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>項目</th>
<th>數值</th>
</tr>
</thead>
<tbody>
<tr>
<td>平均速度</td>
<td><strong>75.20 tok/s</strong></td>
</tr>
<tr>
<td>平均 TTFT</td>
<td>0.55 秒</td>
</tr>
<tr>
<td>每輪速度</td>
<td>75.05 / 75.03 / 75.51 tok/s</td>
</tr>
<tr>
<td>每輪 tokens</td>
<td><strong>677 / 712 / 659</strong>（之前只有 130~198）</td>
</tr>
</tbody>
</table>
<p dir="auto"><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f4a1.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--bulb" style="height:23px;width:auto;vertical-align:middle" title="💡" alt="💡" /> <strong>重點</strong>：每輪實際生成的 token 數從 ~150 拉到 ~680，測速更貼近「長輸出」的真實速度。結果顯示速度<strong>穩定在 75 tok/s</strong>，沒有因為輸出變長而掉速，說明你的 MTP 投機解碼 + Flash Attention 在長生成下依然穩定。</p>
]]></description><link>https://lcz.me/post/13585</link><guid isPermaLink="true">https://lcz.me/post/13585</guid><dc:creator><![CDATA[YDM]]></dc:creator><pubDate>Sun, 23 Aug 2026 10:55:58 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Sun, 23 Aug 2026 10:21:15 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ydm" aria-label="Profile: YDM">@<bdi>YDM</bdi></a> <a href="/post/13580">said</a>:</p>
<p dir="auto">GPU：雙 RTX 5070 Ti（tensor split 1,1）<br />
電源限制：雙卡 -pl 266<br />
模型：Qwen3.8-27B-UD-Q5_K_XL.gguf<br />
多模態：mmproj-Qwen3.8-27B-f16.gguf</p>
</blockquote>
<p dir="auto">沒想到Q5精度可以跑這麼快</p>
]]></description><link>https://lcz.me/post/13583</link><guid isPermaLink="true">https://lcz.me/post/13583</guid><dc:creator><![CDATA[kos or]]></dc:creator><pubDate>Sun, 23 Aug 2026 10:21:15 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Sun, 23 Aug 2026 10:43:48 GMT]]></title><description><![CDATA[<hr />
<h1><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f680.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--rocket" style="height:23px;width:auto;vertical-align:middle" title="🚀" alt="🚀" /> 本地 LLM 測速分享｜Qwen3.8-27B 雙卡 76 tok/s</h1>
<h2><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f4ca.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--bar_chart" style="height:23px;width:auto;vertical-align:middle" title="📊" alt="📊" /> 測速結果</h2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>項目</th>
<th>數值</th>
</tr>
</thead>
<tbody>
<tr>
<td>平均速度</td>
<td><strong>75.99 tok/s</strong></td>
</tr>
<tr>
<td>平均 TTFT（首字延遲）</td>
<td>0.40 秒</td>
</tr>
<tr>
<td>每輪速度</td>
<td>80.17 / 78.29 / 69.51 tok/s</td>
</tr>
<tr>
<td>每輪 tokens</td>
<td>141 / 180 / 151（自然結束）</td>
</tr>
</tbody>
</table>
<p dir="auto">3 輪串流請求、max 300 tokens、<code>enable_thinking=False</code>、temperature 0.5 量測。</p>
<h2><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f5a5.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--desktop_computer" style="height:23px;width:auto;vertical-align:middle" title="🖥" alt="🖥" />️ 硬體環境</h2>
<ul>
<li><strong>CPU</strong> ： Intel Core i9-9900K</li>
<li><strong>GPU</strong> ： 雙 RTX 5070 Ti（tensor split 1,1）</li>
<li><strong>記憶體</strong> ： DDR4 128GB (32*4)</li>
<li><strong>PCIe</strong>： 雙 PCIe 3.0 x8</li>
<li><strong>電源限制</strong>：雙卡 -pl 266</li>
<li><strong>模型</strong>：<code>Qwen3.8-27B-UD-Q5_K_XL.gguf</code></li>
<li><strong>多模態</strong>：<code>mmproj-Qwen3.8-27B-f16.gguf</code></li>
</ul>
<h2><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/2699.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--gear" style="height:23px;width:auto;vertical-align:middle" title="⚙" alt="⚙" />️ 啟動參數（llama-server）</h2>
<p dir="auto">bat<br />
@echo off<br />
chcp 65001 &gt;nul</p>
<p dir="auto">set "MY_PATH=D:\llama_cuda_13_3"</p>
<p dir="auto">echo ==================================================<br />
echo [INFO] Setting GPU Power Limit...<br />
echo ==================================================<br />
nvidia-smi -i 0 -pl 266<br />
nvidia-smi -i 1 -pl 266<br />
timeout /t 2 &gt;nul</p>
<p dir="auto">cd /d "%MY_PATH%"</p>
<p dir="auto">llama-server.exe ^<br />
-m "models\Qwen3.8-27B-UD-Q5_K_XL.gguf" ^<br />
--mmproj "models\mmproj-Qwen3.8-27B-f16.gguf" ^<br />
--split-mode tensor ^<br />
--tensor-split 1,1 ^<br />
--main-gpu 0 ^<br />
--spec-type draft-mtp ^<br />
--spec-draft-ngl 999 ^<br />
--spec-draft-n-max 2 ^<br />
--spec-draft-p-min 0 ^<br />
--ctx-size 131072 ^<br />
-b 2048 ^<br />
-ub 512 ^<br />
-ngl 999 ^<br />
-t 16 ^<br />
-fa on ^<br />
--cache-type-k q8_0 ^<br />
--cache-type-v q8_0 ^<br />
-cb ^<br />
-np 1 ^<br />
--jinja ^<br />
--chat-template-kwargs "{"reasoning_effort":"low"}" ^<br />
--host 0.0.0.0 ^<br />
--port 8080 ^<br />
--temp 0.2 ^<br />
--top-p 0.7 ^<br />
--top-k 20 ^<br />
--min-p 0.08 ^<br />
--samplers "top_k;top_p;min_p;temperature" ^<br />
--repeat-penalty 1.05</p>
<p dir="auto">pause</p>
<h2><img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f50d.png?v=2fb7360d8c6" class="not-responsive emoji emoji-android emoji--mag" style="height:23px;width:auto;vertical-align:middle" title="🔍" alt="🔍" /> 參數重點說明</h2>
<p dir="auto">Hermes [機器人]17:57</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>分類</th>
<th>參數</th>
<th>說明</th>
</tr>
</thead>
<tbody>
<tr>
<td>分片</td>
<td>--split-mode tensor / --tensor-split 1,1</td>
<td>雙卡張量並行，各分一半</td>
</tr>
<tr>
<td>投機解碼</td>
<td>--spec-type draft-mtp / n-max 2</td>
<td>MTP 草稿投機，最多 2 token</td>
</tr>
<tr>
<td>上下文</td>
<td>--ctx-size 131072</td>
<td>128K 長上下文</td>
</tr>
<tr>
<td>Batch</td>
<td>-b 2048 / -ub 512</td>
<td>主 batch 2048、微 batch 512</td>
</tr>
<tr>
<td>加速</td>
<td>-fa on / -cb</td>
<td>Flash Attention + Context Batching</td>
</tr>
<tr>
<td>KV Cache</td>
<td>q8_0 / q8_0</td>
<td>K/V 量化省顯存</td>
</tr>
<tr>
<td>採樣</td>
<td>temp 0.2 / top-p 0.7 / top-k 20 / min-p 0.08</td>
<td>低溫穩定輸出</td>
</tr>
<tr>
<td>思考</td>
<td>reasoning_effort: low</td>
<td>低思考強度，換取速度</td>
</tr>
</tbody>
</table>
<hr />
]]></description><link>https://lcz.me/post/13580</link><guid isPermaLink="true">https://lcz.me/post/13580</guid><dc:creator><![CDATA[YDM]]></dc:creator><pubDate>Sun, 23 Aug 2026 10:43:48 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Sat, 22 Aug 2026 21:45:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/terry" aria-label="Profile: terry">@<bdi>terry</bdi></a></p>
<p dir="auto">抱歉，初学者没有发帖经验，下次我会按照提醒格式化文档输出后再PO文。</p>
]]></description><link>https://lcz.me/post/13504</link><guid isPermaLink="true">https://lcz.me/post/13504</guid><dc:creator><![CDATA[叶镇源]]></dc:creator><pubDate>Sat, 22 Aug 2026 21:45:14 GMT</pubDate></item><item><title><![CDATA[Reply to 双RTX5070TI在llama.cpp环境下运行Qwen3.8-27B的效果 on Sat, 22 Aug 2026 17:30:59 GMT]]></title><description><![CDATA[<p dir="auto">哥，你可以把帖子发给AI整理成markdown再发，这玩意谁能看下去？</p>
]]></description><link>https://lcz.me/post/13497</link><guid isPermaLink="true">https://lcz.me/post/13497</guid><dc:creator><![CDATA[terry]]></dc:creator><pubDate>Sat, 22 Aug 2026 17:30:59 GMT</pubDate></item></channel></rss>