本文主要是介绍Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX
警告说你的tensorflow不能使用SSE4.1 SSE4.2 AVX AVX2 FMA这些CPU矢量运算的指令码进行编译。
为了提升CPU计算速度的。若你有支持cuda的GPU,则可以忽略这个问题,因为安装SSE4.1, SSE4.2, AVX, AVX2, FMA, 仅仅提升CPU的运算速度(大概有3倍)。
解决方法:
-
忽视警告,并屏蔽警告
开头输入如下:
import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
2. 进 tensorflow 官网,从源码安装。
这篇关于Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!