stanford-cars / src /utils /device.py
Elierze's picture
Initial Space upload
fc33673 verified
Raw
History Blame Contribute Delete
225 Bytes
import torch
def get_device():
if torch.cuda.is_available():
return torch.device("cuda")
elif torch.backends.mps.is_available():
return torch.device("mps")
else:
return torch.device("cpu")