the cause of the problem
Today, try to install the CPU version of TensorFlow (GPU is not supported) by PIP3 install TensorFlow installation. The installation went well and I ran the simplest Hello wolrd example.
The results do run out and a warning pops up.
2017-11-28 09:07:17.849180:i tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that This tensorflow binary is not compiled to use:sse4.1 SSE4.2 AVX AVX2 FMA
B ' HelloWorld '
Warning that your tensorflow cannot be compiled using SSE4.1 SSE4.2 AVX AVX2 FMA these instruction sets.
Domestic blog did not find a solution, and finally found a solution in foreign articles.
Because the manylinux1_x86 is installed through the PIP. This is a generic version, which requires different compilations depending on the instruction set.
Attached GitHub Links: TensorFlow binaries supporting AVX, FMA, SSE etc.