python
Check PyTorch GPU Availability
In [1]: import torch
In [2]: torch.cuda.current_device()
Out[2]: 0
In [3]: torch.cuda.device(0)
Out[3]: <torch.cuda.device at 0x7efce0b03be0>
In [4]: torch.cuda.device_count()
Out[4]: 1
In [5]: torch.cuda.get_device_name(0)
Out[5]: 'GeForce GTX 950M'
In [6]: torch.cuda.is_available()
Out[6]: True
Was this helpful?
Similar Posts
- Python - String , Check If Word Is In string
- Pandas - How to check whether a pandas DataFrame is empty
- Check python version on Mac and Windows
- Evaluate,check before class feald values set, bothe constructor,property option
- Check S3 Bucket
- Check if a key exist in a dictionary Python
- Check if given value is a number or integer in python