惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
博客园_首页
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
GbyAI
GbyAI
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Help Net Security
T
Tailwind CSS Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
博客园 - 叶小钗
雷峰网
雷峰网
量子位

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
NVIDIA CUTLASS: High-Performance CUDA Templates for AI Li...
pickuma · 2026-05-28 · via DEV Community

If you've trained a transformer in the last three years, your GPU spent most of its wall-clock time inside a matrix multiplication. The kernels doing that work were probably written by cuBLAS, generated by a compiler stack like Triton, or hand-assembled on top of NVIDIA's CUTLASS templates. CUTLASS is the one most people don't see directly, but it sits underneath a surprising amount of modern AI infrastructure — from FlashAttention to vLLM to several internal kernels inside PyTorch.

What CUTLASS actually is

CUTLASS — CUDA Templates for Linear Algebra Subroutines — is a header-only C++ template library NVIDIA publishes on GitHub under Apache 2.0. It is not a drop-in replacement for cuBLAS. cuBLAS gives you a closed-source binary with a stable API: you call cublasGemmEx and you get a tuned kernel. CUTLASS gives you the building blocks to write your own kernel, with control over tile sizes, data layouts, epilogues, and how the kernel decomposes work across the GPU's memory hierarchy.

That control is the point. If you're building a custom inference engine and your projection layer needs to fuse a GEMM with a SiLU activation and a residual add, cuBLAS can't fuse the epilogue for you — you'd launch the GEMM, then a separate elementwise kernel, paying twice for global memory traffic. With CUTLASS, the epilogue is a template parameter. You write the fusion once, instantiate the template, and the compiler emits a single kernel.

This is why CUTLASS shows up wherever standard cuBLAS shapes don't fit — unusual data types like FP8, custom epilogues, sparse or grouped GEMMs, attention-shaped matrix products. Anywhere the stock library doesn't have what someone needs and the performance ceiling matters, you tend to find a CUTLASS kernel.

CUTLASS is not a productivity library. It is a kernel-author's library. If you're writing PyTorch model code, you'll never import cutlass directly — you'll consume kernels that were built on top of it. The audience here is people who write the kernels other people import.

The hierarchy that makes CUTLASS work

A modern GPU is not flat. An NVIDIA H100 SXM has 132 streaming multiprocessors (SMs), each holding warps of 32 threads, with a tiered memory system spanning registers, shared memory, L2, and HBM. A well-tuned GEMM has to decompose the same multiplication problem at every level of that hierarchy and pick tile sizes that keep the tensor cores fed without spilling.

CUTLASS encodes this hierarchy directly into its type system:

  • Device-level templates describe the full GEMM problem and dispatch to a kernel grid.
  • Kernel-level templates describe how a single grid block divides its work.
  • Threadblock-level templates describe the tile each block computes, plus the shared-memory staging pattern.
  • Warp-level templates map onto tensor core MMA instructions — mma.sync on Ampere, wgmma on Hopper.
  • Thread-level templates handle per-thread accumulation and the epilogue.

Each layer takes the layer below it as a template parameter. The compiler instantiates the whole stack at build time, so you pay no virtual-dispatch overhead at runtime — the cost is build time and binary size. A non-trivial CUTLASS kernel can take tens of seconds to compile and produce a multi-megabyte object file. Teams ship CUTLASS-based libraries with ahead-of-time-generated kernels for the shapes they care about, rather than JIT-compiling per request.

The payoff is performance close to what NVIDIA's own profiler reports as the achievable peak for a given shape, with full control over how the kernel behaves. cuBLAS will silently fall back to a generic kernel for unusual shapes; CUTLASS lets you write the specialized one and own the result.

CuTe and the Python DSL

CUTLASS 3.x, released around the Hopper launch, introduced CuTe — short for CUDA Tensors. CuTe is a lower-level tensor algebra library that replaces a lot of the hand-rolled layout math in earlier CUTLASS versions. Instead of writing pointer arithmetic and indexing logic by hand, you describe a layout as a composition of shapes and strides, and CuTe handles the rest.

If you've worked with Triton's block-pointer API or with XLA's HLO layouts, CuTe will feel familiar in spirit, but it operates at a lower level — it's designed to give you the same control you'd have writing inline PTX, with composable abstractions instead of macros. Most new CUTLASS kernels targeting Hopper and Blackwell tensor cores are written using CuTe primitives rather than the older threadblock-level abstractions.

CUTLASS 4.x went further and added a Python DSL. You write kernels in a constrained subset of Python that JIT-compiles down to the same template stack the C++ library uses. This is aimed at researchers who want to prototype a kernel shape without setting up an NVCC build environment, and at framework authors who want to generate kernels programmatically.

The Python DSL is newer and the documentation is still catching up to the C++ side. If you're building production kernels today, the C++ template library is the better-documented path. The Python DSL is worth tracking if you prototype kernels often or generate them at build time.

When to reach for CUTLASS — and when not to

CUTLASS is the right tool when three things are true at once: you need a GEMM-shaped computation, you need control cuBLAS doesn't expose, and you're willing to spend the engineering time to tune kernels. If any of those is false, reach for something else.

  • For standard matrix multiplication in standard data types, cuBLAS is faster to integrate and usually within a few percent of a hand-tuned CUTLASS kernel.
  • For experimentation with custom kernels in Python, Triton has a gentler ramp and a much faster compile loop.
  • For attention specifically, FlashAttention and similar published kernels are likely already what you'd build.
  • For non-NVIDIA hardware, CUTLASS is a non-starter — it's CUDA-only by design.

The teams that get the most out of CUTLASS are the ones building inference engines, training frameworks, or specialized kernels for novel data types — the cases where the standard library doesn't have what you need and the gap between "close to peak" and "actually at peak" shows up in the GPU bill.


Originally published at pickuma.com. Subscribe to the RSS or follow @pickuma.bsky.social for new reviews.