Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CUDA-capability and CUDA version: compatible?

I have one machine with a 1.1 compute-capability CUDA GPU. I want to reinstall CUDA and I think I'll go with 5.0;

Is there any such thing as compatibility between CUDA-capability and CUDA's version? Will I get troubles in using CUDA 5.0 with a C-C 1.1. GPU?

Thanks!

like image 740
a3mlord Avatar asked Jan 30 '13 09:01

a3mlord


1 Answers

At the time of writing, all CUDA versions were backwards compatible with older CUDA compatible hardware.

So the CUDA toolkit through to version 6.5 will work perfectly with a compute 1.1 capability device, although a number features present in the toolkit are not supported on these older devices. However there has been a progressive deprecation of older hardware in newer tool kits since then. As of June 2019:

  • Support for compute 1.x capability devices was removed in CUDA 7.
  • Support for compute 2.x capability devices was removed in CUDA 9.
like image 77
talonmies Avatar answered Sep 29 '22 07:09

talonmies