본문 바로가기
IT/머신러닝

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

by 빨강자몽 2018. 6. 1.

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

  • 패키지 파일을 통해서 설치를 하였다면 다음과 같은 에러 메세지가 발생할 것이다.
  • 가장 간단한 해결방법은 성능은 조금 떨어질 수 있지만 그냥 사용하겠다 싶으면 다음 문장을 추가하면된다.
import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
  • 근본적으로 해결하고자 한다면 직접 소스를 빌드하여 설치해야 한다.