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

GitHub
AI Infra2025

Measures generative AI inference performance with token-level metrics (TTFT, inter-token latency), latency, and throughput under realistic traffic patterns. Provides a multiprocess engine, real-time TUI dashboard, extensible plugins, and integrations for telemetry and result uploads, aimed at inference benchmarking and capacity planning.

GitHub
AI Train2019

Train and experiment with multi-billion to trillion-parameter transformer models on large GPU clusters using GPU-optimized building blocks and reference training scripts; offers advanced parallelism and mixed-precision support for research teams and ML engineers.

GitHub

Indexes full text of visited web pages and local files on a self‑hosted server so you can search your personal knowledge from a web UI, terminal, CLI, or an AI assistant. Runs without mandatory telemetry, offers a browser extension for automatic capture, and supports optional semantic search via a configurable embeddings endpoint.