1.0Tensorflow中出现编译问题的解决方案

跑简单tf例程的时候遇到这个
sess = tf.Session(),I tensorflow/core/platform/cpu_feature_guard.cc:] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4. SSE4. AVX, 

为什么会出现这个问题?

为了提升CPU计算速度的。若你有支持cuda的GPU,则可以忽略这个问题,因为安装SSE4.1, SSE4.2, AVX, AVX2, FMA, 仅仅提升CPU的运算速度(大概有3倍)。

解决方法:

  1. 忽视警告,并屏蔽警告

  开头输入如下:

import os

os.environ['TF_CPP_MIN_LOG_LEVEL'] = ''

  2.进 tensorflow 官网,从源码安装。

  https://*.com/questions/47068709/your-cpu-supports-instructions-that-this-tensorflow-binary-was-not-compiled-to-u?answertab=votes#tab-top

  1.0Tensorflow中出现编译问题的解决方案

需要bazel工具进行源码安装

上一篇:OODesign: Modelling an elevator using Object-Oriented Analysis and Design


下一篇:Ubuntu下添加Samba用户名与密码