What is the reasoning that Tensorflow-gpu is bound to a specific version of Nvidia\'s CUDA Toolkit? The current version appears to look for 9.0 specifically and will not work wi
When you download TF, you download a pre-built binary file. In the build process TF is hard linked into a specific version of Cuda, so you cannot use it with different cuda versions.
If you want to work with the new (or sometimes older) version of cuda you will need to install TF from source (check how here) Or, if you realy don't want to build yourself, check in these repos, there are others that publish specific TF binaries, few examples:
(I write here just about the TF versions that I worked with, maybe older TF versions use older versions of CUDA as well)