proomt

Search

Search posts, papers, and topics

All posts

Hugging Face Daily PapersXingyang Li, Dongyun Zou, Shining Zhang1 min readpaperadvanced

VC-Attention: Value Smoothing and Softmax Casting for Low-bit Attention

Summary

VC-Attention introduces a training‑free low‑bit attention pipeline for diffusion transformers. It smooths value tensors via lightweight online clustering (V‑Smooth) and quantizes only the residual after subtracting block means, restoring the mean from the softmax row sum. It also replaces the FP32 softmax exponential with a fused FP8 cast (ExpCast‑FP8) that maps log‑scores directly to E4M3 probab…

  • Value outliers dominate low‑bit attention error; V‑Smooth clusters values per hardware block to improve quantization.
  • Quantizing only the residual after block‑mean subtraction lets the mean be recovered from the softmax row sum, avoiding extra passes.
  • ExpCast‑FP8 fuses the softmax exponential and FP8 conversion into a single multiply‑add, eliminating the FP32 exponential bottleneck.
  • Benchmarks on Wan2.2, LongCat‑Video, HunyuanVideo‑1.5, and MiniMax‑H3 show both higher fidelity than prior low‑bit baselines and substantial speedups (up to 3.6×).

Attention is the main cost in long‑sequence video diffusion models. Low‑bit kernels can cut compute and memory, but quantization errors and the softmax exponential have limited prior solutions. VC‑Attention’s value‑centric smoothing and fused FP8 softmax directly address these bottlenecks, deliveri…

8/10

Related reading

  1. Video DeltaNet: A Video-Native Hybrid Attention for Livestream Video Generation

    Video DeltaNet (VDN) replaces full‑softmax attention in video diffusion models with a hybrid: per‑frame local Softmax for fine detail and a bidirectional linear memory (Video Delta Attention) for long‑range context. A teacher‑alignment schedule injects the linear branch into a pretrained MiniMax H3 model, preserving Softmax for text/audio streams. On eight NVIDIA B200 GPUs VDN‑H3 denoises a 14.3‑…

    Hugging Face Daily Papersarxiv.org1 minpaper
  2. SpectralShift: Effective Context Window Extension of Gated DeltaNet via Spectral Reparameterization

    This paper introduces SpectralShift, a spectral reparameterization method for extending the context window of Gated DeltaNet (GDN) linear attention models. It reconfigures the decay spectrum by enhancing slow propagation and preserving fast-decaying modes, consistently improving long-context capabilities during continual pretraining.

    Hugging Face Daily Papersarxiv.org1 minpaper
  3. MoME: Mixture-of-Memory Embeddings for Context-Aware Sparse Lookup

    The paper proposes Mixture of Memory Embeddings (MoME), a context‑aware sparse lookup that replaces each token’s single memory row with a gated mixture of multiple slots. Experiments on Llama‑3, MobileLLM and Qwen3 show MoME outperforms existing memory‑embedding baselines at equal parameter and FLOP budgets and exhibits interpretable routing for polysemous tokens.

    Hugging Face Daily Papersarxiv.org1 minpaper
  4. DACA-GRPO: Denoising-Aware Credit Assignment for Reinforcement Learning in Diffusion Language Models

    DACA‑GRPO adds denoising‑aware credit assignment to GRPO‑style RL trainers for diffusion LLMs. It computes per‑token importance scores from intermediate denoising steps and uses stratified masking to reduce mean‑field bias in likelihood estimates. Plug‑and‑play on three existing GRPO methods, it yields consistent gains on seven downstream tasks (up to +5.6 pp math, +7.4 pp code, +36.3 pp constrai…

    Apple Machine Learning Researchapple.com1 minpaper
  5. NVIDIA Vera Rubin NVL72 Delivers Leading Performance in MLPerf Inference v6.1 Debut

    NVIDIA’s Vera Rubin NVL72 AI inference system shows up to 3.7× higher throughput than the prior GB300 NVL72 on MLPerf v6.1 benchmarks (Qwen3‑VL, DeepSeek‑R1), achieves 99% scaling efficiency across 288 GPUs, and benefits from software optimizations (NVFP4 precision, kernel fusion, disaggregated serving). The post is a product announcement with concrete benchmark numbers but limited technical dept…

    Nvidianvidia.com4 min