<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>DSA on Text Matrix</title><link>https://txtmix.com/tags/dsa/</link><description>Recent content in DSA on Text Matrix</description><generator>Hugo</generator><language>zh-cn</language><lastBuildDate>Tue, 21 Jul 2026 20:06:14 +0800</lastBuildDate><atom:link href="https://txtmix.com/tags/dsa/index.xml" rel="self" type="application/rss+xml"/><item><title>colibrì 引擎拆解：在 25GB RAM 上跑 744B MoE 模型，纯 C 实现，比 vLLM-Moet 快 2.5 倍</title><link>https://txtmix.com/posts/tech/colibri-744b-moe-on-25gb-ram-pure-c-engine/</link><pubDate>Mon, 13 Jul 2026 21:55:00 +0800</pubDate><guid>https://txtmix.com/posts/tech/colibri-744b-moe-on-25gb-ram-pure-c-engine/</guid><description>&lt;h2 id="一句话判断">一句话判断&lt;/h2>
&lt;p>&lt;strong>colibrì（&lt;a href="https://github.com/JustVugg/colibri" target="_blank" rel="noopener noreffer ">JustVugg/colibri&lt;/a>）是当下把&amp;quot;小内存跑大模型&amp;quot;这件事做到工程极限的开源项目&lt;/strong>：单文件 &lt;code>c/glm.c&lt;/code> 3775 行 + 一组 ~30KB 的 headers，纯 C + OpenMP + AVX2/NEON，零 Python 运行时依赖，在 12 核 + 25GB RAM 的笔记本上把 744B 参数的 GLM-5.2（每 token 激活 ~40B）跑起来——而且在 6× RTX 5090 满配机器上，它达到 &lt;strong>6.28-6.84 tok/s 单请求解码&lt;/strong>，比同期 vLLM-Moet TP4 的 2.5-2.7 tok/s 快 &lt;strong>2.5 倍&lt;/strong>（&lt;a href="https://github.com/JustVugg/colibri/blob/main/docs/experiments/glm52-6x5090-2026-07-12.md" target="_blank" rel="noopener noreffer ">仓库 docs/experiments/glm52-6x5090-2026-07-12.md&lt;/a> 实测）。&lt;/p></description></item><item><title>GLM-5 全家桶拆解：从 Vibe Coding 到 Agentic Engineering 的开源旗舰模型</title><link>https://txtmix.com/posts/tech/zai-org-glm-5-vibe-coding-agentic-engineering-guide/</link><pubDate>Thu, 18 Jun 2026 21:03:00 +0800</pubDate><guid>https://txtmix.com/posts/tech/zai-org-glm-5-vibe-coding-agentic-engineering-guide/</guid><description>&lt;h1 id="glm-5-全家桶拆解从-vibe-coding-到-agentic-engineering-的开源旗舰模型">GLM-5 全家桶拆解：从 Vibe Coding 到 Agentic Engineering 的开源旗舰模型&lt;/h1>
&lt;h2 id="学习目标">学习目标&lt;/h2>
&lt;p>阅读本文后，你应该能够：&lt;/p>
&lt;ol>
&lt;li>&lt;strong>理解 GLM-5 系列的演进路线&lt;/strong>：描述 GLM-5、5.1、5.2 三代模型的差异和核心改进&lt;/li>
&lt;li>&lt;strong>掌握 IndexShare 稀疏注意力机制&lt;/strong>：解释 IndexShare 如何降低长上下文的计算成本&lt;/li>
&lt;li>&lt;strong>了解 slime 异步 RL 基础设施&lt;/strong>：描述 slime 如何解决 RL 训练中的训练-推理耦合瓶颈&lt;/li>
&lt;li>&lt;strong>解读 benchmark 结果&lt;/strong>：理解 Terminal-Bench、SWE-bench Pro、Vending Bench 2 的测量对象和信号量&lt;/li>
&lt;li>&lt;strong>评估部署可行性&lt;/strong>：根据硬件需求和部署文档判断是否可以本地部署 GLM-5&lt;/li>
&lt;/ol>
&lt;h2 id="目录">目录&lt;/h2>
&lt;ol>
&lt;li>&lt;a href="#%e4%b8%80%e9%a1%b9%e7%9b%ae%e5%ae%9a%e4%bd%8d%e4%b8%8e%e4%bb%93%e5%ba%93%e7%bb%93%e6%9e%84" rel="">项目定位与仓库结构&lt;/a>&lt;/li>
&lt;li>&lt;a href="#%e4%ba%8c%e4%b8%89%e4%bb%a3%e6%bc%94%e8%bf%9b%e5%8f%82%e6%95%b0context-%e4%b8%8e%e7%a8%80%e7%96%8f%e6%b3%a8%e6%84%8f%e5%8a%9b" rel="">三代演进：参数、Context 与稀疏注意力&lt;/a>&lt;/li>
&lt;li>&lt;a href="#%e4%b8%89%e8%ae%ad%e7%bb%83%e4%be%a7slime-%e5%bc%82%e6%ad%a5-rl-%e5%9f%ba%e7%a1%80%e8%ae%be%e6%96%bd" rel="">训练侧：slime 异步 RL 基础设施&lt;/a>&lt;/li>
&lt;li>&lt;a href="#%e5%9b%9bbenchmark-%e6%8b%86%e8%a7%a3%e8%83%bd%e9%aa%8c%e8%af%81%e4%bb%80%e4%b9%88%e4%b8%8d%e8%83%bd%e9%aa%8c%e8%af%81%e4%bb%80%e4%b9%88" rel="">benchmark 拆解：能验证什么、不能验证什么&lt;/a>&lt;/li>
&lt;li>&lt;a href="#%e8%87%aa%e6%b5%8b%e9%a2%98" rel="">自测题&lt;/a>&lt;/li>
&lt;li>&lt;a href="#%e7%bb%83%e4%b9%a0" rel="">练习&lt;/a>&lt;/li>
&lt;li>&lt;a href="#%e8%bf%9b%e9%98%b6%e8%b7%af%e5%be%84" rel="">进阶路径&lt;/a>&lt;/li>
&lt;li>&lt;a href="#%e8%b5%84%e6%96%99%e5%8f%a3%e5%be%84%e8%af%b4%e6%98%8e" rel="">资料口径说明&lt;/a>&lt;/li>
&lt;/ol>
&lt;p>&lt;code>zai-org/GLM-5&lt;/code> 不是单模型仓库，而是智谱 AI 一次性放出的&amp;quot;全家桶&amp;quot;——GLM-5、GLM-5.1、GLM-5.2 三代同堂，并配套本地部署与异步 RL 训练工具链。整条线的口径非常一致：&lt;strong>面向长链路（long-horizon）的 agentic 任务&lt;/strong>。换句话说，GLM 系列已经不满足于&amp;quot;把单个 prompt 答好&amp;quot;，而是要在数百轮、上千次工具调用里持续输出有效决策。&lt;/p></description></item></channel></rss>