Nunchux AI 推出 VC-Attention:免訓練低位注意力核心,加速影片擴散 Transformer
Nunchux AI has released VC-Attention, a training-free low-bit attention kernel built for video Diffusion Transformers (DiTs).It targets 2 problems at once: value quantization error and a slow softmax stage.
Why Attention is the Video Bottleneck Video DiTs flatten a clip into 1 sequence of spatiotemporal tokens and run full self-attention at every layer.A 5-second 720p Wan2.2-14B clip spans about 70K tokens.On the RTX 5090, attention takes more than 64% of generation time.
The research team states that attention is about two thirds of every MiniMax-H3 denoising step on a single B200.Low-bit Tensor Cores speed up the 2 matrix products, QK and PV.2 obstacles remain.First, prior methods like SageAttention2 smooth queries and keys.
After QK smoothing and rotation, the value term accounts for 82% of output error on Wan2.2.Second, the softmax between the products still runs in FP32.On B200 and H200, that exponential and its FP8 cast become the longest pipeline stage.
V-Smooth: Fixing Value Outliers Value outliers sit in a few tokens, and their channels shift across heads, layers, and steps.A Hadamard rotation preserves token norms, so it does not remove them.Rotating V changes value error by just 0.2%.
V-Smooth takes a different route: Group: An online k-means clusters value tokens per batch and head.Keys and values are permuted together, so non-causal attention output is unchanged.Demean: Each 128-token hardware block subtracts its mean.
Only the residual is quantized, using per-channel E4M3 at 8 bits or NVFP4 at 4 bits.Restore: The mean is added back using the row sum online softmax already keeps.No second pass or extra buffer is needed.Averaged over 100 Wan2.2 heads, the block mean removes 8% of block energy in sequence order.
It removes 12% under DeltaQuant’s static cube and 36% after sorting.Each mean costs 0.125 bit per value element.Grouping runs only on the first 25% of denoising steps.The permutation is reused across 4 adjacent steps.Averaged over the full schedule, grouping costs 3 to 4% of attention time.
ExpCast-FP8: Removing the Softmax Bottleneck An E4M3 byte is already close to a logarithm of the value it stores.Read as an integer, it equals roughly 8 log2(v) + 56.So ExpCast-FP8 writes the byte directly from the log-domain score with 1 fused multiply-add.The constant β = -0.
35 centers the leftover error, and no constant is fitted per model.The direct path writes the same byte as the FP32 exponent-then-cast path on 79.6% of each doubling.Elsewhere it lands 1 code away.The paper proves a per-row total variation bound under 3.64%, plus any underflow tail.Across 204.
8K Wan2.2 attention rows, the measured average is 1.6%.ExpCast-FP8 applies only to the 8-bit kernel, since NVFP4 has no single affine log-to-code map.Hand-written CuTe/CUDA fusion of the preprocessing chain cuts 1 V-Smooth call from 42.2 ms to 4.8 ms on B200.
Explainer: How VC-Attention Works #mtp-vcattn-embed{background:#16142A!important;border:1px solid #39345E!important;border-radius:14px!important;overflow:hidden!important;margin:24px 0!important;padding:0!important;color:#EDEBFA!important;max-width:100%!
important} #mtp-vcattn-embed iframe{display:block!important;width:100%!important;height:600px;border:0!important;background:#16142A!important;margin:0!important;padding:0!important} #mtp-vcattn-embed hr,#mtp-vcattn-embed p:empty,#mtp-vcattn-embed del,#mtp-vcattn-embed s{display:none!
important} @media (max-width:640px){#mtp-vcattn-embed{border-radius:10px!important;margin:18px 0!important}} (function(){ var f=document.getElementById('mtp-vcattn-frame'); window.addEventListener('message',function(e){ if(!f||e.source!==f.contentWindow||!e.data||e.data.type!
=='mtp-vcattn-h')return; var h=parseInt(e.data.h,10); if(h>200&&h<6000)f.style.height=h+'px'; }); })(); Benchmarks Tests cover 4 open-weight video DiTs: Wan2.2-T2V-A14B, LongCat-Video, HunyuanVideo-1.5, and MiniMax-H3.Fidelity is scored against BF16 FlashAttention-4 outputs over 100 prompts.
GPU (Wan2.2)PrecisionAttention speedupEnd-to-end speedupB2008-bit1.59×1.19×H2008-bit1.46×1.13×RTX PRO 60004-bit2.27×1.36×RTX 50904-bit3.58×1.70× On B200, VC-Attention is 6.02× faster than SageAttention2, which ships no Blackwell kernel.On H200, the gap is 1.16×.
On workstation cards, 4-bit V-Smooth matches SageAttention3 on the RTX PRO 6000.It stays within 5% on the RTX 5090, so fidelity separates them.Fidelity results: At 8 bits, V-Smooth adds 2.3 dB PSNR over SageAttention2 on Wan2.2 and 2.8 dB on HunyuanVideo-1.5.Adding ExpCast-FP8 gives back 0.7 to 2.
1 dB but still beats SageAttention2 on all 4 models.At 4 bits, V-Smooth beats SageAttention3 by 2.9 dB on Wan2.2 and 3.6 dB on LongCat-Video.Run training-free, Attn-QAT falls 3.4 to 6.7 dB below SageAttention2.On MiniMax-H3 at 1344×768, attention runs 1.60× faster than BF16 FlashAttention-4 on B200.
PSNR is 20.2 dB versus 19.9 dB for SageAttention2.On B300, the paper reports 1.47× versus 1.31× for a naive FP8 kernel.The blog chart lists 1.51× for B300.Nunchux Attention, the company's proprietary extension, reaches 1.91× on B200 and 1.83× on B300 for MiniMax-H3 attention.
The method changes only per-interaction cost.So it can compose with sparse attention like Sparse VideoGen and Radial Attention, and distillation and multi-GPU execution.Nunchux says free MiniMax-H3 access is coming through its Modelverse waitlist.
Key Takeaways VC-Attention is training-free low-bit attention for video DiTs from Nunchux AI.V-Smooth clusters value tokens, then quantizes only residuals after block-mean subtraction.ExpCast-FP8 replaces the FP32 exponential and cast with 1 multiply-add.Wan2.2 attention runs 1.
59× faster on B200 and 3.58× on RTX 5090.No public kernel release yet; Nunchux runs a proprietary extension in its stack.Check out the Paper and Technical details.All credit goes to the researcher of this project.
Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter.Wait!are you on telegram?now you can join us on telegram as well.Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.?
Connect with us The post Nunchux AI Introduces VC-Attention: A Training-Free Low-Bit Attention Kernel That Speeds Up Video Diffusion Transformers appeared first on MarkTechPost.
Related
相關文章

