tensorflow (gpu) のインストール プロセス全体を実行するのは 2 回目です。今回は cmdactivate 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で実行しています。
どんな助けでも大いに役立ちます、事前に感謝します。
よろしく、 コニー