device.py 132 Bytes
Newer Older
BobYeah's avatar
sync    
BobYeah committed
1
2
3
4
5
6
7
import torch


def GetDevice():
    if torch.cuda.is_available():
        return torch.device('cuda')
    return torch.device('cpu')