alaa / rvc_engine /utils.py
aj1980's picture
Update rvc_engine/utils.py
350226c verified
Raw
History Blame Contribute Delete
107 Bytes
import torch
def get_device():
if torch.cuda.is_available():
return "cuda"
return "cpu"