-
工程上真正卡住的是Transformer 整体架构
把 18 篇文章里讲过的所有零件——QKV、多头注意力、causal mask、位置编码、FFN、残差、归一化——拼成一张完整的 Transfo…
-
整数溢出检查要付多少性能税
How much overhead should we expect from enabling integer overflow checks…
-
「An update on the inverse conjecture for the Gowe」笔记:问题从哪来、证明卡在哪
Recently, I had tentatively announced a forthcoming result with Ben Gree…
-
工程上真正卡住的是《Attention Is All You Need》论
回到 2017 年 6 月那篇论文:八位作者、Google Brain/Translate 的内部背景、LSTM 时代的工程困境、为什么这篇在当…
-
计算机延迟 1977–2017:交互变快了吗
I’ve had this nagging feeling that the computers I use today feel slower…
-
把「Analysis & PDE」写成可执行的阅读路径
I’ve joined the inaugural editorial board for a new mathematical journal…
-
落地注意力的复杂度问题时先把这几件事钉死
为什么 attention 是 O(n²),O(n²) 到底贵在哪里,5 类降复杂度方案的优劣,FlashAttention 不是 O(n) 这…
-
无限磁盘的幻觉
Hardware performance “obviously” affects software performance and affect…
-
读懂「Distinguished Lecture Series I: Charles Fefferma」:先把定义、反例和适用范围钉死
The first Distinguished Lecture Series at UCLA of this academic year is …
-
落地Causal Mask时先把这几件事钉死
自回归语言模型的核心约束是:预测 t 时刻只能用 t 之前的信息。Causal Mask 用一个上三角的 -∞ 矩阵让 softmax 之后未来…