01🔧CUDA Setup — Get NVCC Talking
0/5 lessonsDriver, toolkit, NVCC: the three-layer stack you actually have to install
CUDA C++ looks like plain C++ but adds three syntax extensions that change everything: function qualifiers, the triple-angle launch, and SIMT built-ins. Before any of it works, you need NVCC, a matching driver, and a Visual Studio or Linux toolchain to glue host and device code together. This track gets you from a blank Windows or Linux box to a green nvcc --version and a working hello kernel.
Lesson list (5)
- 01What CUDA C++ Really Is~12 min · cuda, nvcc, simt, qualifiers, intro
- 02Driver, Toolkit, NVCC — The Three Layers~14 min · cuda, driver, toolkit, nvcc, compatibility
- 03Setting Up on Windows + RTX 4090~14 min · cuda, windows, rtx, visual-studio, setup
- 04Setting Up CUDA on WSL or Linux~14 min · cuda, wsl, linux, ubuntu, setup
- 05Hello CUDA Example~12 min · cuda, hello, kernel, printf, first-program