AIAny
AI Infra2021
Icon for item

xFormers

Drop-in transformer building blocks with custom CUDA kernels: memory-efficient exact attention (up to ~10x faster), block-sparse attention, fused softmax/layernorm/SwiGLU ops. Cuts VRAM and speeds up diffusion and LLM training on Nvidia GPUs.

Introduction

Most teams meet xFormers without ever choosing to install it — it shows up as the line that suddenly makes a Stable Diffusion or research transformer fit in VRAM and run faster. That is the whole design philosophy: rather than a full framework, it ships à la carte attention and transformer primitives, each a hand-tuned CUDA kernel you can drop into existing PyTorch code with no boilerplate.

What Sets It Apart
  • Memory-efficient exact attention: it reorders the computation to use far less memory while staying exact (not an approximation), reportedly up to ~10x faster on A100 in f16 forward+backward — so models fit at longer sequence lengths or larger batches.
  • Composable, domain-agnostic blocks: block-sparse and sparse attention, fused softmax, fused linear layers, fused layer norm, fused dropout+bias+activation, and fused SwiGLU — you can adopt a single piece without buying into an entire framework.
  • Real reach over hype: 14k+ dependent projects rely on it, and for a long stretch it was the attention backend powering diffusion and LLM speedups before equivalent kernels reached mainstream libraries.
Who It's For + Tradeoffs

Great fit if you are a researcher or engineer who wants bleeding-edge transformer kernels that are not yet in mainstream libraries, or you simply need to shave VRAM and latency on Nvidia hardware. Look elsewhere if you are not on Nvidia/CUDA — the fast path is optimized for it, with only experimental AMD/ROCm builds and no CPU support — if you want a turnkey training framework rather than parts, or if your stack already bundles equivalent fused attention: much of xFormers' original edge has since merged upstream into PyTorch's scaled-dot-product attention.

Information

  • Websitegithub.com
  • OrganizationsMeta AI
  • AuthorsFacebook Research (Meta)
  • Published date2021/10/13

Categories

More Items

Enables RL post-training with million-token prompts under a fixed GPU budget by evaluating shared prompt state without autograd, retaining only minimal model state, and replaying short response branches; instantiated as GRPO and demonstrated on Qwen3.6-27B and GLM-5.2 up to multi-million token execution.

GitHub
AI Infra2026

Defines OpenTelemetry semantic conventions for generative AI telemetry — spans, metrics, and events for GenAI clients, the Model Context Protocol (MCP), and provider-specific integrations. Includes YAML models, human-readable docs, and reference implementations to standardize observability across GenAI deployments.

GitHub
AI Infra2024

Provides a lightweight build platform for HIP and ROCm that supports building ROCm, PyTorch, and JAX from source, multi-architecture nightly releases, and integrated CI/CD and developer tooling for Linux and Windows.