How to get the CUDA version?

As Jared mentions in a comment, from the command line: (or /usr/local/cuda/bin/nvcc –version) gives the CUDA compiler version (which matches the toolkit version). From application code, you can query the runtime API version with or the driver API version with As Daniel points out, deviceQuery is an SDK sample app that queries the above, along with … Read more

How to get the CUDA version?

As Jared mentions in a comment, from the command line: (or /usr/local/cuda/bin/nvcc –version) gives the CUDA compiler version (which matches the toolkit version). From application code, you can query the runtime API version with or the driver API version with As Daniel points out, deviceQuery is an SDK sample app that queries the above, along … Read more