InferQuest

Quest map

The complete inference engineering roadmap: ten phases from “what’s a KV cache” to a signed offer, with automatically verified milestones along the way. Quests unlock when their prerequisites are at least half done.

Phase 0 · Mental Models

Bedrock

The performance mental models and PyTorch fluency everything else builds on. Skimmable if you're strong here — but don't skip Horace He.

Phase 1 · Foundations

Transformer Internals

Build GPT from scratch, then learn the architecture zoo through the serving lens: attention variants, positional encodings, tokenizers, sampling, MoE.

Phase 2 · Engine Core

The Inference Engine

KV caching, continuous batching, paged attention, speculative decoding — then the capstone: build your own engine and pass a live OpenAI-conformance probe against it.

Phase 3 · The Metal

GPU Architecture & CUDA

PMPP, the memory hierarchy, occupancy, rooflines, and profiling with Nsight — learn why kernels are fast, and prove yours are.

Phase 4 · Kernelcraft

Kernel Engineering

Triton from puzzles to a working flash attention, the FlashAttention lineage, and the modern kernel-library landscape (FlashInfer, CUTLASS, ThunderKittens).

Phase 5 · Compression

Quantization

From GPTQ/AWQ to the FP8-default, NVFP4/MXFP4 present. Quantize real models with llm-compressor and prove quality with lm-eval.

Phase 6 · Production

Production Serving

vLLM V1 and SGLang on your own hardware: deploy, tune, benchmark with real methodology — and pass live conformance and latency probes against your endpoints.

Phase 7 · Datacenter Scale

Distributed Inference

TP/PP/EP, disaggregated prefill-decode, KV-cache tiering and transfer, MoE serving at scale, and the Kubernetes layer (llm-d, Gateway API, DRA).

Phase 8 · SLOs & Cost

Observability & Economics

Metrics, SLOs, goodput, capacity planning, and cost-per-token from first principles — the part that makes you dangerous in a business conversation.

Phase 9 · Proof of Work

The Arena

Merged PRs into the engines everyone runs, public benchmarks nobody can argue with, interview gauntlets, and the offer.