ฉันยังใหม่กับ 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
ผมได้รับข้อความที่คล้ายกันมากในสถานการณ์เดียวกันข้อความเป็น