Reputation: 4115
I want to know if the latest CUDA version, which is 8.0, supports the GPUs in my computer, which are GeForce GTX 970 and Quadro K4200 (a dual-GPU system); I couldn't find the info online.
In general, how to find if a CUDA version, especially the newly released version, supports a specific Nvidia GPU?
Thanks!
Upvotes: 1
Views: 5161
Reputation: 152269
In general, how to find if a CUDA version, especially the newly released version, supports a specific Nvidia GPU?
All CUDA versions from CUDA 7.0 to CUDA 8.0 support GPUs that have a compute capability of 2.0 or higher. Both of your GPUs are in this category.
Prior to CUDA 7.0, some older GPUs were supported also. You can find details of that here.
Note that CUDA 8.0 has announced that development for compute capability 2.0 and 2.1 is deprecated, meaning that support for these (Fermi) GPUs may be dropped in a future CUDA release.
In general, a list of currently supported CUDA GPUs and their compute capabilities is maintained by NVIDIA here although the list occasionally has omissions for very new GPUs just released.
Upvotes: 7