University of Pennsylvania, CIS 565: GPU Programming and Architecture, Project 0
- Edward Atter
- Tested on: Linux Mint 18.3 Sylvia (4.13.0-41-generic), Ryzen 7 2700x @ 3.7 ghz (base clock) 16GB, GTX 1070 TI 8GB GDDR5 (Personal)
- CUDA 9
Debugger works after adding export CUDA_DEBUGGER_SOFTWARE_PREEMPTION=1
to ~/.bashrc
.
src/CMakeLists.txt
was updated to increment the architecture value from 20 to 30.
cuda_add_library(src
${SOURCE_FILES}
OPTIONS -arch=sm_30
)
A nice intro to the dev environment.