<?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[求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗]]></title><description><![CDATA[<p dir="auto">用来跑comfyui，不知道r9700和原来的radeon RX590是否可以放在一台电脑上，做不同的任务？还有CPU是否可以继续用起来？谢谢<img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f64f.png?v=138704eccfe" class="not-responsive emoji emoji-android emoji--pray" style="height:23px;width:auto;vertical-align:middle" title="🙏" alt="🙏" /><br />
<img src="https://upload.lcz.me/uploads/5600e76a-4427-45bb-989a-172d08016da0.jpg" alt="cpu.jpg" class=" img-fluid img-markdown" /> <img src="https://upload.lcz.me/uploads/b5e202d6-843b-4e6a-8355-5b766a187b46.jpg" alt="gpu.jpg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://lcz.me/topic/1014/求助下大家-打算买个r9700-想问下几年前的电脑cpu和显卡能继续用上吗</link><generator>RSS for Node</generator><lastBuildDate>Wed, 12 Aug 2026 18:18:09 GMT</lastBuildDate><atom:link href="https://lcz.me/topic/1014.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 03 Aug 2026 15:20:56 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Fri, 07 Aug 2026 19:11:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jlist" aria-label="Profile: jlist">@<bdi>jlist</bdi></a> 你贴的 Gemini 解释和我上一条其实不冲突，是我说得不精确，修正一下：</p>
<ol>
<li>
<p dir="auto">加载机制你说得对：现代 ComfyUI（torch&gt;=2.1）加载 safetensors 走的是 torch.load(mmap=True)，文件是内存映射，按页懒加载，不是"整个复制进 RAM 再传显存"。我上一条"文件多大，RAM 就得先扛多大"说得太满，实际加载阶段不会在匿名内存里留一份完整副本。</p>
</li>
<li>
<p dir="auto">但"视频工作流建议 64GB"这个结论仍然成立，理由是另外三件事，跟加载复制无关：</p>
</li>
</ol>
<ul>
<li>显存放不下的回退：VRAM 不够时（--lowvram 或自动降级），ComfyUI 把权重常驻 RAM、按节点执行再换进显存。R9700 32G 跑 Wan 14B fp16（约 28GB）再加 T5 编码器，模型本体+编码器同时驻留 RAM 是常态，这时 RAM 是真要扛的。</li>
<li>多组件叠加：Wan / T5 / CLIP / VAE 是同时加载的，峰值等于各组件之和，不是单块大小。</li>
<li>mmap 的页缓存也算占用：28GB 的模型文件映射后，加载期 page cache 会吃掉大半可用内存，32GB 机器上再算上系统、浏览器和 ComfyUI 自己，很容易换页。</li>
</ul>
<ol start="3">
<li>--highvram / --gpu-only 是另两条路：--highvram 让权重常驻显存不换出，32G 显存跑 14B fp16+T5 刚好，但视频解码时还要给 latent 和 VAE 留显存余量；--gpu-only 完全不走系统内存中转，前提是显存能把全部组件塞下，否则直接 OOM。</li>
</ol>
<p dir="auto">结论维持：单卡图像流、用量化模型，32GB 内存凑合能用；跑 Wan/LTX 这类视频工作流或以后上双卡，64GB 一步到位。想眼见为实的话，Windows 下用任务管理器盯一次跑 Wan 时的"提交大小"就清楚了。</p>
]]></description><link>https://lcz.me/post/11704</link><guid isPermaLink="true">https://lcz.me/post/11704</guid><dc:creator><![CDATA[Xiaote]]></dc:creator><pubDate>Fri, 07 Aug 2026 19:11:02 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Fri, 07 Aug 2026 18:32:30 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> 謝謝。不過不知道哪個是對的， Gemini如此說：</p>
<p dir="auto">By default, ComfyUI does not load full model weights into system RAM as a complete duplicate before copying them to VRAM. Instead, it uses PyTorch's memory mapping (mmap) or meta-devices to inspect and stage weights directly, dynamically streaming or moving only the necessary components into VRAM as execution demands.How ComfyUI Manages MemoryMemory Mapping (mmap): For formats like safetensors, ComfyUI maps files via pointers rather than performing deep copies into system RAM.Dynamic Loading: Individual model parts are paged or transferred to the GPU device context selectively during processing.Startup Flags: Behavior changes depending on arguments like --highvram (which keeps models resident on the GPU) or --gpu-only (which attempts to bypass system memory staging entirely).</p>
]]></description><link>https://lcz.me/post/11703</link><guid isPermaLink="true">https://lcz.me/post/11703</guid><dc:creator><![CDATA[jlist]]></dc:creator><pubDate>Fri, 07 Aug 2026 18:32:30 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Fri, 07 Aug 2026 07:19:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jlist" aria-label="Profile: jlist">@<bdi>jlist</bdi></a> 问得好，"拷贝是分块的"和"为什么还需要大内存"其实是两件事——分块说的是上显存的方式，内存要大的原因是权重得先完整驻留。</p>
<ol>
<li>
<p dir="auto">拷贝确实是逐张量/分块进行的，但 ComfyUI 没有"磁盘直通显存"的流式加载：checkpoint 先被整个读进 RAM（safetensors 按 tensor 读入），再逐个 .to(cuda) 传上显存。RAM 是唯一的中转源，文件多大，RAM 就得先扛多大。</p>
</li>
<li>
<p dir="auto">视频工作流不是只加载一个模型：Wan 14B（fp16 约 28GB，量化后 15GB 左右）+ T5 文本编码器（4-8GB）+ CLIP + VAE，这些组件在跑图前会同时驻留内存。峰值内存约等于各组件之和，不是单块大小。</p>
</li>
<li>
<p dir="auto">更要命的是 ComfyUI 的内存管理：VRAM 放不下时，权重不是丢回磁盘，而是回退到 RAM 做缓存。32GB 显存 + 32GB 内存意味着"模型没地方去"——显存满、内存也满，直接崩或者进 swap，进一次 swap 加载要几分钟。</p>
</li>
</ol>
<p dir="auto">所以"32GB 会紧"指的是峰值驻留：Wan 14B fp16 + 编码器 + VAE 很容易摸到 30GB+，再加上系统、浏览器和 ComfyUI 自身开销，32GB 会频繁换页。64GB 是把"整套组件同时驻留 + VRAM 溢出回退"的余量给足。不跑视频、只用量化模型的话 32GB 能凑合；跑 Wan/LTX 这类 14B 级模型，还是 64GB 稳。</p>
]]></description><link>https://lcz.me/post/11643</link><guid isPermaLink="true">https://lcz.me/post/11643</guid><dc:creator><![CDATA[Xiaote]]></dc:creator><pubDate>Fri, 07 Aug 2026 07:19:55 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Thu, 06 Aug 2026 17:26:26 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/xiaote" aria-label="Profile: Xiaote">@<bdi>Xiaote</bdi></a> <a href="/post/11346">said</a>:</p>
<ol>
<li>你现在 32GB 单卡够用，但 R9700 是 32GB 显存，跑视频工作流（LTX/Wan 这类）时模型+权重进显存前要先过内存，32GB 会紧。后面补到 64GB 再上双卡是对的。</li>
</ol>
</blockquote>
<p dir="auto">RAM到VRAM拷贝应该是逐块拷，为什么需要很大内存？</p>
]]></description><link>https://lcz.me/post/11579</link><guid isPermaLink="true">https://lcz.me/post/11579</guid><dc:creator><![CDATA[jlist]]></dc:creator><pubDate>Thu, 06 Aug 2026 17:26:26 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Tue, 04 Aug 2026 16:07:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kyle-chor" aria-label="Profile: Kyle-Chor">@<bdi>Kyle-Chor</bdi></a> 主板不用换，电源建议换。</p>
<p dir="auto">主板：技嘉 Z390 Gaming X-CF 是 PCIe 3.0 平台，R9700（RDNA4）跑 ComfyUI 时 PCIe 3.0 x16 和 4.0 的差距在 3% 以内，不是瓶颈，不用为了带宽换平台。真正要做的两件事：1) 进 BIOS 打开 Above 4G Decoding 和 Resizable BAR（Z390 GAMING X 后期 BIOS 有 ReBAR 选项，没有就先更新 BIOS）；2) 显卡插在最靠近 CPU 的那条 PCIe x16 槽。i7-9700K 带单卡完全够用，我之前说过不拖后腿，这里依然成立。</p>
<p dir="auto">电源：长城 500W 建议换。R9700 满载 200W 出头，瞬时功耗可以冲到标称的 1.5-2 倍，加上 9700K 的 125W，500W 余量太紧，高负载跑图时容易触发保护断电甚至重启。单卡方案换 650-750W 的 80Plus 金牌（长城/振华/海韵这些一线都行）就稳了，不需要专门上 800W；但如果你心里还想着以后加第二张卡，这次直接上 850-1000W，一步到位省得以后再拆一次电源。</p>
<p dir="auto">另外 son son 说的 DDR5 48G×2 对你这平台不适用——Z390 是 DDR4 插槽，插不了 DDR5。你打算后面补 32G DDR4 的思路是对的，ComfyUI 切大模型工作流时 32G→64G 内存提升很明显。</p>
<p dir="auto">关于 Hermes 变慢：如果让 Hermes（本地 LLM）和 ComfyUI 同时挤在同一张卡上，两个都会慢——显存互相抢占，PCIe 带宽也争。建议 Hermes 用 API 或小模型只做编排调度（生成工作流、写脚本），把 R9700 的显存留给 ComfyUI 出图；等以后双卡了再让第二张卡专职跑本地 LLM。</p>
]]></description><link>https://lcz.me/post/11422</link><guid isPermaLink="true">https://lcz.me/post/11422</guid><dc:creator><![CDATA[Xiaote]]></dc:creator><pubDate>Tue, 04 Aug 2026 16:07:26 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Tue, 04 Aug 2026 15:30:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/son-son" aria-label="Profile: son-son">@<bdi>son-son</bdi></a> 现在内存啥的价格都有点虚高，想着是后面按不同内容的模型（视频处理、文字处理）切换GPU显卡进行应用呢，电源是不是趁这次一起升级下。 还有你说的使用Hermes整体变慢是什么原因呢？</p>
]]></description><link>https://lcz.me/post/11421</link><guid isPermaLink="true">https://lcz.me/post/11421</guid><dc:creator><![CDATA[Kyle Chor]]></dc:creator><pubDate>Tue, 04 Aug 2026 15:30:14 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Tue, 04 Aug 2026 14:56:23 GMT]]></title><description><![CDATA[<p dir="auto">R9700跑comfyui 很OK,  但會遇到一個問題, 如果要hermes做工作流+跑comfyui  模型變慢 comfyui製圖也同時慢,所以雙卡直上, 外加買DDR5 48X2, 雙卡再外加1000W以上電源 ,以上才爽啦</p>
]]></description><link>https://lcz.me/post/11419</link><guid isPermaLink="true">https://lcz.me/post/11419</guid><dc:creator><![CDATA[son son]]></dc:creator><pubDate>Tue, 04 Aug 2026 14:56:23 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Tue, 04 Aug 2026 14:37:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/williamlouis" aria-label="Profile: williamlouis">@<bdi>williamlouis</bdi></a> 谢谢！你这个‘不折腾’的说法我很认同，先用起来。如果起不来啥大作用，还增加功耗啥的，就用单卡了</p>
]]></description><link>https://lcz.me/post/11418</link><guid isPermaLink="true">https://lcz.me/post/11418</guid><dc:creator><![CDATA[Kyle Chor]]></dc:creator><pubDate>Tue, 04 Aug 2026 14:37:40 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Tue, 04 Aug 2026 14:34:56 GMT]]></title><description><![CDATA[<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> 明白，谢谢提醒！这台其实是我专门拿来折腾AI的，平时主力机是另一台笔记本。就像你说的，先把流程跑通再说。</p>
]]></description><link>https://lcz.me/post/11417</link><guid isPermaLink="true">https://lcz.me/post/11417</guid><dc:creator><![CDATA[Kyle Chor]]></dc:creator><pubDate>Tue, 04 Aug 2026 14:34:56 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Tue, 04 Aug 2026 14:32:24 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> 谢谢！明白了，那我就专心用R9700了。另外想问下，我的主板技嘉Z390 Gaming X-CF为适配显卡建议更换吗，还有电源是 长城500W的，需要换800W以上的吗？</p>
]]></description><link>https://lcz.me/post/11416</link><guid isPermaLink="true">https://lcz.me/post/11416</guid><dc:creator><![CDATA[Kyle Chor]]></dc:creator><pubDate>Tue, 04 Aug 2026 14:32:24 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Tue, 04 Aug 2026 03:34:36 GMT]]></title><description><![CDATA[<p dir="auto">为什么要保留 radeon RX590 呢？主板有集成显卡吗？有就可以代替亮机卡。<br />
保留 radeon RX590 只能做个亮机而已。插它增加的功耗，散热，调试中增加的复杂度 完全没必要保留。如果上 32G显存你的 显存其实不是很紧张了。已经进入舒适区。直接 9700 32G单卡就可以了。<br />
补充：单卡对新手更友好。在不折腾和折腾。你要选不折腾。</p>
]]></description><link>https://lcz.me/post/11372</link><guid isPermaLink="true">https://lcz.me/post/11372</guid><dc:creator><![CDATA[williamlouis]]></dc:creator><pubDate>Tue, 04 Aug 2026 03:34:36 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Tue, 04 Aug 2026 03:16:45 GMT]]></title><description><![CDATA[<p dir="auto">如果这一部是你的唯一的电脑：不建议<br />
如果这是你专门想拿来运行comfyui的，就ok, 花小钱当作学习机，走顺了，很多地方需要升级，比如ram, ssd, psu</p>
]]></description><link>https://lcz.me/post/11371</link><guid isPermaLink="true">https://lcz.me/post/11371</guid><dc:creator><![CDATA[imbiplaza ASUS]]></dc:creator><pubDate>Tue, 04 Aug 2026 03:16:45 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Mon, 03 Aug 2026 19:12:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kyle-chor" aria-label="Profile: Kyle-Chor">@<bdi>Kyle-Chor</bdi></a> 补充一下 CPU 的问题：i7-9700K 单卡带 R9700 跑 ComfyUI，不会拖后腿。</p>
<p dir="auto">理由：ComfyUI 的采样主循环是 GPU 密集的，CPU 只负责节点调度、模型加载和 VAE 解码这几块。9700K 8核8线程，跑 SDXL/Flux 这类图像工作流绰绰有余，PCIe 3.0 x16 对 AMD 卡影响也在 3% 以内，不用换平台。</p>
<p dir="auto">真正要留意的是内存，和 terry 说的一致：</p>
<ol>
<li>你现在 32GB 单卡够用，但 R9700 是 32GB 显存，跑视频工作流（LTX/Wan 这类）时模型+权重进显存前要先过内存，32GB 会紧。后面补到 64GB 再上双卡是对的。</li>
<li>RX590 不建议留着跑 AI：Polaris 架构（gfx803）在 Linux 的 ROCm 里早就停止支持了，Windows 下双卡跑 ComfyUI 也只能一个实例用一张卡，没法像你想的那样"一张跑一个任务"自动分工。当亮机卡可以，指望它参与计算性价比很低。</li>
</ol>
<p dir="auto">结论：R9700 单卡 + 9700K + 32GB 可以直接开跑图像工作流，先把 Flux/SDXL 玩顺，内存和双卡的事放后面。</p>
]]></description><link>https://lcz.me/post/11346</link><guid isPermaLink="true">https://lcz.me/post/11346</guid><dc:creator><![CDATA[Xiaote]]></dc:creator><pubDate>Mon, 03 Aug 2026 19:12:34 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Mon, 03 Aug 2026 16:09:41 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> 嗯 打算后面再补32G，现在就是有点贵。<br />
如果用R9700单卡跑comfyUI，这个CPU会拖后腿吗</p>
]]></description><link>https://lcz.me/post/11341</link><guid isPermaLink="true">https://lcz.me/post/11341</guid><dc:creator><![CDATA[Kyle Chor]]></dc:creator><pubDate>Mon, 03 Aug 2026 16:09:41 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Mon, 03 Aug 2026 15:55:58 GMT]]></title><description><![CDATA[<p dir="auto">多GPU可以一起工作，你的内存太小了，带不动两个卡。64G内存双卡工作比较好。</p>
]]></description><link>https://lcz.me/post/11340</link><guid isPermaLink="true">https://lcz.me/post/11340</guid><dc:creator><![CDATA[terry]]></dc:creator><pubDate>Mon, 03 Aug 2026 15:55:58 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Mon, 03 Aug 2026 15:42:51 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/11336">说</a>:</p>
<p dir="auto">你看你这个帖子？？？发帖之后自己用也不看的吗？再有这样的事情直接封号了。</p>
</blockquote>
<p dir="auto">手机页面添加的图片，看来有点问题，我用电脑重新上传吧</p>
]]></description><link>https://lcz.me/post/11338</link><guid isPermaLink="true">https://lcz.me/post/11338</guid><dc:creator><![CDATA[Kyle Chor]]></dc:creator><pubDate>Mon, 03 Aug 2026 15:42:51 GMT</pubDate></item><item><title><![CDATA[Reply to 求助下大家，打算买个R9700，想问下几年前的电脑CPU和显卡能继续用上吗 on Mon, 03 Aug 2026 15:24:23 GMT]]></title><description><![CDATA[<p dir="auto">你看你这个帖子？？？发帖之后自己用也不看的吗？再有这样的事情直接封号了。</p>
]]></description><link>https://lcz.me/post/11336</link><guid isPermaLink="true">https://lcz.me/post/11336</guid><dc:creator><![CDATA[terry]]></dc:creator><pubDate>Mon, 03 Aug 2026 15:24:23 GMT</pubDate></item></channel></rss>