Tôi chưa quen với TensorFlow. Gần đây tôi đã cài đặt nó (phiên bản CPU Windows) và nhận được thông báo sau:
Đã cài đặt thành công tenorflow-1.4.0 tenorflow-tenorboard-0.4.0rc2
Sau đó khi tôi cố chạy
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()
(mà tôi đã tìm thấy qua https://github.com/tensorflow/tensorflow )
Tôi nhận được tin nhắn sau:
2017-11 / 02 01: 56: 21,698935: IC: \ tf_jenkins \ home \ workspace \ rel-win \ M \ windows \ PY \ 36 \ tenorflow \ core \ platform \ cpu_feature_guard.cc: 137] CPU của bạn hỗ trợ các hướng dẫn này Nhị phân TensorFlow không được biên dịch để sử dụng: AVX AVX2
Nhưng khi tôi chạy
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
nó chạy như bình thường và đầu ra Hello, TensorFlow!
, điều đó chỉ ra rằng việc cài đặt đã thực sự thành công nhưng có một cái gì đó sai.
Bạn có biết vấn đề là gì và cách khắc phục?
>>> 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
.