RVC-UI / rvc /ipex /__init__.py
Blane187's picture
Upload folder using huggingface_hub
c7b379a verified
raw
history blame
230 Bytes
try:
import torch
if torch.xpu.is_available():
from .init import ipex_init
ipex_init()
from .gradscaler import gradscaler_init
except Exception: # pylint: disable=broad-exception-caught
pass