Setting, Error/Python, Python Library

RTX 3090 Tensorflow GPU 동작확인

Juheon Kwak 2021. 11. 23. 19:20

tf-nightly 2.7.0-dev20210806 버전 기준으로 설명함.

 

1. Tensorflow 설치 확인

 

from tensorflow.python.client import device_lib
import tensorflow as tf
tf.__version__

 

2. Cuda 및 GPU 동작 확인

print(tf.test.is_built_with_cuda())
print(tf.test.is_built_with_gpu_support())

 

3. physical_device 확인

physical_devices = tf.config.list_physical_devices('GPU')
physical_devices

 

4. 사용 가능한 cpu 및 gpu 확인 (여기에서 gpu가 보여야함)

local_devices = device_lib.list_local_devices()
for x in local_devices:
    print(x)

 

5. 현재 본인이 설치한 gpu 이름이 올바르게 보이는지 확인

local_devices[1].physical_device_desc.split(', ')[1]