law-bot / libs /utils.py
anpigon's picture
Upload 20 files
de850e8 verified
raw
history blame
198 Bytes
# utils.py
import torch
def get_device():
if torch.cuda.is_available():
return "cuda:0"
elif torch.backends.mps.is_available():
return "mps"
else:
return "cpu"