저는 TensorFlow를 처음 사용합니다. 최근에 Windows CPU 버전을 설치했으며 다음 메시지가 표시되었습니다.
tensorflow-1.4.0 설치 성공 tensorflow-tensorboard-0.4.0rc2
그런 다음 달리려고 할 때
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()
( https://github.com/tensorflow/tensorflow를 통해 찾았습니다 )
다음과 같은 메시지가 나타납니다.
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는이 명령을 지원합니다. TensorFlow 바이너리가 다음을 사용하도록 컴파일되지 않았습니다 : AVX AVX2
하지만 내가 달렸을 때
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
그것은해야하고 출력으로 그것을 실행 Hello, TensorFlow!
설치가 실제로 성공했지만 잘못 뭔가가 있음을 나타냅니다.
문제가 무엇이고 어떻게 해결하는지 알고 있습니까?
>>> 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
. 메시지는 입니다.