How to get the cuda version?

后端 未结 19 2135
囚心锁ツ
囚心锁ツ 2020-11-30 16:24

Is there any quick command or script to check for the version of CUDA installed?

I found the manual of 4.0 under the installation directory but I\'m not sure whether

19条回答
  •  抹茶落季
    2020-11-30 16:54

    Use the following command to check CUDA installation by Conda:

    conda list cudatoolkit
    

    And the following command to check CUDNN version installed by conda:

    conda list cudnn
    

    If you want to install/update CUDA and CUDNN through CONDA, please use the following commands:

    conda install -c anaconda cudatoolkit
    conda install -c anaconda cudnn
    

    Alternatively you can use following commands to check CUDA installation:

    nvidia-smi
    

    OR

    nvcc --version
    

    If you are using tensorflow-gpu through Anaconda package (You can verify this by simply opening Python in console and check if the default python shows Anaconda, Inc. when it starts, or you can run which python and check the location), then manually installing CUDA and CUDNN will most probably not work. You will have to update through conda instead.

    If you want to install CUDA, CUDNN, or tensorflow-gpu manually, you can check out the instructions here https://www.tensorflow.org/install/gpu

提交回复
热议问题