What flags should be correctly filled in nvcc options like arch and code?
Hi viisautta, Please refer to Makefile of samples in ~/NVIDIA_CUDA-8.0_Samples/.
$ make
/usr/local/cuda-8.0/bin/nvcc -ccbin g++ -I…/…/common/inc -m64 -gencode arch=compute_53,code=sm_53 -gencode arch=compute_53,code=compute_53 -o
nice.
Thx