那是我第二次经历 tensorflow (gpu) 的整个安装过程。这次我在 cmd 中运行activate tensorflow
,然后如果我在 python 解释器中输入以下测试代码:
# Creates a graph.
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)
# Creates a session with log_device_placement set to True.
sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))
# Runs the op.
print(sess.run(c))
(来源)
它成功识别 GPU 并在其上运行矩阵函数。但是,当我打开 Anaconda Spyder IDE 并以解释器所说的代码正在 CPU 上运行的相同方式运行相同的测试时。我该如何解决?什么可能导致它?我在 Win 10 上运行。
任何帮助都会很有用,在此先感谢您。
亲切的问候,康尼