This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN)to use the following CPU instructions in performance-critical operations: AVX AVX2
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
프로그램을 돌려보니 위와 같은 에러 메세지가 떴다.
에러라기보단 워닝에 가까운것 같은게, 그 뒤의 프로그램들은 오류 없이 잘 실행되었다.
위와 같은 경고 메세지를 없애는 방법은 간단하다.
import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
os를 임포트하는 코드 아래에 코드를 추가하면 된다.
'Python' 카테고리의 다른 글
[PyTorch] Setting up PyTorch plugin "upfirdn2d_plugin"... 문제 (0) | 2022.12.20 |
---|---|
[Conda] 콘다 업데이트의 위험성.. / CondaSSLError: OpenSSL (0) | 2022.12.20 |
[PyTorch] CUDA capability sm_86 is not compatible with the current PyTorch installation (0) | 2022.12.12 |
경로 내의 파일명 가져오는 방법 (0) | 2022.07.15 |
[Anaconda]sudo 명령어 없이 ffmpeg 설치 (0) | 2022.05.23 |