- Stanford CUDA lectures
- âš Just enough CUDA to be dangerous
- ï»żï»żThe book I was recommended for learning CUDA when I first showed up at PyTorch: Programming Massively Parallel Processors
- available from UniMi and on Drive
- The environment variable that makes CUDA synchronous is
CUDA_LAUNCH_BLOCKING=1
. cuda-memcheck is also useful for debugging CUDA problems https://docs.nvidia.com/cuda/cuda-memcheck/index.html
- ï»żï»żThe book I was recommended for learning CUDA when I first showed up at PyTorch: Programming Massively Parallel Processors
- All about NVIDIA GPUs - PyTorch Developer Podcast
- PyTorch CUDA Semantics
- 1. Why CUDA Compatibility â CUDA Compatibility
- CUDA Compatibility
Snippets
CUDA version:
nvidia-smi | grep "CUDA Version" | awk '{print $9}'
CUDA driver version:
nvidia-smi | grep "Driver Version" | awk '{print $3}'