I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this Tensor

Posted php-linux

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this Tensor相关的知识,希望对你有一定的参考价值。

遇到了这个问题,意思是你的 CPU 支持AVX AVX2 (可以加速CPU计算),但你安装的 TensorFlow 版本不支持


解决:
1. 如果是初学者 或者 没有太大计算速度的需求,在开头加上这两行忽略这个提示即可
import os
os.environ[‘TF_CPP_MIN_LOG_LEVEL‘] = ‘2‘
1
2
说明:

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
1
2
3
2. 如果需要对CPU进行优化,可以访问下面的github,重新编译tensorflow源码以兼容AVX
https://github.com/lakshayg/tensorflow-build
————————————————
版权声明:本文为CSDN博主「Iovebecky」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/zhaohaibo_/article/details/80573676

以上是关于I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this Tensor的主要内容,如果未能解决你的问题,请参考以下文章

2.3 i++/i--与++i/--i的运算

你真的了解 i++, ++i 和 i+++++i 以及 i+++i++ 吗?

关于++i,--i,i++,i--

int i=i++;和i=++i;和i++

关于 i++ 与 ++i

i=i+1 i++ ++I的区别?