Top "Nvcc" questions

"nvcc" is NVIDIA's LLVM-based C/C++ compiler for targeting GPUs with CUDA.

NVCC - host compiler targets unsupported OS

I've been trying to get CUDA working on my PC. I tried clean (re-)installing the latest drivers and CUDA …

build cuda nvcc cl
nvcc fatal : Value 'sm_61' is not defined for option 'gpu-architecture' error with theano

I was setting up python and theano for use with gpu on; ubuntu 14.04, GeForce GTX 1080 already installed NVIDIA driver (367.27) and …

python cuda gpu theano nvcc
nvcc fatal: A single input file is required for a non-link phase when an outputfile is specified

I'm getting this problem with Nsight Eclipse. I just installed my Cuda Toolkit 5.0 I have a project which uses several …

cuda compiler-errors nvcc nsight
Limiting register usage in CUDA: __launch_bounds__ vs maxrregcount

From the NVIDIA CUDA C Programming Guide: Register usage can be controlled using the maxrregcount compiler option or launch bounds …

cuda gpu nvidia nvcc
Howto pass flag to nvcc compiler in CMAKE

I have a C project in Cmake in which I have embedded cuda kernel module. I want to pass --ptxas-options=…

cmake cuda nvcc
CUDA 6.0 Linking error: undefined reference to `__cudaUnregisterFatBinary'

I am trying to compile a simple CUDA program in Eclipse. g++ -L/opt/cuda/lib64 -o "cuda_esn" ./cu_…

c++ eclipse cuda nvcc
What are the default values for arch and code options when using nvcc?

When compiling your CUDA code, you have to select for which architecture your code is being generated. nvcc provides two …

cuda nvcc
nvcc -Xptxas –v compiler flag has no effect

I have a CUDA project. It consists of several .cpp files that contain my application logic and one .cu file …

cuda nvcc
CUDA/C++ - linking error : undefined reference to

I'm a newbie looking for help with linking some compiled CUDA object code to a C++ project using g++. There …

c++ gcc cuda g++ nvcc
CUDA compile problems on Windows, Cmake error: No CUDA toolset found

so I've been successfully working on my CUDA program on my Linux but I would like to support Windows platform …

c++ cmake compiler-errors cuda nvcc