파이토치 GPU 활용 간단 예시
Pytorch(torch) 셋팅 후에, 간단하게 GPU 가 잘 돌아가는지 예제코드를 구하고 싶을때 막상 검색하면 좀 헤비한것들만 검색되는 경우가 있음. 아래 코드는 라이트하게 GPU 작동하는지 테스트 해보기에 좋음. 제일 첫줄에 pytorch version 출력 후, 간단한 GPU 연산 시도하는 코드 import torchimport mathprint(torch.__version__) # torch version 출력dtype = torch.float# device = torch.device("cpu")device = torch.device("cuda") # Uncomment this to run on GPU, GPU 를 사용하므로 해당 라인 실행# Create random input and outp..