Jestem nowy w TensorFlow. Niedawno go zainstalowałem (wersja procesora Windows) i otrzymałem następujący komunikat:
Pomyślnie zainstalowano tensorflow-1.4.0 tensorflow-tensorboard-0.4.0rc2
Potem, kiedy próbowałem uciec
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()
(które znalazłem na https://github.com/tensorflow/tensorflow )
Otrzymałem następującą wiadomość:
02.11.2017 01: 56: 21.698935: IC: \ tf_jenkins \ home \ workspace \ rel-win \ M \ windows \ PY \ 36 \ tensorflow \ core \ platform \ cpu_feature_guard.cc: 137] Twój procesor obsługuje instrukcje, które to Plik binarny TensorFlow nie został skompilowany do użycia: AVX AVX2
Ale kiedy uciekłem
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
działał tak, jak powinien i wyświetlał dane wyjściowe Hello, TensorFlow!
, co wskazuje, że instalacja rzeczywiście się powiodła, ale jest coś jeszcze nie tak.
Czy wiesz na czym polega problem i jak go naprawić?
>>> 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
.