<?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[魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec]]></title><description><![CDATA[<p dir="auto">继前帖 <a href="https://lcz.me/topic/1363/30">Vibe爆改VLLM Kernel</a> 支持我的双卡TP 之后，我也是过上了多并发跑qwen3.8的好日子，可是没过几天就发现了新毛病：虽然VLLM的Paged attention缓存容量效率都不错，但是它是每~1600token进行前缀缓存，在长上下文中往往不如llama.cpp（完全缓存命中），总要等个1-10秒才吐字，这时候就想起来老特安利的SGLANG，调研一番后发现官方支持<a href="https://github.com/sgl-project/sglang/issues/30599" rel="nofollow ugc">基本没有</a>，比VLLM还烂。但是它和VLLM底层都用的是Pytorch，转念一想把对应的VLLM kernel port过来不就完事了？</p>
<p dir="auto">正好这个周末GLM大赦天下无限token，打开ZCode直接开干！</p>
<p dir="auto">下面贴repo，找个称手的LLM API和harness即可一键重现复制：<br />
<a href="https://github.com/StevenChenSE/sglang/tree/gfx1100-support#chinese" rel="nofollow ugc">https://github.com/StevenChenSE/sglang/tree/gfx1100-support#chinese</a></p>
<p dir="auto">这里面唯一的遗憾就是折腾了两天也没法支持fp8 kv cache，双卡4路并发的情况下bf16缓存只能开到192k上下文。</p>
<p dir="auto">下来扔几个实测数据吧，整体上来说SGLANG的超短上下文爆发力不如VLLM，在数学题比VLLM 130tok/s低大概30%。此外在agent工作流中，整体表现远远超过VLLM:</p>
<p dir="auto">双路并发平均150-200tok/sec<br />
<img src="https://upload.lcz.me/uploads/6c3856a6-2db3-4910-8b8b-35d64aa427be.jpeg" alt="92655a4a-9061-4203-b43c-af77394d4fef-image.jpeg" class=" img-fluid img-markdown" /></p>
<p dir="auto">deepseek harness编程实测：<br />
<img src="https://upload.lcz.me/uploads/a741c7a7-a275-477b-84d6-913e92ee5681.jpeg" alt="8a35eb8a-565c-4f13-a960-10237e7e148c-image.jpeg" class=" img-fluid img-markdown" /></p>
<p dir="auto">实测在hermes &amp; deepseek harness中，90%情况下ttft都在&lt;1s，80k上下文之前TG在80-100之间波动，丝滑程度远超llama.cpp &amp; vllm，接下来唯一的缺憾就是等下单的32g ddr5内存（肉痛啊喂）快到货尽快上hicache了，下个周末有空看看dflash效果如何。</p>
<p dir="auto">以下数据为LLM生成。</p>
<h3>1. 标准化上下文深度衰减测试 (<code>llama-benchy</code>)</h3>
<p dir="auto"><em>标准 Prompt Prefill ($PP=2048$) 与 Token Generation ($TG=128$), 并发数 = 1</em></p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th style="text-align:center">上下文深度</th>
<th style="text-align:center">SGLang MTP-3 (本分支)</th>
<th style="text-align:center">vLLM MTP-3 基线</th>
<th style="text-align:center">vLLM DFlash2 基线</th>
<th style="text-align:center">对比 vLLM MTP-3 优势</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:center"><strong>Depth 0</strong></td>
<td style="text-align:center"><strong>97.1 tok/s</strong></td>
<td style="text-align:center">88.6 tok/s</td>
<td style="text-align:center">71.1 tok/s</td>
<td style="text-align:center"><strong>+9.6%</strong></td>
</tr>
<tr>
<td style="text-align:center"><strong>Depth 4,096</strong></td>
<td style="text-align:center"><strong>97.3 tok/s</strong></td>
<td style="text-align:center">83.3 tok/s</td>
<td style="text-align:center">68.4 tok/s</td>
<td style="text-align:center"><strong>+16.8%</strong></td>
</tr>
<tr>
<td style="text-align:center"><strong>Depth 8,192</strong></td>
<td style="text-align:center"><strong>91.5 tok/s</strong></td>
<td style="text-align:center">93.3 tok/s</td>
<td style="text-align:center">71.8 tok/s</td>
<td style="text-align:center">-1.9%</td>
</tr>
<tr>
<td style="text-align:center"><strong>Depth 16,384</strong></td>
<td style="text-align:center"><strong>95.7 tok/s</strong></td>
<td style="text-align:center">75.9 tok/s</td>
<td style="text-align:center">62.2 tok/s</td>
<td style="text-align:center"><strong>+26.1%</strong></td>
</tr>
<tr>
<td style="text-align:center"><strong>速度留存率 (16k / 0k)</strong></td>
<td style="text-align:center"><strong>98.5%</strong></td>
<td style="text-align:center">85.7%</td>
<td style="text-align:center">87.5%</td>
<td style="text-align:center"><strong>长文本衰减极低</strong></td>
</tr>
</tbody>
</table>
<h3>2. 真实 120k Agent 多轮会话回放（16 轮离散交互）</h3>
<p dir="auto"><em>采样自真实 120k 长文本 Agent 对话（332 $\to$ 120,443 tokens），启用 Radix 前缀缓存</em></p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>评估指标</th>
<th style="text-align:center">SGLang MTP-3 (本分支)</th>
<th style="text-align:center">vLLM MTP-3</th>
<th style="text-align:center">vLLM DFlash2</th>
<th style="text-align:center">提升幅度</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>平均生成速度 (Mean TG)</strong></td>
<td style="text-align:center"><strong>87.89 tok/s</strong></td>
<td style="text-align:center">63.50 tok/s</td>
<td style="text-align:center">67.96 tok/s</td>
<td style="text-align:center"><strong>提速 +38.4%</strong></td>
</tr>
<tr>
<td><strong>中位数速度 (Median TG)</strong></td>
<td style="text-align:center"><strong>85.97 tok/s</strong></td>
<td style="text-align:center">61.52 tok/s</td>
<td style="text-align:center">67.16 tok/s</td>
<td style="text-align:center"><strong>提速 +39.7%</strong></td>
</tr>
<tr>
<td><strong>抖动率 (CV Jitter %)</strong></td>
<td style="text-align:center"><strong>12.92%</strong></td>
<td style="text-align:center">45.34%</td>
<td style="text-align:center">36.56%</td>
<td style="text-align:center"><strong>平稳度提升 3.5 倍</strong></td>
</tr>
<tr>
<td><strong>最差轮次保底速度</strong></td>
<td style="text-align:center"><strong>66.71 tok/s</strong></td>
<td style="text-align:center">16.94 tok/s</td>
<td style="text-align:center">32.94 tok/s</td>
<td style="text-align:center"><strong>最低速度提升 4 倍</strong></td>
</tr>
</tbody>
</table>
<h3>3. 数学思维链推理测试 (GSM8K &amp; MATH-500)</h3>
<p dir="auto"><em>Greedy 贪婪采样，temperature = 0.0，max_tokens = 1024</em></p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>数据集用例</th>
<th style="text-align:center">生成 Token 数量</th>
<th style="text-align:center">首字延迟 (TTFT)</th>
<th style="text-align:center">Prefill 速度</th>
<th style="text-align:center">生成速度 (TG)</th>
<th style="text-align:center">准确率</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>GSM8K #1</strong></td>
<td style="text-align:center">48</td>
<td style="text-align:center">0.169s</td>
<td style="text-align:center">533.5 tok/s</td>
<td style="text-align:center"><strong>98.9 tok/s</strong></td>
<td style="text-align:center">100% 正确</td>
</tr>
<tr>
<td><strong>GSM8K #2</strong></td>
<td style="text-align:center">196</td>
<td style="text-align:center">0.180s</td>
<td style="text-align:center">626.9 tok/s</td>
<td style="text-align:center"><strong>116.2 tok/s</strong></td>
<td style="text-align:center">100% 正确</td>
</tr>
<tr>
<td><strong>MATH-500 #1</strong></td>
<td style="text-align:center">169</td>
<td style="text-align:center">0.149s</td>
<td style="text-align:center">556.4 tok/s</td>
<td style="text-align:center"><strong>114.7 tok/s</strong></td>
<td style="text-align:center">100% 正确</td>
</tr>
<tr>
<td><strong>MATH-500 #2</strong></td>
<td style="text-align:center">212</td>
<td style="text-align:center">0.137s</td>
<td style="text-align:center">533.3 tok/s</td>
<td style="text-align:center"><strong>111.2 tok/s</strong></td>
<td style="text-align:center">100% 正确</td>
</tr>
<tr>
<td><strong>综合平均</strong></td>
<td style="text-align:center">—</td>
<td style="text-align:center"><strong>0.159s</strong></td>
<td style="text-align:center"><strong>562.5 tok/s</strong></td>
<td style="text-align:center"><strong>110.3 tok/s</strong></td>
<td style="text-align:center"><strong>100% 正确</strong></td>
</tr>
</tbody>
</table>
<h3>4. 多并发吞吐实测 ($c=4$)</h3>
<p dir="auto"><em>使用 <code>llama-benchy</code> 进行多并发请求压测 ($PP=2048, TG=128$, Depth 0)</em></p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>推理服务引擎</th>
<th style="text-align:center">并发数</th>
<th style="text-align:center">Prefill 总吞吐 (PP)</th>
<th style="text-align:center">生成总吞吐 (TG)</th>
<th style="text-align:center">峰值生成吞吐</th>
<th>运行稳定性与说明</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>SGLang MTP-3 (本分支)</strong></td>
<td style="text-align:center"><strong>c = 4</strong></td>
<td style="text-align:center"><strong>1,974.5 tok/s</strong></td>
<td style="text-align:center"><strong>147.5 tok/s</strong></td>
<td style="text-align:center"><strong>206.0 tok/s</strong></td>
<td><strong>100% 稳定运行</strong>，Decode CUDA 图与 MTP-3 正常工作</td>
</tr>
<tr>
<td><strong>vLLM Baseline (无投机)</strong></td>
<td style="text-align:center">c = 4</td>
<td style="text-align:center">1,891.1 tok/s</td>
<td style="text-align:center">83.1 tok/s</td>
<td style="text-align:center">180.0 tok/s</td>
<td>原生稳定，但解码速度较低</td>
</tr>
<tr>
<td><strong>vLLM DFlash2</strong></td>
<td style="text-align:center">c = 4</td>
<td style="text-align:center">1,693.2 tok/s</td>
<td style="text-align:center">75.9 tok/s</td>
<td style="text-align:center">188.0 tok/s</td>
<td>投机开销导致多并发总 TG 吞吐反而低于 Baseline</td>
</tr>
<tr>
<td><strong>llama.cpp (MTP)</strong></td>
<td style="text-align:center">c = 4</td>
<td style="text-align:center">636.3 tok/s</td>
<td style="text-align:center">50.1 tok/s</td>
<td style="text-align:center">—</td>
<td>受限于插槽并发队列瓶颈 (<code>-np 2</code>)</td>
</tr>
</tbody>
</table>
<blockquote>
<p dir="auto"><strong>多并发核心结论</strong>：此前在 ROCm 平台上，vLLM 的投机解码在多并发下普遍面临崩溃或负优化（DFlash2 吞吐不如普通非投机模型，原生 MTP 则直接非法地址异常）。而 SGLang 依靠 Wave32 对齐的 Triton 解码图和独立的 Mamba 状态缓冲，在 4 并发下展现出 <strong>147.5 tok/s 的总生成吞吐</strong>，比 vLLM 基线高出 <strong>+77.5%</strong>，比 vLLM DFlash2 高出 <strong>+94.4%</strong>。</p>
</blockquote>
]]></description><link>https://lcz.me/topic/1532</link><generator>RSS for Node</generator><lastBuildDate>Mon, 07 Sep 2026 13:42:49 GMT</lastBuildDate><atom:link href="https://lcz.me/topic/1532.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 06 Sep 2026 15:50:37 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 13:41:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/6cccccc" aria-label="Profile: 6cccccc">@<bdi>6cccccc</bdi></a> 不用冲啊，不是每次都手慢无的，认真看下，确定适合自己的方案再动手。</p>
]]></description><link>https://lcz.me/post/16475</link><guid isPermaLink="true">https://lcz.me/post/16475</guid><dc:creator><![CDATA[terry]]></dc:creator><pubDate>Mon, 07 Sep 2026 13:41:17 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 13:40:25 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/terry" aria-label="Profile: terry">@<bdi>terry</bdi></a> <a href="/post/16473">说</a>:</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/6cccccc" aria-label="Profile: 6cccccc">@<bdi>6cccccc</bdi></a> 并不贵，明天来看视频。</p>
</blockquote>
<p dir="auto">那我明天直接冲锋</p>
]]></description><link>https://lcz.me/post/16474</link><guid isPermaLink="true">https://lcz.me/post/16474</guid><dc:creator><![CDATA[6cccccc]]></dc:creator><pubDate>Mon, 07 Sep 2026 13:40:25 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 13:33:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/6cccccc" aria-label="Profile: 6cccccc">@<bdi>6cccccc</bdi></a> 并不贵，明天来看视频。</p>
]]></description><link>https://lcz.me/post/16473</link><guid isPermaLink="true">https://lcz.me/post/16473</guid><dc:creator><![CDATA[terry]]></dc:creator><pubDate>Mon, 07 Sep 2026 13:33:14 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 13:26:11 GMT]]></title><description><![CDATA[<p dir="auto">靠现在xtx太贵了，而且换一个pcie4 ×8的主板也不便宜即使是am4的</p>
]]></description><link>https://lcz.me/post/16471</link><guid isPermaLink="true">https://lcz.me/post/16471</guid><dc:creator><![CDATA[6cccccc]]></dc:creator><pubDate>Mon, 07 Sep 2026 13:26:11 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 07:03:19 GMT]]></title><description><![CDATA[<p dir="auto">三张非公三风扇全上是硬仗，先说结论：物美价廉的最优解是双卡，真别硬凑三张。</p>
<p dir="auto">双卡的坑不在 CPU，在槽距。三风扇卡普遍 3~3.5 槽（约 60-70mm），两条全尺寸 x16 槽间距得 ≥4 槽才放得下第二张不打架。大部分家用 ATX 版第二条全尺寸就在第一条正下方隔 2-3 槽，间距不够——最便宜的办法是 PCIe 延长线（riser）把第二张竖装到机箱底部或侧板，几十块搞定，别为槽距去换整块主板。</p>
<p dir="auto">三卡的话，三条 x16 且间距都够的板子基本是服务器/异形位，要么直接上水冷，成本直接起飞。而且 5090（约 575-600W）+ 2×4090（各 450W）加起来 1500W+，得 1600W 电源，等于 3-4 根 16pin 供电口，这些都是实打实的钱。</p>
<p dir="auto">性价比角度：5090 单卡跑 33B/双卡 tensor-split 跑更大模型，4090 拿出来专门挂 ComfyUI 出图，三卡各自占一张是浪费。真要三张全上，我建议 5090+一张 4090 插那两条槽距 ≥4 的 x16，另一张 4090 走 riser 竖装，电源上 1600W；要么干脆分开两块板子双宿主，反而省心。</p>
]]></description><link>https://lcz.me/post/16369</link><guid isPermaLink="true">https://lcz.me/post/16369</guid><dc:creator><![CDATA[Xiaote]]></dc:creator><pubDate>Mon, 07 Sep 2026 07:03:19 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 06:35:27 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ezdilan" aria-label="Profile: ezdilan">@<bdi>ezdilan</bdi></a> <a href="/post/16291">说</a>:</p>
<p dir="auto">用am4板子组双卡啊，ddr4内存还是白菜价，而且32g也没什么硬伤（至少我没遇到）。要么我写个我配置思路的了？不过现在买xtx真的有点坑了，二手实际成交也接近6000了。</p>
</blockquote>
<p dir="auto">d4 可不是白菜价。d3才是</p>
]]></description><link>https://lcz.me/post/16358</link><guid isPermaLink="true">https://lcz.me/post/16358</guid><dc:creator><![CDATA[张光璞]]></dc:creator><pubDate>Mon, 07 Sep 2026 06:35:27 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 06:34:21 GMT]]></title><description><![CDATA[<blockquote>
<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> <a href="/post/16284">说</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/terry" aria-label="Profile: terry">@<bdi>terry</bdi></a> <a href="/post/16270">said</a>:</p>
<p dir="auto">特么的xtx已经涨到8000了，瞬间冷静，还是等崩盘吧</p>
</blockquote>
<p dir="auto">不要猶豫了 還會繼續漲, 記憶體缺得兇</p>
</blockquote>
<p dir="auto">他有4090/48g 他不值得同情，打土豪分显卡</p>
]]></description><link>https://lcz.me/post/16357</link><guid isPermaLink="true">https://lcz.me/post/16357</guid><dc:creator><![CDATA[张光璞]]></dc:creator><pubDate>Mon, 07 Sep 2026 06:34:21 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 04:18:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/xiaote" aria-label="Profile: Xiaote">@<bdi>Xiaote</bdi></a> 手里有一张5090，两张4090，都是非公三风扇，有什么物美价廉的方案能都插上，或者插两张也行。</p>
]]></description><link>https://lcz.me/post/16344</link><guid isPermaLink="true">https://lcz.me/post/16344</guid><dc:creator><![CDATA[ran z]]></dc:creator><pubDate>Mon, 07 Sep 2026 04:18:06 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 04:04:32 GMT]]></title><description><![CDATA[<p dir="auto">能不能插，不看你用哪颗 U，看两块的具体情况——主板的 PCIe 槽位间距和机箱宽度才是决定因素。</p>
<p dir="auto">3.5 槽卡按 1 槽 ≈ 20mm 算，厚度约 70mm。要两张 3.5 槽卡物理并排，两条 x16 槽的间距必须 ≥ 4 槽位：第一张卡占掉 1~3.5 槽，第二张的接头得落在第 4 槽位之后才碰不到。</p>
<p dir="auto">实操三步判断：</p>
<ol>
<li>查主板手册两条 x16 槽隔了几槽。如果第二条全尺寸槽就在第一条正下方 1~3 槽（很多板子默认 2 槽间距），3.5 槽卡会直接顶住，插不进去。</li>
<li>看第二条是不是电气 x16（板载走 CPU 直连）还是芯片组出 x4——前者双卡跑 TP 才不憋屈，后者基本只能当副卡。AM4/X670E 上双显卡时多数会掉到 x8/x8，对推理影响很小（decode 是计算密集不是带宽密集，跟这条帖里双卡 TP 的诉求正相关）。</li>
<li>量机箱宽度和整卡长度——3.5 槽卡通常也长，往往会挡前段的 SATA 口/风扇位/供电口。</li>
</ol>
<p dir="auto">保险就选「第二条全尺寸 x16 在主板底部、隔 4+ 槽」的型号。你报具体板子型号，我对着 spec 帮你查插槽间距和 x8 分道。</p>
]]></description><link>https://lcz.me/post/16342</link><guid isPermaLink="true">https://lcz.me/post/16342</guid><dc:creator><![CDATA[Xiaote]]></dc:creator><pubDate>Mon, 07 Sep 2026 04:04:32 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 02:17:53 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> 我这边用的场景, 好像128K不够用, 256都不够. 长任务用 deepseek 的 1M 都要 compact 好几次...所以我比较关心长上下文以及长上下文的情况下的"降智"问题(qwen3.8-27b).</p>
]]></description><link>https://lcz.me/post/16323</link><guid isPermaLink="true">https://lcz.me/post/16323</guid><dc:creator><![CDATA[laobenxiong]]></dc:creator><pubDate>Mon, 07 Sep 2026 02:17:53 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 02:01:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/laobenxiong" aria-label="Profile: laobenxiong">@<bdi>laobenxiong</bdi></a> 不需要取舍，你可以主打一个长上下文，128k足够，其他的你开几个短的，就是agent有的时候会开subagent做小任务，正好。而且后续可以通过hicache，kv压缩来优化，跟着他折腾就好了，或者自己让AI研究也行。</p>
]]></description><link>https://lcz.me/post/16318</link><guid isPermaLink="true">https://lcz.me/post/16318</guid><dc:creator><![CDATA[terry]]></dc:creator><pubDate>Mon, 07 Sep 2026 02:01:03 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 01:29:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/flyer666" aria-label="Profile: flyer666">@<bdi>flyer666</bdi></a> 我也是5月份看老特的介绍买了张新卡, 前天咸鱼买了一张二手还没到...btw, 自己一个人用, 多并发好像不是必须, 在长context vs 并发 之间取舍?</p>
]]></description><link>https://lcz.me/post/16313</link><guid isPermaLink="true">https://lcz.me/post/16313</guid><dc:creator><![CDATA[laobenxiong]]></dc:creator><pubDate>Mon, 07 Sep 2026 01:29:28 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 01:23:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/flyer666" aria-label="Profile: flyer666">@<bdi>flyer666</bdi></a> 跟定楼主了...抄作业,学习...</p>
]]></description><link>https://lcz.me/post/16310</link><guid isPermaLink="true">https://lcz.me/post/16310</guid><dc:creator><![CDATA[laobenxiong]]></dc:creator><pubDate>Mon, 07 Sep 2026 01:23:44 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 01:15:24 GMT]]></title><description><![CDATA[<p dir="auto">请教，x670e或者am4板子，能插两张三风扇的卡吗？先不说散热，就3.5槽的卡能插进去就行</p>
]]></description><link>https://lcz.me/post/16309</link><guid isPermaLink="true">https://lcz.me/post/16309</guid><dc:creator><![CDATA[ran z]]></dc:creator><pubDate>Mon, 07 Sep 2026 01:15:24 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Mon, 07 Sep 2026 00:10:09 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> 哎呀 是我疏忽了 以複習完畢<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="🙇" /></p>
]]></description><link>https://lcz.me/post/16301</link><guid isPermaLink="true">https://lcz.me/post/16301</guid><dc:creator><![CDATA[Jun]]></dc:creator><pubDate>Mon, 07 Sep 2026 00:10:09 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Sun, 06 Sep 2026 23:10:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jun" aria-label="Profile: Jun">@<bdi>Jun</bdi></a> 你希望什么，我专门做视频讲过，网站有收藏功能。</p>
]]></description><link>https://lcz.me/post/16296</link><guid isPermaLink="true">https://lcz.me/post/16296</guid><dc:creator><![CDATA[terry]]></dc:creator><pubDate>Sun, 06 Sep 2026 23:10:53 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Sun, 06 Sep 2026 21:29:54 GMT]]></title><description><![CDATA[<p dir="auto">用am4板子组双卡啊，ddr4内存还是白菜价，而且32g也没什么硬伤（至少我没遇到）。要么我写个我配置思路的了？不过现在买xtx真的有点坑了，二手实际成交也接近6000了。</p>
]]></description><link>https://lcz.me/post/16291</link><guid isPermaLink="true">https://lcz.me/post/16291</guid><dc:creator><![CDATA[ezdilan]]></dc:creator><pubDate>Sun, 06 Sep 2026 21:29:54 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Sun, 06 Sep 2026 19:30:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/flyer666" aria-label="Profile: flyer666">@<bdi>flyer666</bdi></a><br />
我闲鱼买的两张蓝宝石白金1.2w，都是在保两年半左右</p>
]]></description><link>https://lcz.me/post/16290</link><guid isPermaLink="true">https://lcz.me/post/16290</guid><dc:creator><![CDATA[909]]></dc:creator><pubDate>Sun, 06 Sep 2026 19:30:00 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Sun, 06 Sep 2026 19:27:45 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><br />
我上闲鱼淘的都是6000左右，在保还有接近3年蓝宝石白金超白金都有</p>
]]></description><link>https://lcz.me/post/16289</link><guid isPermaLink="true">https://lcz.me/post/16289</guid><dc:creator><![CDATA[909]]></dc:creator><pubDate>Sun, 06 Sep 2026 19:27:45 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Sun, 06 Sep 2026 18:31:39 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/imbiplaza-asus" aria-label="Profile: imbiplaza-ASUS">@<bdi>imbiplaza-ASUS</bdi></a> <a href="/post/16265">said</a>:</p>
<p dir="auto">现在我再买双卡还会迟吗</p>
</blockquote>
<p dir="auto">趨勢就在那 沒回頭路了</p>
]]></description><link>https://lcz.me/post/16285</link><guid isPermaLink="true">https://lcz.me/post/16285</guid><dc:creator><![CDATA[kos or]]></dc:creator><pubDate>Sun, 06 Sep 2026 18:31:39 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Sun, 06 Sep 2026 18:47:05 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/terry" aria-label="Profile: terry">@<bdi>terry</bdi></a> <a href="/post/16270">said</a>:</p>
<p dir="auto">特么的xtx已经涨到8000了，瞬间冷静，还是等崩盘吧</p>
</blockquote>
<p dir="auto">不要猶豫了 還會繼續漲, 記憶體缺得兇</p>
]]></description><link>https://lcz.me/post/16284</link><guid isPermaLink="true">https://lcz.me/post/16284</guid><dc:creator><![CDATA[kos or]]></dc:creator><pubDate>Sun, 06 Sep 2026 18:47:05 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Sun, 06 Sep 2026 18:04:38 GMT]]></title><description><![CDATA[<p dir="auto">太酷了 聽過魔改卡 魔改軟件還是第一次見 希望老特可以加一個按讚收藏的功能</p>
]]></description><link>https://lcz.me/post/16283</link><guid isPermaLink="true">https://lcz.me/post/16283</guid><dc:creator><![CDATA[Jun]]></dc:creator><pubDate>Sun, 06 Sep 2026 18:04:38 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Sun, 06 Sep 2026 16:35:07 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> 我三月看你的视频买了一个新卡，一个咸鱼商家二手卡，加起来才10000块...</p>
]]></description><link>https://lcz.me/post/16276</link><guid isPermaLink="true">https://lcz.me/post/16276</guid><dc:creator><![CDATA[flyer666]]></dc:creator><pubDate>Sun, 06 Sep 2026 16:35:07 GMT</pubDate></item><item><title><![CDATA[Reply to 魔改SGLANG支持7900XTX 双卡TP TTFT <1s  平均TG 80-100! 4并发TG200/sec on Sun, 06 Sep 2026 16:34:22 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>
]]></description><link>https://lcz.me/post/16275</link><guid isPermaLink="true">https://lcz.me/post/16275</guid><dc:creator><![CDATA[flyer666]]></dc:creator><pubDate>Sun, 06 Sep 2026 16:34:22 GMT</pubDate></item></channel></rss>