Pytorch를 통해 GPU를 사용할 수 있는지, 그 수는 몇인지 확인하는 방법
import torch
# CUDA 사용한지 여부 확인: True or False
print(torch.cuda.is_available())
# GPU 수 확인
print(torch.cuda.device_count())
# 현재 사용하는 GPU 번호 확인
print(torch.cuda.current_device())
# 0번 GPU 이름 확인: ex) GeForce GTX 950M
print(torch.cuda.get_device_name(0))
Reference
https://stackoverflow.com/questions/48152674/how-to-check-if-pytorch-is-using-the-gpu
'기타 정보' 카테고리의 다른 글
[Ubuntu] 우분투 /var/log/messages 로그파일 없음 (0) | 2022.06.20 |
---|---|
Image Pyramids (0) | 2022.05.22 |
Tistory 블로그에 수식 넣기 (0) | 2022.04.21 |
Optical Flow (0) | 2022.04.01 |
논문 scheme 뜻 (0) | 2022.03.06 |
댓글