latency hiding
AI infra interview questions tagged latency hiding, across every topic.
3 questions · 2 unlocked for you
Concepts behind "latency hiding"
The curriculum that explains the ideas these questions test.
Foundational
GPU Execution ModelA GPU hides memory latency with parallelism instead of caches: thousands of threads in flight, scheduled in warps of 32, pinned to streaming multiprocessors that switch between warps for free whenever one stalls. Every performance conversation in an AI infra loop, from occupancy to why decode is slow, rests on this one mechanism.🧩 GPU & Accelerator Architecture
Advanced
Occupancy and Register PressureOccupancy is the fraction of an SM's 64 warp slots that are resident, and it is capped by the 65,536 registers and 228 KB of shared memory each block consumes. It decides how much memory latency the hardware can hide for free, but the fastest kernels on a GPU routinely run at 25 percent, so the interview skill is knowing when to raise it and when to stop.⚡ Kernels & Compilers🔒 Premium
