Files
ChatTTS/ChatTTS/utils/gpu.py
T
2025-12-03 15:07:48 +08:00

74 lines
2.6 KiB
Python

import importlib.util
import torch
try:
import torch_npu
except ImportError:
pass
from .log import logger
def select_device(min_memory=2047, experimental=False):
has_cuda = torch.cuda.is_available()
if has_cuda or _is_torch_npu_available():
provider = torch.cuda if has_cuda else torch.npu
"""
Using Ascend NPU to accelerate the process of inferencing when GPU is not found.
"""
dev_idx = 0
max_free_memory = -1
for i in range(provider.device_count()):
props = provider.get_device_properties(i)
free_memory = props.total_memory - provider.memory_reserved(i)
if max_free_memory < free_memory:
dev_idx = i
max_free_memory = free_memory
free_memory_mb = max_free_memory / (1024 * 1024)
if free_memory_mb < min_memory:
logger.get_logger().warning(
f"{provider.device(dev_idx)} has {round(free_memory_mb, 2)} MB memory left. Switching to CPU."
)
device = torch.device("cpu")
else:
device = provider._get_device(dev_idx)
elif torch.backends.mps.is_available():
"""
Currently MPS is slower than CPU while needs more memory and core utility,
so only enable this for experimental use.
"""
if experimental:
# For Apple M1/M2 chips with Metal Performance Shaders
logger.get_logger().warning("experimental: found apple GPU, using MPS.")
device = torch.device("mps")
else:
logger.get_logger().info("found Apple GPU, but use CPU.")
device = torch.device("cpu")
elif importlib.util.find_spec("torch_directml") is not None:
"""
Currently DML is under developing and may output wrong result,
so only enable this for experimental use.
"""
if experimental:
logger.get_logger().warning("experimental: using DML.")
import torch_directml
device = torch_directml.device(torch_directml.default_device())
else:
logger.get_logger().info("found DML, but use CPU.")
device = torch.device("cpu")
else:
logger.get_logger().warning("no GPU or NPU found, use CPU instead")
device = torch.device("cpu")
return device
def _is_torch_npu_available():
try:
# will raise a AttributeError if torch_npu is not imported or a RuntimeError if no NPU found
_ = torch.npu.device_count()
return torch.npu.is_available()
except (AttributeError, RuntimeError):
return False