| import importlib.metadata
|
| import torch
|
| import logging
|
| import math
|
| from tqdm import tqdm
|
| from pathlib import Path
|
| import gc
|
| import types, collections
|
| from comfy.utils import ProgressBar, copy_to_param, set_attr_param
|
| from comfy.model_patcher import get_key_weight
|
| from comfy.lora import calculate_weight
|
|
|
| try:
|
| from comfy.utils import string_to_seed
|
| except Exception:
|
| from comfy.model_patcher import string_to_seed
|
|
|
| from comfy.float import stochastic_rounding
|
| from .custom_linear import remove_lora_from_module
|
| import folder_paths
|
| logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
| log = logging.getLogger(__name__)
|
|
|
| import comfy.model_management as mm
|
| device = mm.get_torch_device()
|
| offload_device = mm.unet_offload_device()
|
|
|
| try:
|
| from .gguf.gguf import GGUFParameter
|
| except Exception:
|
| pass
|
|
|
| COLOR_CODES = {
|
| "reset": "\033[0m",
|
| "red": "\033[31m",
|
| "green": "\033[32m",
|
| "yellow": "\033[33m",
|
| "blue": "\033[34m",
|
| "magenta": "\033[35m",
|
| "cyan": "\033[36m",
|
| "white": "\033[37m",
|
| }
|
|
|
| def color_text(text, color):
|
| try:
|
| return f"{COLOR_CODES.get(color, COLOR_CODES['reset'])}{text}{COLOR_CODES['reset']}"
|
| except Exception:
|
| return text
|
|
|
| class MetaParameter(torch.nn.Parameter):
|
| def __new__(cls, dtype, quant_type=None):
|
| data = torch.empty(0, dtype=dtype)
|
| self = torch.nn.Parameter(data, requires_grad=False)
|
| self.quant_type = quant_type
|
| return self
|
|
|
| def offload_transformer(transformer, remove_lora=True):
|
| transformer.teacache_state.clear_all()
|
| transformer.magcache_state.clear_all()
|
| transformer.easycache_state.clear_all()
|
|
|
| if transformer.patched_linear:
|
| for name, param in transformer.named_parameters():
|
| if "loras" in name or "controlnet" in name:
|
| continue
|
| module = transformer
|
| subnames = name.split('.')
|
| for subname in subnames[:-1]:
|
| module = getattr(module, subname)
|
| attr_name = subnames[-1]
|
| if param.data.is_floating_point():
|
| meta_param = torch.nn.Parameter(torch.empty_like(param.data, device='meta'), requires_grad=False)
|
| setattr(module, attr_name, meta_param)
|
| elif isinstance(param.data, GGUFParameter):
|
| quant_type = getattr(param, 'quant_type', None)
|
| setattr(module, attr_name, MetaParameter(param.data.dtype, quant_type))
|
| else:
|
| pass
|
| if remove_lora:
|
| remove_lora_from_module(transformer)
|
| else:
|
| transformer.to(offload_device)
|
|
|
| for block in transformer.blocks:
|
| block.kv_cache = None
|
| if transformer.audio_model is not None and hasattr(block, 'audio_block'):
|
| block.audio_block = None
|
|
|
| mm.soft_empty_cache()
|
| gc.collect()
|
|
|
|
|
| def init_blockswap(transformer, block_swap_args, model):
|
| if not transformer.patched_linear:
|
| if block_swap_args is not None:
|
| for name, param in transformer.named_parameters():
|
| if "block" not in name or "control_adapter" in name or "face" in name:
|
| param.data = param.data.to(device)
|
| elif block_swap_args["offload_txt_emb"] and "txt_emb" in name:
|
| param.data = param.data.to(offload_device)
|
| elif block_swap_args["offload_img_emb"] and "img_emb" in name:
|
| param.data = param.data.to(offload_device)
|
|
|
| transformer.block_swap(
|
| block_swap_args["blocks_to_swap"] - 1 ,
|
| block_swap_args["offload_txt_emb"],
|
| block_swap_args["offload_img_emb"],
|
| vace_blocks_to_swap = block_swap_args.get("vace_blocks_to_swap", None),
|
| )
|
| elif model["auto_cpu_offload"]:
|
| for module in transformer.modules():
|
| if hasattr(module, "offload"):
|
| module.offload()
|
| if hasattr(module, "onload"):
|
| module.onload()
|
| for block in transformer.blocks:
|
| block.modulation = torch.nn.Parameter(block.modulation.to(device))
|
| transformer.head.modulation = torch.nn.Parameter(transformer.head.modulation.to(device))
|
| else:
|
| transformer.to(device)
|
|
|
| def check_device_same(first_device, second_device):
|
| if first_device.type != second_device.type:
|
| return False
|
|
|
| if first_device.type == "cuda" and first_device.index is None:
|
| first_device = torch.device("cuda", index=0)
|
|
|
| if second_device.type == "cuda" and second_device.index is None:
|
| second_device = torch.device("cuda", index=0)
|
|
|
| return first_device == second_device
|
|
|
|
|
| def set_module_tensor_to_device(module, tensor_name, device, value=None, dtype=None):
|
| """
|
| A helper function to set a given tensor (parameter of buffer) of a module on a specific device (note that doing
|
| `param.to(device)` creates a new tensor not linked to the parameter, which is why we need this function).
|
|
|
| Args:
|
| module (`torch.nn.Module`):
|
| The module in which the tensor we want to move lives.
|
| tensor_name (`str`):
|
| The full name of the parameter/buffer.
|
| device (`int`, `str` or `torch.device`):
|
| The device on which to set the tensor.
|
| value (`torch.Tensor`, *optional*):
|
| The value of the tensor (useful when going from the meta device to any other device).
|
| dtype (`torch.dtype`, *optional*):
|
| If passed along the value of the parameter will be cast to this `dtype`. Otherwise, `value` will be cast to
|
| the dtype of the existing parameter in the model.
|
| """
|
|
|
| if "." in tensor_name:
|
| splits = tensor_name.split(".")
|
| for split in splits[:-1]:
|
| new_module = getattr(module, split)
|
| if new_module is None:
|
| raise ValueError(f"{module} has no attribute {split}.")
|
| module = new_module
|
| tensor_name = splits[-1]
|
|
|
| if tensor_name not in module._parameters and tensor_name not in module._buffers:
|
| raise ValueError(f"{module} does not have a parameter or a buffer named {tensor_name}.")
|
| is_buffer = tensor_name in module._buffers
|
| old_value = getattr(module, tensor_name)
|
|
|
| if old_value.device == torch.device("meta") and device not in ["meta", torch.device("meta")] and value is None:
|
| raise ValueError(f"{tensor_name} is on the meta device, we need a `value` to put in on {device}.")
|
|
|
| param = module._parameters[tensor_name] if tensor_name in module._parameters else None
|
| param_cls = type(param)
|
|
|
| if value is not None:
|
| if dtype is None:
|
| value = value.to(old_value.dtype)
|
| elif not str(value.dtype).startswith(("torch.uint", "torch.int", "torch.bool")):
|
| value = value.to(dtype)
|
|
|
| device_quantization = None
|
| with torch.no_grad():
|
| if value is None:
|
| new_value = old_value.to(device)
|
| if dtype is not None and device in ["meta", torch.device("meta")]:
|
| if not str(old_value.dtype).startswith(("torch.uint", "torch.int", "torch.bool")):
|
| new_value = new_value.to(dtype)
|
|
|
| if not is_buffer:
|
| module._parameters[tensor_name] = param_cls(new_value, requires_grad=old_value.requires_grad)
|
| elif isinstance(value, torch.Tensor):
|
| new_value = value.to(device)
|
| else:
|
| new_value = torch.tensor(value, device=device)
|
| if device_quantization is not None:
|
| device = device_quantization
|
| if is_buffer:
|
| module._buffers[tensor_name] = new_value
|
| elif value is not None or not check_device_same(device, module._parameters[tensor_name].device):
|
| param_cls = type(module._parameters[tensor_name])
|
| new_value = param_cls(new_value, requires_grad=False)
|
| module._parameters[tensor_name] = new_value
|
|
|
|
|
|
|
|
|
| def check_diffusers_version():
|
| try:
|
| version = importlib.metadata.version('diffusers')
|
| required_version = '0.31.0'
|
| if version < required_version:
|
| raise AssertionError(f"diffusers version {version} is installed, but version {required_version} or higher is required.")
|
| except importlib.metadata.PackageNotFoundError:
|
| raise AssertionError("diffusers is not installed.")
|
|
|
| def print_memory(device, process="Sampling"):
|
| max_memory = torch.cuda.max_memory_allocated(device) / 1024**3
|
| max_reserved = torch.cuda.max_memory_reserved(device) / 1024**3
|
| log.info(f"[{process}] Max allocated memory: {max_memory=:.3f} GB")
|
| log.info(f"[{process}] Max reserved memory: {max_reserved=:.3f} GB")
|
|
|
|
|
|
|
| def get_module_memory_mb(module):
|
| memory = 0
|
| for param in module.parameters():
|
| if param.data is not None:
|
| memory += param.nelement() * param.element_size()
|
| return memory / (1024 * 1024)
|
|
|
| def get_module_memory_mb_per_device(module):
|
| memory_per_device = {}
|
| memory = 0
|
| for param in module.parameters():
|
| if param.data is not None:
|
| device = str(param.device)
|
| memory += param.nelement() * param.element_size()
|
| memory_per_device[device] = memory_per_device.get(device, 0) + memory
|
|
|
| memory_per_device = {dev: mem / (1024 * 1024) for dev, mem in memory_per_device.items()}
|
| return memory_per_device
|
|
|
| def get_tensor_memory(tensor):
|
| memory_bytes = tensor.element_size() * tensor.nelement()
|
| return f"{memory_bytes / (1024 * 1024):.2f} MB"
|
|
|
| def patch_weight_to_device(self, key, device_to=None, inplace_update=False, backup_keys=False, scale_weight=None):
|
| if key not in self.patches:
|
| return
|
|
|
| weight, set_func, convert_func = get_key_weight(self.model, key)
|
| inplace_update = self.weight_inplace_update or inplace_update
|
|
|
| if backup_keys and key not in self.backup:
|
| self.backup[key] = collections.namedtuple('Dimension', ['weight', 'inplace_update'])(weight.to(device=self.offload_device, copy=inplace_update), inplace_update)
|
|
|
| if device_to is not None:
|
| temp_weight = mm.cast_to_device(weight, device_to, torch.float32, copy=True)
|
| else:
|
| temp_weight = weight.to(torch.float32, copy=True)
|
| if convert_func is not None:
|
| temp_weight = convert_func(temp_weight, inplace=True)
|
|
|
| if scale_weight is not None:
|
| temp_weight = temp_weight * scale_weight.to(temp_weight.device, temp_weight.dtype)
|
|
|
| out_weight = calculate_weight(self.patches[key], temp_weight, key)
|
|
|
| if set_func is None:
|
| out_weight = stochastic_rounding(out_weight, weight.dtype, seed=string_to_seed(key))
|
| if inplace_update:
|
| copy_to_param(self.model, key, out_weight)
|
| else:
|
| set_attr_param(self.model, key, out_weight)
|
| else:
|
| set_func(out_weight, inplace_update=inplace_update, seed=string_to_seed(key))
|
|
|
| def apply_lora(model, device_to, transformer_load_device, params_to_keep=None, dtype=None,
|
| base_dtype=None, state_dict=None, low_mem_load=False, control_lora=False, scale_weights={}):
|
| model.patch_weight_to_device = types.MethodType(patch_weight_to_device, model)
|
| to_load = []
|
| for n, m in model.model.named_modules():
|
| params = []
|
| skip = False
|
| for name, param in m.named_parameters(recurse=False):
|
| params.append(name)
|
| for name, param in m.named_parameters(recurse=True):
|
| if name not in params:
|
| skip = True
|
| break
|
| if not skip and (hasattr(m, "comfy_cast_weights") or len(params) > 0):
|
| to_load.append((n, m, params))
|
|
|
| to_load.sort(reverse=True)
|
| cnt = 0
|
| pbar = ProgressBar(len(to_load))
|
| for x in tqdm(to_load, desc="Loading model and applying LoRA weights:", leave=True):
|
| name = x[0]
|
| m = x[1]
|
| params = x[2]
|
| if hasattr(m, "comfy_patched_weights"):
|
| if m.comfy_patched_weights == True:
|
| continue
|
| for param in params:
|
| name = name.replace("._orig_mod.", ".")
|
| if low_mem_load:
|
| dtype_to_use = base_dtype if any(keyword in name for keyword in params_to_keep) else dtype
|
| if "patch_embedding" in name:
|
| dtype_to_use = torch.float32
|
| key = f"{name.replace('diffusion_model.', '')}.{param}"
|
| try:
|
| set_module_tensor_to_device(model.model.diffusion_model, key, device=transformer_load_device, dtype=dtype_to_use, value=state_dict[key])
|
| except Exception:
|
| continue
|
| key = f"{name}.{param}"
|
| if scale_weights is not None:
|
| scale_key = key.replace("weight", "scale_weight").replace("diffusion_model.", "") if "weight" in key else None
|
| if low_mem_load:
|
| model.patch_weight_to_device(f"{name}.{param}", device_to=device_to, inplace_update=True, backup_keys=control_lora, scale_weight=scale_weights.get(scale_key, None))
|
| else:
|
| model.patch_weight_to_device(f"{name}.{param}", device_to=device_to, backup_keys=control_lora, scale_weight=scale_weights.get(scale_key, None))
|
| if device_to != transformer_load_device:
|
| set_module_tensor_to_device(m, param, device=transformer_load_device)
|
| if low_mem_load:
|
| try:
|
| set_module_tensor_to_device(model.model.diffusion_model, key, device=transformer_load_device, dtype=dtype_to_use, value=model.model.diffusion_model.state_dict()[key])
|
| except Exception:
|
| continue
|
| m.comfy_patched_weights = True
|
| cnt += 1
|
| if cnt % 100 == 0:
|
| pbar.update(100)
|
|
|
|
|
|
|
| if len(scale_weights) > 0 and not getattr(model, "scale_weights_applied", False):
|
| for name, param in model.model.diffusion_model.named_parameters():
|
| scale_key = name.replace("weight", "scale_weight").replace("diffusion_model.", "") if "weight" in name else None
|
| full_param_name = f"diffusion_model.{name}"
|
| if scale_key and scale_key in scale_weights and full_param_name not in model.patches:
|
| scale = scale_weights[scale_key]
|
| param_fp32 = param.to(torch.float32)
|
| param_fp32.mul_(scale.to(param.device, torch.float32))
|
| param.copy_(param_fp32.to(param.dtype))
|
| model.scale_weights_applied = True
|
|
|
| model.current_weight_patches_uuid = model.patches_uuid
|
| if low_mem_load:
|
| for name, param in model.model.diffusion_model.named_parameters():
|
| if param.device != transformer_load_device:
|
| dtype_to_use = base_dtype if any(keyword in name for keyword in params_to_keep) else dtype
|
| if "patch_embedding" in name:
|
| dtype_to_use = torch.float32
|
| try:
|
| set_module_tensor_to_device(model.model.diffusion_model, name, device=transformer_load_device, dtype=dtype_to_use, value=state_dict[name])
|
| except Exception:
|
| continue
|
| return model
|
|
|
|
|
|
|
| def split_tiles(embeds, num_split):
|
| _, H, W, _ = embeds.shape
|
| out = []
|
| for x in embeds:
|
| x = x.unsqueeze(0)
|
| h, w = H // num_split, W // num_split
|
| x_split = torch.cat([x[:, i*h:(i+1)*h, j*w:(j+1)*w, :] for i in range(num_split) for j in range(num_split)], dim=0)
|
| out.append(x_split)
|
|
|
| x_split = torch.stack(out, dim=0)
|
|
|
| return x_split
|
|
|
| def merge_hiddenstates(x, tiles):
|
| chunk_size = tiles*tiles
|
| x = x.split(chunk_size)
|
|
|
| out = []
|
| for embeds in x:
|
| num_tiles = embeds.shape[0]
|
| tile_size = int((embeds.shape[1]-1) ** 0.5)
|
| grid_size = int(num_tiles ** 0.5)
|
|
|
|
|
| class_tokens = embeds[:, 0, :]
|
| avg_class_token = class_tokens.mean(dim=0, keepdim=True).unsqueeze(0)
|
|
|
| patch_embeds = embeds[:, 1:, :]
|
| reshaped = patch_embeds.reshape(grid_size, grid_size, tile_size, tile_size, embeds.shape[-1])
|
|
|
| merged = torch.cat([torch.cat([reshaped[i, j] for j in range(grid_size)], dim=1)
|
| for i in range(grid_size)], dim=0)
|
|
|
| merged = merged.unsqueeze(0)
|
|
|
|
|
| pooled = torch.nn.functional.adaptive_avg_pool2d(merged.permute(0, 3, 1, 2), (tile_size, tile_size)).permute(0, 2, 3, 1)
|
| flattened = pooled.reshape(1, tile_size*tile_size, embeds.shape[-1])
|
|
|
|
|
| with_class = torch.cat([avg_class_token, flattened], dim=1)
|
| out.append(with_class)
|
|
|
| out = torch.cat(out, dim=0)
|
|
|
| return out
|
|
|
| from comfy.clip_vision import clip_preprocess, ClipVisionModel
|
|
|
| def clip_encode_image_tiled(clip_vision, image, tiles=1, ratio=1.0):
|
| embeds = encode_image_(clip_vision, image)
|
| tiles = min(tiles, 16)
|
|
|
| if tiles > 1:
|
|
|
| image_split = split_tiles(image, tiles)
|
|
|
|
|
| embeds_split = {}
|
| for i in image_split:
|
| encoded = encode_image_(clip_vision, i)
|
| if not hasattr(embeds_split, "last_hidden_state"):
|
| embeds_split["last_hidden_state"] = encoded
|
| else:
|
| embeds_split["last_hidden_state"] = torch.cat(embeds_split["last_hidden_state"], encoded, dim=0)
|
|
|
| embeds_split['last_hidden_state'] = merge_hiddenstates(embeds_split['last_hidden_state'], tiles)
|
|
|
| if embeds.shape[0] > 1:
|
| embeds = embeds * ratio + embeds_split['last_hidden_state']*(1-ratio)
|
| else:
|
| embeds = torch.cat([embeds * ratio, embeds_split['last_hidden_state']])
|
|
|
| return embeds
|
|
|
| def encode_image_(clip_vision, image):
|
| if isinstance(clip_vision, ClipVisionModel):
|
| out = clip_vision.encode_image(image).last_hidden_state
|
| else:
|
| pixel_values = clip_preprocess(image, size=224, crop=True).float()
|
| out = clip_vision.visual(pixel_values)
|
|
|
| return out
|
|
|
|
|
| import torch
|
| import torch.fft as fft
|
|
|
| def fourier_filter(x, scale_low=1.0, scale_high=1.5, freq_cutoff=20):
|
| """
|
| Apply frequency-dependent scaling to an image tensor using Fourier transforms.
|
|
|
| Parameters:
|
| x: Input tensor of shape (B, C, H, W)
|
| scale_low: Scaling factor for low-frequency components (default: 1.0)
|
| scale_high: Scaling factor for high-frequency components (default: 1.5)
|
| freq_cutoff: Number of frequency indices around center to consider as low-frequency (default: 20)
|
|
|
| Returns:
|
| x_filtered: Filtered version of x in spatial domain with frequency-specific scaling applied.
|
| """
|
|
|
| dtype, device = x.dtype, x.device
|
|
|
|
|
| x = x.to(torch.float32)
|
|
|
|
|
| x_freq = fft.fftn(x, dim=(-2, -1))
|
| x_freq = fft.fftshift(x_freq, dim=(-2, -1))
|
|
|
|
|
| C, B, H, W = x_freq.shape
|
| crow, ccol = H // 2, W // 2
|
|
|
|
|
| mask = torch.ones((C, B, H, W), device=device) * scale_high
|
|
|
|
|
| mask[
|
| ...,
|
| crow - freq_cutoff : crow + freq_cutoff,
|
| ccol - freq_cutoff : ccol + freq_cutoff,
|
| ] = scale_low
|
|
|
|
|
| x_freq = x_freq * mask
|
|
|
|
|
| x_freq = fft.ifftshift(x_freq, dim=(-2, -1))
|
| x_filtered = fft.ifftn(x_freq, dim=(-2, -1)).real
|
|
|
|
|
| x_filtered = x_filtered.to(dtype)
|
|
|
| return x_filtered
|
|
|
| def is_image_black(image, threshold=1e-3):
|
| if image.min() < 0:
|
| image = (image + 1) / 2
|
| return torch.all(image < threshold).item()
|
|
|
| def add_noise_to_reference_video(image, ratio=None):
|
| sigma = torch.ones((image.shape[0],)).to(image.device, image.dtype) * ratio
|
| image_noise = torch.randn_like(image) * sigma[:, None, None, None]
|
| image_noise = torch.where(image==-1, torch.zeros_like(image), image_noise)
|
| image = image + image_noise
|
| return image
|
|
|
| def optimized_scale(positive_flat, negative_flat):
|
|
|
|
|
| dot_product = torch.sum(positive_flat * negative_flat, dim=1, keepdim=True)
|
|
|
|
|
| squared_norm = torch.sum(negative_flat ** 2, dim=1, keepdim=True) + 1e-8
|
|
|
|
|
| st_star = dot_product / squared_norm
|
|
|
| return st_star
|
|
|
| def find_closest_valid_dim(fixed_dim, var_dim, block_size):
|
| for delta in range(1, 17):
|
| for sign in [-1, 1]:
|
| candidate = var_dim + sign * delta
|
| if candidate > 0 and ((fixed_dim * candidate) // 4) % block_size == 0:
|
| return candidate
|
| return var_dim
|
|
|
|
|
| def setup_radial_attention(transformer, transformer_options, latent, seq_len, latent_video_length, context_options=None):
|
| if context_options is not None:
|
| context_frames = (context_options["context_frames"] - 1) // 4 + 1
|
|
|
| dense_timesteps = transformer_options.get("dense_timesteps", 1)
|
| dense_blocks = transformer_options.get("dense_blocks", 1)
|
| dense_vace_blocks = transformer_options.get("dense_vace_blocks", 1)
|
| decay_factor = transformer_options.get("decay_factor", 0.2)
|
| dense_attention_mode = transformer_options.get("dense_attention_mode", "sageattn")
|
| block_size = transformer_options.get("block_size", 128)
|
|
|
|
|
| if latent.shape[2] % (block_size/8) != 0 or latent.shape[3] % (block_size/8) != 0:
|
| block_div = int(block_size // 8)
|
| closest_h = round(latent.shape[2] / block_div) * block_div
|
| closest_w = round(latent.shape[3] / block_div) * block_div
|
| raise Exception(
|
| f"Radial attention mode only supports image size divisible by block size. "
|
| f"Got {latent.shape[3] * 8}x{latent.shape[2] * 8} with block size {block_size}.\n"
|
| f"Closest valid sizes: {closest_w * 8}x{closest_h * 8} (width x height in pixels)."
|
| )
|
| tokens_per_frame = (latent.shape[2] * latent.shape[3]) // 4
|
| if tokens_per_frame % block_size != 0:
|
| closest_latent_h = find_closest_valid_dim(latent.shape[3], latent.shape[2], block_size)
|
| closest_latent_w = find_closest_valid_dim(latent.shape[2], latent.shape[3], block_size)
|
| raise Exception(
|
| f"Radial attention mode requires tokens per frame ((latent_h * latent_w) // 4) to be divisible by block size ({block_size}).\n"
|
| f"Current size in latent space:{latent.shape[3]}x{latent.shape[2]}, pixel space: {latent.shape[3]*8}x{latent.shape[2]*8} tokens_per_frame={tokens_per_frame}.\n"
|
| f"Try adjusting to one of these latent sizes (in pixels):\n"
|
| f" Height: {latent.shape[2]*8} -> {closest_latent_h * 8}\n"
|
| f" Width: {latent.shape[3]*8} -> {closest_latent_w * 8}\n"
|
| f"Or choose another resolution so that (latent_h * latent_w) // 4 is divisible by {block_size}."
|
| )
|
|
|
| from .wanvideo.radial_attention.attn_mask import MaskMap
|
| for i, block in enumerate(transformer.blocks):
|
| block.self_attn.mask_map = block.dense_attention_mode = block.dense_timesteps = block.self_attn.decay_factor = None
|
| if isinstance(dense_blocks, list):
|
| block.dense_block = i in dense_blocks
|
| else:
|
| block.dense_block = i < dense_blocks
|
| block.self_attn.mask_map = MaskMap(video_token_num=seq_len, num_frame=latent_video_length if context_options is None else context_frames, block_size=block_size)
|
| block.dense_attention_mode = dense_attention_mode
|
| block.dense_timesteps = dense_timesteps
|
| block.self_attn.decay_factor = decay_factor
|
| if transformer.vace_layers is not None:
|
| for i, block in enumerate(transformer.vace_blocks):
|
| block.self_attn.mask_map = block.dense_attention_mode = block.dense_timesteps = block.self_attn.decay_factor = None
|
| if isinstance(dense_vace_blocks, list):
|
| block.dense_block = i in dense_vace_blocks
|
| else:
|
| block.dense_block = i < dense_vace_blocks
|
| block.self_attn.mask_map = MaskMap(video_token_num=seq_len, num_frame=latent_video_length if context_options is None else context_frames, block_size=block_size)
|
| block.dense_attention_mode = dense_attention_mode
|
| block.dense_timesteps = dense_timesteps
|
| block.self_attn.decay_factor = decay_factor
|
|
|
| log.info(f"Radial attention mode enabled.")
|
| log.info(f"dense_attention_mode: {dense_attention_mode}, dense_timesteps: {dense_timesteps}, decay_factor: {decay_factor}")
|
| log.info(f"dense_blocks: {[i for i, block in enumerate(transformer.blocks) if getattr(block, 'dense_block', False)]})")
|
|
|
|
|
|
|
| def list_to_device(tensor_list, device, dtype=None):
|
| """
|
| Move all tensors in a list to the specified device and optionally cast to dtype.
|
| """
|
| return [t.to(device, dtype=dtype) if dtype is not None else t.to(device) for t in tensor_list]
|
|
|
| def dict_to_device(tensor_dict, device, dtype=None):
|
| """
|
| Move all tensors (and tensor lists) in a dict to the specified device and optionally cast to dtype.
|
| Supports values that are tensors or lists of tensors.
|
| """
|
| result = {}
|
| for k, v in tensor_dict.items():
|
| if isinstance(v, torch.Tensor):
|
| result[k] = v.to(device, dtype=dtype) if dtype is not None else v.to(device)
|
| elif isinstance(v, list) and all(isinstance(t, torch.Tensor) for t in v):
|
| result[k] = list_to_device(v, device, dtype)
|
| else:
|
| result[k] = v
|
| return result
|
|
|
| def compile_model(transformer, compile_args=None):
|
| if compile_args is None:
|
| return transformer
|
| if hasattr(torch, '_dynamo') and hasattr(torch._dynamo, 'config'):
|
| torch._dynamo.config.cache_size_limit = compile_args["dynamo_cache_size_limit"]
|
| torch._dynamo.config.force_parameter_static_shapes = compile_args["force_parameter_static_shapes"]
|
| try:
|
| if hasattr(torch._dynamo.config, 'allow_unspec_int_on_nn_module'):
|
| torch._dynamo.config.allow_unspec_int_on_nn_module = True
|
| except Exception as e:
|
| log.warning(f"Could not set allow_unspec_int_on_nn_module: {e}")
|
| try:
|
| torch._dynamo.config.recompile_limit = compile_args["dynamo_recompile_limit"]
|
| except Exception as e:
|
| log.warning(f"Could not set recompile_limit: {e}")
|
|
|
| if compile_args["compile_transformer_blocks_only"]:
|
| for i, block in enumerate(transformer.blocks):
|
| if hasattr(block, "_orig_mod"):
|
| block = block._orig_mod
|
| transformer.blocks[i] = torch.compile(block, fullgraph=compile_args["fullgraph"], dynamic=compile_args["dynamic"], backend=compile_args["backend"], mode=compile_args["mode"])
|
| if transformer.vace_layers is not None:
|
| for i, block in enumerate(transformer.vace_blocks):
|
| if hasattr(block, "_orig_mod"):
|
| block = block._orig_mod
|
| transformer.vace_blocks[i] = torch.compile(block, fullgraph=compile_args["fullgraph"], dynamic=compile_args["dynamic"], backend=compile_args["backend"], mode=compile_args["mode"])
|
| else:
|
| transformer = torch.compile(transformer, fullgraph=compile_args["fullgraph"], dynamic=compile_args["dynamic"], backend=compile_args["backend"], mode=compile_args["mode"])
|
| return transformer
|
|
|
|
|
| def tangential_projection(pred_cond: torch.Tensor, pred_uncond: torch.Tensor) -> torch.Tensor:
|
| cond_dtype = pred_cond.dtype
|
| preds = torch.stack([pred_cond, pred_uncond], dim=1).float()
|
| orig_shape = preds.shape[2:]
|
| preds_flat = preds.flatten(2)
|
| U, S, Vh = torch.linalg.svd(preds_flat, full_matrices=False)
|
| Vh_modified = Vh.clone()
|
| Vh_modified[:, 1] = 0
|
| recon = U @ torch.diag_embed(S) @ Vh_modified
|
| return recon[:, 1].view(pred_uncond.shape).to(cond_dtype)
|
|
|
|
|
| def get_raag_guidance(noise_pred_cond, noise_pred_uncond, w_max, alpha=1.0, eps=1e-8):
|
| delta = noise_pred_cond - noise_pred_uncond
|
| norm_delta = torch.norm(delta.flatten(1), dim=1, keepdim=True)
|
| norm_uncond = torch.norm(noise_pred_uncond.flatten(1), dim=1, keepdim=True)
|
| ratio = norm_delta / (norm_uncond + eps)
|
| ratio_mean = ratio.mean().item()
|
| adaptive_w = 1.0 + (w_max - 1.0) * math.exp(-alpha * ratio_mean)
|
| return adaptive_w
|
|
|
| def tensor_pingpong_pad(video, target_len):
|
| """
|
| Pads a video tensor along the frame dimension (dim=2) in a ping-pong fashion.
|
| video: torch.Tensor of shape [B, C, F, H, W]
|
| target_len: desired number of frames
|
| Returns: padded tensor of shape [B, C, target_len, H, W]
|
| """
|
| in_dims = len(video.shape)
|
| if in_dims == 4:
|
| video = video.unsqueeze(0)
|
| B, C, F, H, W = video.shape
|
| idx = 0
|
| flip = False
|
| indices = []
|
| while len(indices) < target_len:
|
| indices.append(idx)
|
| if flip:
|
| idx -= 1
|
| else:
|
| idx += 1
|
| if idx == 0 or idx == F - 1:
|
| flip = not flip
|
| indices = indices[:target_len]
|
| padded_video = video[:, :, indices, :, :]
|
| if in_dims == 4:
|
| padded_video = padded_video.squeeze(0)
|
| return padded_video
|
|
|
|
|
| def check_duplicate_nodes():
|
| """Check ComfyUI custom_nodes directory for duplicate installations"""
|
| custom_nodes_dir = Path(folder_paths.folder_names_and_paths["custom_nodes"][0][0])
|
| current_path = Path(__file__).parent
|
|
|
| wanvideo_dirs = []
|
|
|
|
|
| for path in custom_nodes_dir.iterdir():
|
| if (path.is_dir() and
|
| path != current_path and
|
| not path.name.endswith('.disabled') and
|
| 'wanvideo' in path.name.lower() and
|
| 'wrapper' in path.name.lower()):
|
| wanvideo_dirs.append(str(path))
|
|
|
| return wanvideo_dirs
|
|
|
|
|
| def temporal_score_rescaling(model_output, sample, timestep, k=1.0, tsr_sigma=0.1):
|
| t = (timestep / 1000)
|
| if t == 0.0:
|
| ratio = k
|
| else:
|
| snr_t = (1 - t)**2 / t**2
|
| ratio = (snr_t * tsr_sigma**2 + 1) / (snr_t * tsr_sigma**2 / k + 1)
|
|
|
| if not t == 1.0:
|
| model_output = (ratio * ((1-t) * model_output + sample) - sample) / (1 - t)
|
| return model_output
|
|
|
| def match_and_blend_colors(
|
| source_chunk: torch.Tensor,
|
| reference_image: torch.Tensor,
|
| strength: float,
|
| ) -> torch.Tensor:
|
| import kornia
|
| if strength == 0.0:
|
| return source_chunk
|
| source_chunk = source_chunk.unsqueeze(0)
|
|
|
|
|
| B, C, T, H, W = source_chunk.shape
|
| input_dtype = source_chunk.dtype
|
|
|
|
|
| src_01 = (source_chunk + 1.0) * 0.5
|
| ref_01 = (reference_image + 1.0) * 0.5
|
|
|
| src32 = src_01.to(torch.float32)
|
| ref32 = ref_01.to(torch.float32)
|
|
|
|
|
| src_bt = src32.permute(0, 2, 1, 3, 4).contiguous().view(B * T, C, H, W)
|
| ref_bchw = ref32[:, :, 0, :, :].contiguous()
|
|
|
|
|
| src_lab = kornia.color.rgb_to_lab(src_bt)
|
| ref_lab = kornia.color.rgb_to_lab(ref_bchw)
|
|
|
| src_lab_flat = src_lab.view(B * T, C, -1)
|
| ref_lab_flat = ref_lab.view(B, C, -1)
|
| src_std, src_mean = torch.std_mean(src_lab_flat, dim=-1, keepdim=True, unbiased=False)
|
| ref_std, ref_mean = torch.std_mean(ref_lab_flat, dim=-1, keepdim=True, unbiased=False)
|
| src_std = src_std.clamp_min_(1e-6)
|
|
|
| ref_mean_bt = ref_mean.repeat_interleave(T, dim=0)
|
| ref_std_bt = ref_std.repeat_interleave(T, dim=0)
|
|
|
| corrected_lab_flat = (src_lab_flat - src_mean) * (ref_std_bt / src_std) + ref_mean_bt
|
| corrected_lab = corrected_lab_flat.view(B * T, C, H, W)
|
|
|
|
|
| corrected_rgb_01 = kornia.color.lab_to_rgb(corrected_lab)
|
|
|
| blended_rgb_01 = (1.0 - strength) * src_bt + strength * corrected_rgb_01
|
|
|
|
|
| blended_rgb_01 = blended_rgb_01.view(B, T, C, H, W).permute(0, 2, 1, 3, 4).contiguous()
|
|
|
|
|
| return (blended_rgb_01 * 2.0 - 1.0)[0].to(dtype=input_dtype)
|
|
|