码迷,mamicode.com
首页 > 其他好文 > 详细

报错解决——Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2

时间:2018-07-27 21:00:43      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:bsp   code   span   ide   isp   默认   target   port   eve   

  

  在导入tensorflow后,进行运算时,出现了报错Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2

  解决方法:在最顶行写入以下代码即可

import os
os.environ[TF_CPP_MIN_LOG_LEVEL] = 2 

 

参考资料:Advanced Vector Extensions 

技术分享图片
import os  
os.environ["TF_CPP_MIN_LOG_LEVEL"]=1 # 这是默认的显示等级,显示所有信息  
os.environ["TF_CPP_MIN_LOG_LEVEL"]=2 # 只显示 warning 和 Error   
os.environ["TF_CPP_MIN_LOG_LEVEL"]=3 # 只显示 Error  
View Code

 

报错解决——Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2

标签:bsp   code   span   ide   isp   默认   target   port   eve   

原文地址:https://www.cnblogs.com/zhuminghui/p/9379243.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!