cddb07a176
docs / deploy (push) Has been cancelled
docs / changes (push) Has been cancelled
docs / check-and-build (push) Has been cancelled
build container image / cpu (push) Has been cancelled
build container image / cuda (push) Has been cancelled
build container image / rocm (push) Has been cancelled
frontend checks / frontend-checks (push) Has been cancelled
frontend tests / frontend-tests (push) Has been cancelled
lfs checks / lfs-check (push) Has been cancelled
python checks / python-checks (push) Has been cancelled
python tests / py3.12: macos-default (push) Has been cancelled
python tests / py3.11: windows-cpu (push) Has been cancelled
python tests / py3.12: windows-cpu (push) Has been cancelled
python tests / py3.11: linux-cpu (push) Has been cancelled
typegen checks / typegen-checks (push) Has been cancelled
uv lock checks / uv-lock-checks (push) Has been cancelled
openapi checks / openapi-checks (push) Has been cancelled
python tests / py3.11: macos-default (push) Has been cancelled
python tests / py3.12: linux-cpu (push) Has been cancelled
154 lines
6.0 KiB
Python
154 lines
6.0 KiB
Python
from typing import Dict, Literal, Optional, Union
|
|
|
|
import torch
|
|
from deprecated import deprecated
|
|
|
|
from invokeai.app.services.config.config_default import get_config
|
|
|
|
# legacy APIs
|
|
TorchPrecisionNames = Literal["float32", "float16", "bfloat16"]
|
|
CPU_DEVICE = torch.device("cpu")
|
|
CUDA_DEVICE = torch.device("cuda")
|
|
MPS_DEVICE = torch.device("mps")
|
|
|
|
|
|
@deprecated("Use TorchDevice.choose_torch_dtype() instead.") # type: ignore
|
|
def choose_precision(device: torch.device) -> TorchPrecisionNames:
|
|
"""Return the string representation of the recommended torch device."""
|
|
torch_dtype = TorchDevice.choose_torch_dtype(device)
|
|
return PRECISION_TO_NAME[torch_dtype]
|
|
|
|
|
|
@deprecated("Use TorchDevice.choose_torch_device() instead.") # type: ignore
|
|
def choose_torch_device() -> torch.device:
|
|
"""Return the torch.device to use for accelerated inference."""
|
|
return TorchDevice.choose_torch_device()
|
|
|
|
|
|
@deprecated("Use TorchDevice.choose_torch_dtype() instead.") # type: ignore
|
|
def torch_dtype(device: torch.device) -> torch.dtype:
|
|
"""Return the torch precision for the recommended torch device."""
|
|
return TorchDevice.choose_torch_dtype(device)
|
|
|
|
|
|
NAME_TO_PRECISION: Dict[TorchPrecisionNames, torch.dtype] = {
|
|
"float32": torch.float32,
|
|
"float16": torch.float16,
|
|
"bfloat16": torch.bfloat16,
|
|
}
|
|
PRECISION_TO_NAME: Dict[torch.dtype, TorchPrecisionNames] = {v: k for k, v in NAME_TO_PRECISION.items()}
|
|
|
|
|
|
class TorchDevice:
|
|
"""Abstraction layer for torch devices."""
|
|
|
|
CPU_DEVICE = torch.device("cpu")
|
|
CUDA_DEVICE = torch.device("cuda")
|
|
MPS_DEVICE = torch.device("mps")
|
|
|
|
@classmethod
|
|
def choose_torch_device(cls) -> torch.device:
|
|
"""Return the torch.device to use for accelerated inference."""
|
|
app_config = get_config()
|
|
if app_config.device != "auto":
|
|
device = torch.device(app_config.device)
|
|
elif torch.cuda.is_available():
|
|
device = CUDA_DEVICE
|
|
elif torch.backends.mps.is_available():
|
|
device = MPS_DEVICE
|
|
else:
|
|
device = CPU_DEVICE
|
|
return cls.normalize(device)
|
|
|
|
@classmethod
|
|
def choose_torch_dtype(cls, device: Optional[torch.device] = None) -> torch.dtype:
|
|
"""Return the precision to use for accelerated inference."""
|
|
device = device or cls.choose_torch_device()
|
|
config = get_config()
|
|
if device.type == "cuda" and torch.cuda.is_available():
|
|
device_name = torch.cuda.get_device_name(device)
|
|
if "GeForce GTX 1660" in device_name or "GeForce GTX 1650" in device_name:
|
|
# These GPUs have limited support for float16
|
|
return cls._to_dtype("float32")
|
|
elif config.precision == "auto":
|
|
# Default to float16 for CUDA devices
|
|
return cls._to_dtype("float16")
|
|
else:
|
|
# Use the user-defined precision
|
|
return cls._to_dtype(config.precision)
|
|
|
|
elif device.type == "mps" and torch.backends.mps.is_available():
|
|
if config.precision == "auto":
|
|
# Default to float16 for MPS devices
|
|
return cls._to_dtype("float16")
|
|
else:
|
|
# Use the user-defined precision
|
|
return cls._to_dtype(config.precision)
|
|
# CPU / safe fallback
|
|
return cls._to_dtype("float32")
|
|
|
|
@classmethod
|
|
def get_torch_device_name(cls) -> str:
|
|
"""Return the device name for the current torch device."""
|
|
device = cls.choose_torch_device()
|
|
return torch.cuda.get_device_name(device) if device.type == "cuda" else device.type.upper()
|
|
|
|
@classmethod
|
|
def normalize(cls, device: Union[str, torch.device]) -> torch.device:
|
|
"""Add the device index to CUDA devices."""
|
|
device = torch.device(device)
|
|
if device.index is None and device.type == "cuda" and torch.cuda.is_available():
|
|
device = torch.device(device.type, torch.cuda.current_device())
|
|
return device
|
|
|
|
@classmethod
|
|
def empty_cache(cls) -> None:
|
|
"""Clear the GPU device cache."""
|
|
if torch.backends.mps.is_available():
|
|
torch.mps.empty_cache()
|
|
if torch.cuda.is_available():
|
|
torch.cuda.empty_cache()
|
|
|
|
@classmethod
|
|
def _to_dtype(cls, precision_name: TorchPrecisionNames) -> torch.dtype:
|
|
return NAME_TO_PRECISION[precision_name]
|
|
|
|
@classmethod
|
|
def choose_bfloat16_safe_dtype(cls, device: Optional[torch.device] = None) -> torch.dtype:
|
|
"""Return bfloat16 if supported on the device, else fallback to float16/float32.
|
|
|
|
This is useful for models that require bfloat16 precision (e.g., Z-Image, Flux)
|
|
but need to run on hardware that may not support bfloat16.
|
|
|
|
Args:
|
|
device: The target device. If None, uses choose_torch_device().
|
|
|
|
Returns:
|
|
torch.bfloat16 if supported, torch.float16 for CUDA without bfloat16 support,
|
|
or torch.float32 for CPU/MPS.
|
|
"""
|
|
device = device or cls.choose_torch_device()
|
|
try:
|
|
# Test if bfloat16 is supported on this device
|
|
torch.tensor([1.0], dtype=torch.bfloat16, device=device)
|
|
return torch.bfloat16
|
|
except TypeError:
|
|
# bfloat16 not supported - fallback based on device type
|
|
if device.type == "cuda":
|
|
return torch.float16
|
|
return torch.float32
|
|
|
|
@classmethod
|
|
def choose_anima_inference_dtype(cls, device: Optional[torch.device] = None) -> torch.dtype:
|
|
"""Choose the inference dtype for Anima models, honoring config.precision.
|
|
|
|
When precision is 'auto', delegates to choose_bfloat16_safe_dtype (current
|
|
behavior). When precision is set to a specific value (float16, bfloat16,
|
|
float32), returns that dtype directly without hardware probing.
|
|
"""
|
|
device = device or cls.choose_torch_device()
|
|
config = get_config()
|
|
if config.precision == "auto":
|
|
return cls.choose_bfloat16_safe_dtype(device)
|
|
return NAME_TO_PRECISION[config.precision]
|