우노
[DL] GPU 메모리 사용량 지정 방법 본문
들어가기 앞서
- GPU 의 메모리가 부족할 경우,
- 아래 코드를 통해 GPU 메모리 사용량을 지정할 수 있습니다.
예제 코드
import tensorflow as tf
gpus = tf.config.experimental.list_physical_devices('GPU')
# GPU 메모리를 1024MB (1GB)로 지정합니다.
if gpus:
tf.config.experimental.set_virtual_device_configuration(gpus[0],
[tf.config.experimental.VirtualDeviceConfiguration(memory_limit=1024)])
'AI > Deep Learning' 카테고리의 다른 글
[DL] Tensorflow GPU 확인 및 사용 방법 (0) | 2022.07.19 |
---|---|
[DL] yolov5 모델 양자화 명령어 (0) | 2022.07.07 |
[DL] TFLite 양자화 적용 상태 확인 방법 (0) | 2022.06.06 |
[DL] import tflite_runtime.interpreter as tflite 호출 에러 (0) | 2022.05.25 |
[DL] HDF5 와 SavedModel 간 변환 (0) | 2022.04.10 |
Comments