美國 AI 巨頭提議開發減速,歐洲同行和政界並不認同
作者:清源 責編:清源 評論: 9 月 18 日消息,據路透社今天(18 日)報道,此前,阿莫迪、奧爾特曼和馬斯克先後發出警告,能力不斷增強的 AI 系統可能帶來風險,故有必要控制其發展節奏,但歐洲企業和官員對此表現出明顯懷疑。法國初創企業 Mistral 在聲明中指出,這些風險早在幾個月前就已十分明確了。

MiniMax Code CLI 正式開源,在評測中取得 76.7% 的任務通過率
作者:沁滄(實習) 責編:沁滄 評論: 感謝網友 Domado 的線索投遞!9 月 18 日消息,MiniMax 今晚宣佈,MiniMax Code CLI 的 v0.4.12 版本面向全球開發者正式開放,並且以 MIT 協議正式開放源代碼。

北京發佈“詞元經濟十條”:高標準建設詞元工廠,推動關鍵核心技術攻關
作者:浩渺 責編:浩渺 評論: 感謝網友 蛋殼兒 的線索投遞!9 月 18 日消息,北京市經濟和信息化局今日宣佈,北京市“詞元經濟十條”正式發佈。為貫徹落實《國務院關於深入實施“人工智能+”行動的意見》(國發〔2025〕11 號),率先培育智能經濟新形態,以詞元(Token)為抓手,發展詞元經濟新增量,制定《北京市加快詞元經濟發展的行動方案(2026—2028 年)》(注:以下簡稱《行動方案》)。
PrismML Releases Ternary Bonsai 2 27B: A 5.9 GB Apache 2.0 Model Retaining 98.2% of Qwen3.8 27B Performance
PrismML has released Ternary Bonsai 2 27B, a ternary-weight version of Qwen3.8 27B. The language model occupies 5.93 GB, against 53.80 GB in FP16. PrismML reports that it keeps 98.2% of the parent model’s average across 20 benchmarks.

OpenAI剛曝光循環架構,這家公司更早將其用於世界模型
鍵詞只有一個:循環。 Astra採用了一種被稱為“循環深度”(Recurrent Depth)的架構,本質是讓同一組Transformer層被反覆複用,用更少的參數實現更深的計算。 這被外界視為OpenAI對傳統“堆參數、堆算力”路線的一次重大修正——不再只是把模型做大,而是讓模型學會“反覆思考”。 消息一齣,整個AI社區迅速升溫。

千問辦公接入高德門店經營專家套件 提升實體店選址與經營效率
此項新功能自9月18日起正式上線,用戶只需在千問辦公添加相應套件並完成高德賬號授權,即可實現從門店選址到日常經營分析的全鏈路工作。隨著實體商業的不斷發展,傳統的人工選址和經營分析方式顯得效率低下且容易出錯。個體創業者在開新店時,往往需要花費大量時間進行實地勘察,整體耗時可達一週,而商家在監測門店熱度變化及競爭對手動態時,也面臨數據整理繁瑣、分析結果不準確的問題。