@pauliusztin_: I just found one of the most useful resources for understanding GPUs. No more jumping between random docs, PDFs, and fo…
Summary
Modal Labs has released an open-source, interlinked GPU glossary that consolidates fragmented NVIDIA documentation, CUDA details, and compiler flags into a single navigable resource for engineers optimizing LLM training and inference.
View Cached Full Text
Cached at: 05/09/26, 03:41 AM
I just found one of the most useful resources for understanding GPUs. No more jumping between random docs, PDFs, and forum threads… → https://modal.com/gpu-glossary/readme… Most engineers working with GPUs run into the same problem: • Concepts are scattered across different sources • Low-level details don’t connect to high-level abstractions • You end up memorizing terms without really understanding them Things like: • What is a Streaming Multiprocessor? • How does Compute Capability affect your code? • What do nvcc flags do under the hood? So the team at @modal built a GPU Glossary that connects everything in one place. And: 1. It spans the entire stack 2. It’s built for engineers 3. It’s fully interlinked The process is simple: 1. Pick a concept you don’t fully understand 2. Follow the links across the stack 3. Build intuition instead of memorizing terms If you’re working with LLMs, training, or inference at scale, this kind of understanding matters. Because GPU bottlenecks are rarely obvious from the surface. Repo here: https://modal.com/gpu-glossary/readme…
README | GPU Glossary
Source: https://modal.com/gpu-glossary/readme
██████╗ ██████╗ ██╗ ██╗
██╔════╝ ██╔══██╗██║ ██║
██║ ███╗██████╔╝██║ ██║
██║ ██║██╔═══╝ ██║ ██║
╚██████╔╝██║ ╚██████╔╝
╚═════╝ ╚═╝ ╚═════╝
██████╗ ██╗ ██████╗ ███████╗███████╗ █████╗ ██████╗ ██╗ ██╗
██╔════╝ ██║ ██╔═══██╗██╔════╝██╔════╝██╔══██╗██╔══██╗╚██╗ ██╔╝
██║ ███╗██║ ██║ ██║███████╗███████╗███████║██████╔╝ ╚████╔╝
██║ ██║██║ ██║ ██║╚════██║╚════██║██╔══██║██╔══██╗ ╚██╔╝
╚██████╔╝███████╗╚██████╔╝███████║███████║██║ ██║██║ ██║ ██║
╚═════╝ ╚══════╝ ╚═════╝ ╚══════╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝
We wrote this glossary to solve a problem we ran into working with GPUs here atModal: the documentation is fragmented, making it difficult to connect concepts at different levels of the stack, likeStreaming Multiprocessor Architecture,Compute Capability, andnvcc compiler flags.
So we’ve read thePDFs from NVIDIA, lurked in thegood Discords, and even boughtdead-tree textbooksto put together a glossary that spans the whole stack in one place.
This glossary, unlike a PDF or a Discord or a book, is ahypertext document-- all pages are inter-linked with one another, so you can jump down to read about theWarp Schedulerso you can better understand thethreadsthat you came across in the article on theCUDA programming model.
You can also read it linearly. To navigate between pages, use the arrow keys, the arrows at the bottom of each page, or the table of contents (in the sidebar on desktop or in the hamburger menu on mobile).
The source for the glossary is availableon GitHub.
Similar Articles
@DanKornas: GPU engineering is too broad to learn from random tabs. Awesome GPU Engineering is a curated GitHub list of resources f…
A curated GitHub list of resources for learning GPU engineering, covering architecture, kernel programming, optimization, distributed systems, and AI acceleration with books, frameworks, profilers, and interview prep.
@vivekgalatage: Best structured reference I've found for GPU optimization - 450 papers, 14 years of research. Some techniques will have…
A tweet shares a structured reference of 450 papers on GPU optimization spanning 14 years, noting that while some techniques evolve, the mental models remain useful. It also references a lecture on GPU architectures by Onur Mutlu.
@0x0SojalSec: Fuck your paid courses, Master GPU engineering for AI systems. From foundational books and CUDA/ROCm programming to low…
A curated list of resources for mastering GPU engineering for AI systems, covering CUDA, ROCm, optimization tools, multi-GPU orchestration, and distributed training.
An open handbook on LLM inference at scale (GPU internals, KV cache, batching, vLLM/SGLang/TensorRT-LLM) [P]
An open, in-progress handbook explaining LLM inference internals including GPU memory hierarchy, KV cache, batching, and popular inference engines like vLLM and TensorRT-LLM.
@neural_avb: TIL about "GPU Mode" They got a youtube series to learn CUDA. Plus a github repo with slides/notebooks. Some lectures a…
GPU Mode is a learning resource featuring a YouTube series, GitHub repo with slides/notebooks, and a practice website for mastering CUDA programming.