【关于TensorFlow 警告】Your CPU supports instructions that this TensorFlow binary was not compiled......

第一次玩TensorFlow,运行时出现警告: Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2
搜了半天,大部分回答都是通过设置日志级别来屏蔽这个警告,但是都没有说清楚原因:

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

直到看到了这个才搞明白: 当你有GPU的时候,大量的计算都会自动发送到GPU去执行,可以完全无视这个警告; 当你没有GPU的时候,才需要考虑这个警告,开启CPU的AVX2支持. 如何开启刚才那个 stackoverflow 的问题里也有讨论

你可能感兴趣的:(【关于TensorFlow 警告】Your CPU supports instructions that this TensorFlow binary was not compiled......)