彻底解决“Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA”警告

问题描述

在使用TensorFlow时,总是提醒“Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA”
在这里插入图片描述

解决办法

网上有很多说在python代码中添加:
os.environ[“TF_CPP_MIN_LOG_LEVEL”]=‘2’ # 只显示 warning 和 Error
来忽略警告


但是这样无疑使治标不治本,只是掩耳盗铃罢了


根本方法:出现这样的问题是我们的TensorFlow版本出现问题了,因此要换成支持cpu用AVX2编译的TensorFlow版本

  1. 首先,卸载原先的版本错误的TensorFlow:
    pip3 uninstall tensorflow
    P.S. 如果是python2版本请使用pip uninstall tensorflow
    彻底解决“Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA”警告_第1张图片
  2. 安装正确版本的TensorFlow
    github上有很多TensorFlow的版本可供下载,Windows系统下载地址,其他系统下载地址
    根据readme文件找到适合自己的TensorFlow版本
    彻底解决“Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA”警告_第2张图片
    因为我的开发环境是Ubuntu18.04+python3.6,所以选择这个版本
    下载至本地
    安装:sudo pip3 install tensorflow-1.9.0-cp36-cp36m-linux_x86_64.whl
    (注意使用sudo权限)
    在这里插入图片描述

大功告成,这样就不会再看到无法编译的警告,彻底解决问题啦~~~

你可能感兴趣的:(问题分析)