mirror of
https://github.com/brycedrennan/imaginAIry
synced 2024-10-31 03:20:40 +00:00
1c986d8644
- disable lint fixer that updates to newer syntax
182 lines
4.9 KiB
Python
182 lines
4.9 KiB
Python
import importlib
|
|
import logging
|
|
import platform
|
|
from contextlib import contextmanager, nullcontext
|
|
from functools import lru_cache
|
|
from typing import Any, List, Optional, Union
|
|
|
|
import torch
|
|
from torch import Tensor, autocast
|
|
from torch.nn import functional
|
|
from torch.overrides import handle_torch_function, has_torch_function_variadic
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
@lru_cache()
|
|
def get_device() -> str:
|
|
"""Return the best torch backend available."""
|
|
if torch.cuda.is_available():
|
|
return "cuda"
|
|
|
|
if torch.backends.mps.is_available():
|
|
return "mps:0"
|
|
|
|
return "cpu"
|
|
|
|
|
|
@lru_cache()
|
|
def get_hardware_description(device_type: str) -> str:
|
|
"""Description of the hardware being used."""
|
|
desc = platform.platform()
|
|
if device_type == "cuda":
|
|
desc += "-" + torch.cuda.get_device_name(0)
|
|
|
|
return desc
|
|
|
|
|
|
def get_obj_from_str(import_path: str, reload=False) -> Any:
|
|
"""
|
|
Gets a python object from a string reference if it's location.
|
|
|
|
Example: "functools.lru_cache"
|
|
"""
|
|
module_path, obj_name = import_path.rsplit(".", 1)
|
|
if reload:
|
|
module_imp = importlib.import_module(module_path)
|
|
importlib.reload(module_imp)
|
|
module = importlib.import_module(module_path, package=None)
|
|
return getattr(module, obj_name)
|
|
|
|
|
|
def instantiate_from_config(config: Union[dict, str]) -> Any:
|
|
"""Instantiate an object from a config dict."""
|
|
if "target" not in config:
|
|
if config == "__is_first_stage__":
|
|
return None
|
|
if config == "__is_unconditional__":
|
|
return None
|
|
raise KeyError("Expected key `target` to instantiate.")
|
|
params = config.get("params", {})
|
|
_cls = get_obj_from_str(config["target"])
|
|
return _cls(**params)
|
|
|
|
|
|
@contextmanager
|
|
def platform_appropriate_autocast(precision="autocast"):
|
|
"""
|
|
Allow calculations to run in mixed precision, which can be faster.
|
|
"""
|
|
precision_scope = nullcontext
|
|
# autocast not supported on CPU
|
|
# https://github.com/pytorch/pytorch/issues/55374
|
|
# https://github.com/invoke-ai/InvokeAI/pull/518
|
|
if precision == "autocast" and get_device() in ("cuda",):
|
|
precision_scope = autocast
|
|
with precision_scope(get_device()):
|
|
yield
|
|
|
|
|
|
def _fixed_layer_norm(
|
|
input: Tensor, # noqa
|
|
normalized_shape: List[int],
|
|
weight: Optional[Tensor] = None,
|
|
bias: Optional[Tensor] = None,
|
|
eps: float = 1e-5,
|
|
) -> Tensor:
|
|
"""
|
|
Applies Layer Normalization for last certain number of dimensions.
|
|
|
|
See :class:`~torch.nn.LayerNorm` for details.
|
|
"""
|
|
if has_torch_function_variadic(input, weight, bias):
|
|
return handle_torch_function(
|
|
_fixed_layer_norm,
|
|
(input, weight, bias),
|
|
input,
|
|
normalized_shape,
|
|
weight=weight,
|
|
bias=bias,
|
|
eps=eps,
|
|
)
|
|
return torch.layer_norm(
|
|
input.contiguous(),
|
|
normalized_shape,
|
|
weight,
|
|
bias,
|
|
eps,
|
|
torch.backends.cudnn.enabled,
|
|
)
|
|
|
|
|
|
@contextmanager
|
|
def fix_torch_nn_layer_norm():
|
|
"""https://github.com/CompVis/stable-diffusion/issues/25#issuecomment-1221416526."""
|
|
orig_function = functional.layer_norm
|
|
functional.layer_norm = _fixed_layer_norm
|
|
try:
|
|
yield
|
|
finally:
|
|
functional.layer_norm = orig_function
|
|
|
|
|
|
@contextmanager
|
|
def fix_torch_group_norm():
|
|
"""
|
|
Patch group_norm to cast the weights to the same type as the inputs.
|
|
|
|
From what I can understand all the other repos just switch to full precision instead
|
|
of addressing this. I think this would make things slower but I'm not sure.
|
|
|
|
https://github.com/pytorch/pytorch/pull/81852
|
|
|
|
"""
|
|
|
|
orig_group_norm = functional.group_norm
|
|
|
|
def _group_norm_wrapper(
|
|
input: Tensor, # noqa
|
|
num_groups: int,
|
|
weight: Optional[Tensor] = None,
|
|
bias: Optional[Tensor] = None,
|
|
eps: float = 1e-5,
|
|
) -> Tensor:
|
|
if weight is not None and weight.dtype != input.dtype:
|
|
weight = weight.to(input.dtype)
|
|
if bias is not None and bias.dtype != input.dtype:
|
|
bias = bias.to(input.dtype)
|
|
|
|
return orig_group_norm(
|
|
input=input, num_groups=num_groups, weight=weight, bias=bias, eps=eps
|
|
)
|
|
|
|
functional.group_norm = _group_norm_wrapper
|
|
try:
|
|
yield
|
|
finally:
|
|
functional.group_norm = orig_group_norm
|
|
|
|
|
|
def randn_seeded(seed: int, size: List[int]) -> Tensor:
|
|
"""Generate a random tensor with a given seed."""
|
|
g_cpu = torch.Generator()
|
|
g_cpu.manual_seed(seed)
|
|
noise = torch.randn(
|
|
size,
|
|
device="cpu",
|
|
generator=g_cpu,
|
|
)
|
|
return noise
|
|
|
|
|
|
def check_torch_working():
|
|
"""Check that torch is working."""
|
|
try:
|
|
torch.randn(1, device=get_device())
|
|
except RuntimeError as e:
|
|
if "CUDA" in str(e):
|
|
raise RuntimeError(
|
|
"CUDA is not working. Make sure you have a GPU and CUDA installed."
|
|
) from e
|
|
raise e
|