torch-gpu-test.py 파일을 생성하여 아래 내용을 복붙한다.
import torch
def main():
print(torch.cuda.is_available())
print(torch.cuda.get_device_name(0))
print(torch.cuda.device_count())
if __name__ == '__main__':
main()
파이썬으로 위 프로그램을 실행하였을 때, 디바이스 이름과 개수가 의도한 바와 일치하면 된다.
python torch-gpu-test.py
True
Tesla V100S-PCIE-32GB
2
반응형
'CS' 카테고리의 다른 글
주피터 노트북 문서(.ipynb) 커맨드로 실행하기 (nbconvert, nohup, &) (0) | 2023.09.01 |
---|---|
conda 가상환경명 재설정 (rename) (0) | 2023.08.16 |
docker mysql DB 초기화하기 (0) | 2023.07.24 |
mysql user 추가하기 (부제: mysql sudo 없이 접근하기) (0) | 2023.07.21 |
hyper + fish 조합으로 매일 들어가고 싶은 터미널 꾸미기 (터꾸 !_<) (0) | 2023.07.21 |