Saya baru mengenal TensorFlow. Saya baru saja menginstalnya (versi Windows CPU) dan menerima pesan berikut:
Berhasil memasang tensorflow-1.4.0 tensorflow-tensorboard-0.4.0rc2
Lalu ketika saya mencoba lari
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
sess.run(hello)
'Hello, TensorFlow!'
a = tf.constant(10)
b = tf.constant(32)
sess.run(a + b)
42
sess.close()
(yang saya temukan melalui https://github.com/tensorflow/tensorflow )
Saya menerima pesan berikut:
2017-11-02 01: 56: 21.698935: IC: \ tf_jenkins \ home \ workspace \ rel-win \ M \ windows \ PY \ 36 \ tensorflow \ core \ platform \ cpu_feature_guard.cc: 137] CPU Anda mendukung instruksi bahwa ini Biner TensorFlow tidak dikompilasi untuk digunakan: AVX AVX2
Tetapi ketika saya berlari
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
itu berjalan sebagaimana mestinya dan output Hello, TensorFlow!
, yang menunjukkan bahwa instalasi memang berhasil tetapi ada hal lain yang salah.
Apakah Anda tahu apa masalahnya dan bagaimana cara memperbaikinya?
>>> sess = tf.Session() 2017-11-05 18:02:44.670825: I C:\tf_jenkins\home\workspace\rel-win\M\windows\PY\ 35\tensorflow\core\platform\cpu_feature_guard.cc:137] Your CPU supports instruct ions that this TensorFlow binary was not compiled to use: AVX AVX2
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2
.