我是靠谱客的博主 含糊招牌,最近开发中收集的这篇文章主要介绍tensorflow查看使用的是cpu还是gpu,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

https://stackoverflow.com/questions/38009682/how-to-tell-if-tensorflow-is-using-gpu-acceleration-from-inside-python-shell

  • 方法1
from tensorflow.python.client import device_lib
print(device_lib.list_local_devices())

583030-20190920114256159-448652449.png

  • 方法2
    583030-20190920114411466-293723948.png

  • 方法3
    583030-20190920114452764-77975160.png

import tensorflow as tf
with tf.device('/gpu:0'):
    a = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[2, 3], name='a')
    b = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[3, 2], name='b')
    c = tf.matmul(a, b)

with tf.Session() as sess:
    print (sess.run(c))

安装了tensorflow-gpu,但是train的时候用的还是cpu.用方法1能检测到gpu,但实际上计算的时候还是用了cpu.用方法3可以检测出来.

import tensorflow as tf
tf.test.is_gpu_available()

583030-20190920162044675-1026660473.png

找到libcudart.so所在位置,添加路径到.bashrc
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib64
583030-20190920164830082-735932310.png

吐血,我机器上的是cuda10.1.  
https://github.com/tensorflow/tensorflow/issues/26289
583030-20190920164917967-2106389822.png
pip装的不支持cuda10.1....支持到cuda10.0

重新安装cuda10.0 https://developer.nvidia.com/cuda-10.0-download-archive?target_os=Linux&target_arch=x86_64&target_distro=Ubuntu&target_version=1604&target_type=runfilelocal下载,安装.done!

安装cudnn
https://developer.nvidia.com/rdp/cudnn-download

583030-20190920175949825-65839119.png

583030-20190920185721283-481420955.png

感动,终于在gpu上跑起来了!


转载于:https://www.cnblogs.com/sdu20112013/p/11556052.html

最后

以上就是含糊招牌为你收集整理的tensorflow查看使用的是cpu还是gpu的全部内容,希望文章能够帮你解决tensorflow查看使用的是cpu还是gpu所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部