【TensorFlow】常见警告:Your CPU supports instructions that this TensorFlow binary was not compiled to use:

Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2

但不是什么大不了的问题,搜了下资料特此记录一下。

参考自:https://bbs.csdn.net/topics/392284025

------------------------------------------------------------------------------------------------------------------------


该警告不影响程序的正常使用,若要运行时去除该警告,只需在程序头加上:

import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'


即可。

另附另一则就该警告的详细回答:

【TensorFlow】常见警告:Your CPU supports instructions that this TensorFlow binary was not compiled to use:_第1张图片


:) 

你可能感兴趣的:(【TensorFlow】常见警告:Your CPU supports instructions that this TensorFlow binary was not compiled to use:)