From 4cad6fb1a8f2fe220b1f9e3c7503853382a75056 Mon Sep 17 00:00:00 2001 From: yurekami Date: Fri, 26 Dec 2025 01:33:58 +0900 Subject: [PATCH] fix: correct typo and grammar in comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - "Theorically" -> "Theoretically" - "can have use" -> "can use" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- csrc/sm100/prefill/sparse/fwd.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csrc/sm100/prefill/sparse/fwd.cu b/csrc/sm100/prefill/sparse/fwd.cu index 963ac78e..67883242 100644 --- a/csrc/sm100/prefill/sparse/fwd.cu +++ b/csrc/sm100/prefill/sparse/fwd.cu @@ -351,7 +351,7 @@ sparse_attn_fwd_kernel(__grid_constant__ const SparsePrefillParams params, __gri float2 d = float2_fma(p[i], scale, neg_new_max); d.x = exp2f(d.x); d.y = exp2f(d.y); - li += d.x + d.y; // NOTE Theorically we can have use FFMA2 here but actually this is faster... + li += d.x + d.y; // NOTE Theoretically we can use FFMA2 here but actually this is faster... s[i] = __float22bfloat162_rn(d); }