How to verify CuDNN installation?

前端 未结 9 952
余生分开走
余生分开走 2020-11-29 15:02

I have searched many places but ALL I get is HOW to install it, not how to verify that it is installed. I can verify my NVIDIA driver is installed, and that CUDA is installe

9条回答
  •  清歌不尽
    2020-11-29 15:20

    How about checking with python code:

    from tensorflow.python.platform import build_info as tf_build_info
    
    print(tf_build_info.cudnn_version_number)
    # 7 in v1.10.0
    

提交回复
热议问题