TensorFlow(3)
-
NUMA node read from SysFS had negative value -1
환경 OS : RHEL 8.5 GPU : Nvidia GeForce GTX 1060 6GB CUDA : 11.6 문제발생 Tensorflow를 실행 시킬 때 아래와 같은 로그가 뜨면서 GPU 동작을 하지 않고 CPU로만 동작합니다. Found 3670 files belonging to 5 classes. Using 2936 files for training. 2022-03-29 16:21:12.425272: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so r..
2023.04.22 -
Could not load dynamic library 'libcudnn.so.8'
환경 OS : RHEL 8.5 GPU : Nvidia GeForce GTX 1060 6GB CUDA : 11.6 문제발생 Tensorflow를 실행 시킬 때 아래와 같은 로그가 뜨면서 GPU 동작을 하지 않고 CPU로만 동작합니다. 2022-03-29 16:21:12.448227: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libcudnn.so.8'; dlerror: libcudnn.so.8: cannot open shared object file: No such file or directory; LD_LIBRARY_PATH: :/usr/local/cuda-11.6/lib64 ..
2023.04.21 -
RHEL8.5 Python 및 Tensorflow 설치
이 글은 RHEL(Red Hat Enterprise Linux)에 Tensorflow를 설치하기 위한 글입니다. 먼저 이전에 작성한 블로그를 참고하여 CUDA를 설치하여야 합니다. Python 설치 RHEL에 python을 설치하기 위해서는 yum 또는 dnf를 통해 쉽게 설치가 가능합니다. $ sudo yum -y install python3 $ sudo dnf -y install python3 하지만 2022-03-28 기준 최신 버전인 3.10.4를 설치하도록 하겠습니다. Python Source 설치 전 패키지 설치 $ sudo dnf -y install gcc openssl-devel bzip2-devel libffi-devel 해당 패키지는 소스 파일의 Makefile을 컴파일하기 위해 필요한..
2023.04.19