如何消除Tensorflow在CPU编译中因不支持而产生的警告信息?
- 内容介绍
- 文章标签
- 相关推荐
本文共计378个文字,预计阅读时间需要2分钟。
在使用TensorFlow模块时,出现错误提示Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2。原因是下载的TensorFlow版本不支持CPU的AVX2编译。可能是安装时使用的pip install命令导致的。
使用TensorFlow模块时,弹出错误Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
原因是下载TensorFlow的版本不支持cpu的AVX2编译。
可能是因为安装时使用的pip install tensorflow ,这样默认会下载X86_64的SIMD版本。
本文共计378个文字,预计阅读时间需要2分钟。
在使用TensorFlow模块时,出现错误提示Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2。原因是下载的TensorFlow版本不支持CPU的AVX2编译。可能是安装时使用的pip install命令导致的。
使用TensorFlow模块时,弹出错误Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
原因是下载TensorFlow的版本不支持cpu的AVX2编译。
可能是因为安装时使用的pip install tensorflow ,这样默认会下载X86_64的SIMD版本。

