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

遇见这个提示是什么意思?

背景:今天安装的tensorflow是cpu版本的 在写了一个小小的demo后 出现了一个提示:

            2018-10-15 16:14:02.486398: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA

意思:

            这个警告是告诉使用者,你的cpu是支持AVX的

如何去掉这个无关痛痒的警告:

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

 

你可能感兴趣的:(Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA)