mps support, optimized device selection

This commit is contained in:
Wu Zichen 2024-01-24 16:45:13 +08:00
parent aed4935fce
commit 382102c9d0

View File

@ -1,5 +1,6 @@
import sys,os
import torch
# 推理用的指定模型
sovits_path = ""
@ -14,7 +15,12 @@ pretrained_gpt_path = "GPT_SoVITS/pretrained_models/s1bert25hz-2kh-longer-epoch=
exp_root = "logs"
python_exec = sys.executable or "python"
infer_device = "cuda"
if torch.cuda.is_available():
infer_device = "cuda"
elif torch.mps.is_available():
infer_device = "mps"
else:
infer_device = "cpu"
webui_port_main = 9874
webui_port_uvr5 = 9873