Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 334 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 334 Bytes

learn-cuda-with-us

learn CUDA with us, from simple operation up to complex.

how-to

  1. Make sure you have nvcc, after that,
nvcc 1-add-vector-1d.cu -o 1-add-vector-1d-out
./1-add-vector-1d-out
  1. You can debug using cuda-gdb,
nvcc -G -g -o test 1-add-vector-1d.cu
cuda-gdb test
break vectorAdd
run