背景
安装了TensorFlow,训练的时候死活用不到GPU,特别是在docker环境中,GPU是否可检查更为重要
依赖条件
已经安装好python、响应版本GPU的驱动和nvidia的驱动
检测代码
import tensorflow as tf
print(tf.__version__)
print(tf.reduce_sum(tf.random.normal([1000, 1000])))
print(tf.config.list_physical_devices('GPU'))
原创小于 1 分钟