Answers for "check cuda version pytorch"

0

test cuda pytorch

import torch

torch.cuda.is_available()
>>> True

torch.cuda.current_device()
>>> 0

torch.cuda.device(0)
>>> <torch.cuda.device at 0x7efce0b03be0>

torch.cuda.device_count()
>>> 1

torch.cuda.get_device_name(0)
>>> 'GeForce GTX 950M'
Posted by: Guest on May-21-2021
0

check cuda version pytorch

torch.version.cuda
Posted by: Guest on May-01-2020

Python Answers by Framework

Browse Popular Code Answers by Language