| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| import functools |
| import math |
| from math import prod |
| from typing import Any |
|
|
| import numpy as np |
| import torch |
| import torch.nn as nn |
| import torch.nn.functional as F |
|
|
| from ...configuration_utils import ConfigMixin, register_to_config |
| from ...loaders import FromOriginalModelMixin, PeftAdapterMixin |
| from ...utils import apply_lora_scale, deprecate, logging |
| from ...utils.torch_utils import maybe_allow_in_graph |
| from .._modeling_parallel import ContextParallelInput, ContextParallelOutput |
| from ..attention import AttentionMixin, FeedForward |
| from ..attention_dispatch import dispatch_attention_fn |
| from ..attention_processor import Attention |
| from ..cache_utils import CacheMixin |
| from ..embeddings import TimestepEmbedding, Timesteps |
| from ..modeling_outputs import Transformer2DModelOutput |
| from ..modeling_utils import ModelMixin |
| from ..normalization import AdaLayerNormContinuous, RMSNorm |
|
|
|
|
| logger = logging.get_logger(__name__) |
|
|
|
|
| def get_timestep_embedding( |
| timesteps: torch.Tensor, |
| embedding_dim: int, |
| flip_sin_to_cos: bool = False, |
| downscale_freq_shift: float = 1, |
| scale: float = 1, |
| max_period: int = 10000, |
| ) -> torch.Tensor: |
| """ |
| This matches the implementation in Denoising Diffusion Probabilistic Models: Create sinusoidal timestep embeddings. |
| |
| Args |
| timesteps (torch.Tensor): |
| a 1-D Tensor of N indices, one per batch element. These may be fractional. |
| embedding_dim (int): |
| the dimension of the output. |
| flip_sin_to_cos (bool): |
| Whether the embedding order should be `cos, sin` (if True) or `sin, cos` (if False) |
| downscale_freq_shift (float): |
| Controls the delta between frequencies between dimensions |
| scale (float): |
| Scaling factor applied to the embeddings. |
| max_period (int): |
| Controls the maximum frequency of the embeddings |
| Returns |
| torch.Tensor: an [N x dim] Tensor of positional embeddings. |
| """ |
| assert len(timesteps.shape) == 1, "Timesteps should be a 1d-array" |
|
|
| half_dim = embedding_dim // 2 |
| exponent = -math.log(max_period) * torch.arange( |
| start=0, end=half_dim, dtype=torch.float32, device=timesteps.device |
| ) |
| exponent = exponent / (half_dim - downscale_freq_shift) |
|
|
| emb = torch.exp(exponent).to(timesteps.dtype) |
| emb = timesteps[:, None].float() * emb[None, :] |
|
|
| |
| emb = scale * emb |
|
|
| |
| emb = torch.cat([torch.sin(emb), torch.cos(emb)], dim=-1) |
|
|
| |
| if flip_sin_to_cos: |
| emb = torch.cat([emb[:, half_dim:], emb[:, :half_dim]], dim=-1) |
|
|
| |
| if embedding_dim % 2 == 1: |
| emb = torch.nn.functional.pad(emb, (0, 1, 0, 0)) |
| return emb |
|
|
|
|
| def apply_rotary_emb_qwen( |
| x: torch.Tensor, |
| freqs_cis: torch.Tensor | tuple[torch.Tensor], |
| use_real: bool = True, |
| use_real_unbind_dim: int = -1, |
| ) -> tuple[torch.Tensor, torch.Tensor]: |
| """ |
| Apply rotary embeddings to input tensors using the given frequency tensor. This function applies rotary embeddings |
| to the given query or key 'x' tensors using the provided frequency tensor 'freqs_cis'. The input tensors are |
| reshaped as complex numbers, and the frequency tensor is reshaped for broadcasting compatibility. The resulting |
| tensors contain rotary embeddings and are returned as real tensors. |
| |
| Args: |
| x (`torch.Tensor`): |
| Query or key tensor to apply rotary embeddings. [B, S, H, D] xk (torch.Tensor): Key tensor to apply |
| freqs_cis (`tuple[torch.Tensor]`): Precomputed frequency tensor for complex exponentials. ([S, D], [S, D],) |
| |
| Returns: |
| tuple[torch.Tensor, torch.Tensor]: tuple of modified query tensor and key tensor with rotary embeddings. |
| """ |
| if use_real: |
| cos, sin = freqs_cis |
| cos = cos[None, None] |
| sin = sin[None, None] |
| cos, sin = cos.to(x.device), sin.to(x.device) |
|
|
| if use_real_unbind_dim == -1: |
| |
| x_real, x_imag = x.reshape(*x.shape[:-1], -1, 2).unbind(-1) |
| x_rotated = torch.stack([-x_imag, x_real], dim=-1).flatten(3) |
| elif use_real_unbind_dim == -2: |
| |
| x_real, x_imag = x.reshape(*x.shape[:-1], 2, -1).unbind(-2) |
| x_rotated = torch.cat([-x_imag, x_real], dim=-1) |
| else: |
| raise ValueError(f"`use_real_unbind_dim={use_real_unbind_dim}` but should be -1 or -2.") |
|
|
| out = (x.float() * cos + x_rotated.float() * sin).to(x.dtype) |
|
|
| return out |
| else: |
| x_rotated = torch.view_as_complex(x.float().reshape(*x.shape[:-1], -1, 2)) |
| freqs_cis = freqs_cis.unsqueeze(1) |
| x_out = torch.view_as_real(x_rotated * freqs_cis).flatten(3) |
|
|
| return x_out.type_as(x) |
|
|
|
|
| def compute_text_seq_len_from_mask( |
| encoder_hidden_states: torch.Tensor, encoder_hidden_states_mask: torch.Tensor | None |
| ) -> tuple[int, torch.Tensor | None, torch.Tensor | None]: |
| """ |
| Compute text sequence length without assuming contiguous masks. Returns length for RoPE and a normalized bool mask. |
| """ |
| batch_size, text_seq_len = encoder_hidden_states.shape[:2] |
| if encoder_hidden_states_mask is None: |
| return text_seq_len, None, None |
|
|
| if encoder_hidden_states_mask.shape[:2] != (batch_size, text_seq_len): |
| raise ValueError( |
| f"`encoder_hidden_states_mask` shape {encoder_hidden_states_mask.shape} must match " |
| f"(batch_size, text_seq_len)=({batch_size}, {text_seq_len})." |
| ) |
|
|
| if encoder_hidden_states_mask.dtype != torch.bool: |
| encoder_hidden_states_mask = encoder_hidden_states_mask.to(torch.bool) |
|
|
| position_ids = torch.arange(text_seq_len, device=encoder_hidden_states.device, dtype=torch.long) |
| active_positions = torch.where(encoder_hidden_states_mask, position_ids, position_ids.new_zeros(())) |
| has_active = encoder_hidden_states_mask.any(dim=1) |
| per_sample_len = torch.where( |
| has_active, |
| active_positions.max(dim=1).values + 1, |
| torch.as_tensor(text_seq_len, device=encoder_hidden_states.device), |
| ) |
| return text_seq_len, per_sample_len, encoder_hidden_states_mask |
|
|
|
|
| class QwenTimestepProjEmbeddings(nn.Module): |
| def __init__(self, embedding_dim, use_additional_t_cond=False): |
| super().__init__() |
|
|
| self.time_proj = Timesteps(num_channels=256, flip_sin_to_cos=True, downscale_freq_shift=0, scale=1000) |
| self.timestep_embedder = TimestepEmbedding(in_channels=256, time_embed_dim=embedding_dim) |
| self.use_additional_t_cond = use_additional_t_cond |
| if use_additional_t_cond: |
| self.addition_t_embedding = nn.Embedding(2, embedding_dim) |
|
|
| def forward(self, timestep, hidden_states, addition_t_cond=None): |
| timesteps_proj = self.time_proj(timestep) |
| timesteps_emb = self.timestep_embedder(timesteps_proj.to(dtype=hidden_states.dtype)) |
|
|
| conditioning = timesteps_emb |
| if self.use_additional_t_cond: |
| if addition_t_cond is None: |
| raise ValueError("When additional_t_cond is True, addition_t_cond must be provided.") |
| addition_t_emb = self.addition_t_embedding(addition_t_cond) |
| addition_t_emb = addition_t_emb.to(dtype=hidden_states.dtype) |
| conditioning = conditioning + addition_t_emb |
|
|
| return conditioning |
|
|
|
|
| class QwenEmbedRope(nn.Module): |
| def __init__(self, theta: int, axes_dim: list[int], scale_rope=False): |
| super().__init__() |
| self.theta = theta |
| self.axes_dim = axes_dim |
| pos_index = torch.arange(4096) |
| neg_index = torch.arange(4096).flip(0) * -1 - 1 |
| self.pos_freqs = torch.cat( |
| [ |
| self.rope_params(pos_index, self.axes_dim[0], self.theta), |
| self.rope_params(pos_index, self.axes_dim[1], self.theta), |
| self.rope_params(pos_index, self.axes_dim[2], self.theta), |
| ], |
| dim=1, |
| ) |
| self.neg_freqs = torch.cat( |
| [ |
| self.rope_params(neg_index, self.axes_dim[0], self.theta), |
| self.rope_params(neg_index, self.axes_dim[1], self.theta), |
| self.rope_params(neg_index, self.axes_dim[2], self.theta), |
| ], |
| dim=1, |
| ) |
|
|
| |
| self.scale_rope = scale_rope |
|
|
| def rope_params(self, index, dim, theta=10000): |
| """ |
| Args: |
| index: [0, 1, 2, 3] 1D Tensor representing the position index of the token |
| """ |
| assert dim % 2 == 0 |
| freqs = torch.outer(index, 1.0 / torch.pow(theta, torch.arange(0, dim, 2).to(torch.float32).div(dim))) |
| freqs = torch.polar(torch.ones_like(freqs), freqs) |
| return freqs |
|
|
| def forward( |
| self, |
| video_fhw: tuple[int, int, int, list[tuple[int, int, int]]], |
| txt_seq_lens: list[int] | None = None, |
| device: torch.device = None, |
| max_txt_seq_len: int | torch.Tensor | None = None, |
| ) -> tuple[torch.Tensor, torch.Tensor]: |
| """ |
| Args: |
| video_fhw (`tuple[int, int, int]` or `list[tuple[int, int, int]]`): |
| A list of 3 integers [frame, height, width] representing the shape of the video. |
| txt_seq_lens (`list[int]`, *optional*, **Deprecated**): |
| Deprecated parameter. Use `max_txt_seq_len` instead. If provided, the maximum value will be used. |
| device: (`torch.device`, *optional*): |
| The device on which to perform the RoPE computation. |
| max_txt_seq_len (`int` or `torch.Tensor`, *optional*): |
| The maximum text sequence length for RoPE computation. This should match the encoder hidden states |
| sequence length. Can be either an int or a scalar tensor (for torch.compile compatibility). |
| """ |
| |
| if txt_seq_lens is not None: |
| deprecate( |
| "txt_seq_lens", |
| "0.39.0", |
| "Passing `txt_seq_lens` is deprecated and will be removed in version 0.39.0. " |
| "Please use `max_txt_seq_len` instead. " |
| "The new parameter accepts a single int or tensor value representing the maximum text sequence length.", |
| standard_warn=False, |
| ) |
| if max_txt_seq_len is None: |
| |
| max_txt_seq_len = max(txt_seq_lens) if isinstance(txt_seq_lens, list) else txt_seq_lens |
|
|
| if max_txt_seq_len is None: |
| raise ValueError("Either `max_txt_seq_len` or `txt_seq_lens` (deprecated) must be provided.") |
|
|
| |
| if isinstance(video_fhw, list) and len(video_fhw) > 1: |
| |
| first_fhw = video_fhw[0] |
| if not all(fhw == first_fhw for fhw in video_fhw): |
| logger.warning( |
| "Batch inference with variable-sized images is not currently supported in QwenEmbedRope. " |
| "All images in the batch should have the same dimensions (frame, height, width). " |
| f"Detected sizes: {video_fhw}. Using the first image's dimensions {first_fhw} " |
| "for RoPE computation, which may lead to incorrect results for other images in the batch." |
| ) |
|
|
| if isinstance(video_fhw, list): |
| video_fhw = video_fhw[0] |
| if not isinstance(video_fhw, list): |
| video_fhw = [video_fhw] |
|
|
| vid_freqs = [] |
| max_vid_index = 0 |
| for idx, fhw in enumerate(video_fhw): |
| frame, height, width = fhw |
| |
| video_freq = self._compute_video_freqs(frame, height, width, idx, device) |
| vid_freqs.append(video_freq) |
|
|
| if self.scale_rope: |
| max_vid_index = max(height // 2, width // 2, max_vid_index) |
| else: |
| max_vid_index = max(height, width, max_vid_index) |
|
|
| max_txt_seq_len_int = int(max_txt_seq_len) |
| |
| txt_freqs = self.pos_freqs.to(device)[max_vid_index : max_vid_index + max_txt_seq_len_int, ...] |
| vid_freqs = torch.cat(vid_freqs, dim=0) |
|
|
| return vid_freqs, txt_freqs |
|
|
| @functools.lru_cache(maxsize=128) |
| def _compute_video_freqs( |
| self, frame: int, height: int, width: int, idx: int = 0, device: torch.device = None |
| ) -> torch.Tensor: |
| seq_lens = frame * height * width |
| pos_freqs = self.pos_freqs.to(device) if device is not None else self.pos_freqs |
| neg_freqs = self.neg_freqs.to(device) if device is not None else self.neg_freqs |
|
|
| freqs_pos = pos_freqs.split([x // 2 for x in self.axes_dim], dim=1) |
| freqs_neg = neg_freqs.split([x // 2 for x in self.axes_dim], dim=1) |
|
|
| freqs_frame = freqs_pos[0][idx : idx + frame].view(frame, 1, 1, -1).expand(frame, height, width, -1) |
| if self.scale_rope: |
| freqs_height = torch.cat([freqs_neg[1][-(height - height // 2) :], freqs_pos[1][: height // 2]], dim=0) |
| freqs_height = freqs_height.view(1, height, 1, -1).expand(frame, height, width, -1) |
| freqs_width = torch.cat([freqs_neg[2][-(width - width // 2) :], freqs_pos[2][: width // 2]], dim=0) |
| freqs_width = freqs_width.view(1, 1, width, -1).expand(frame, height, width, -1) |
| else: |
| freqs_height = freqs_pos[1][:height].view(1, height, 1, -1).expand(frame, height, width, -1) |
| freqs_width = freqs_pos[2][:width].view(1, 1, width, -1).expand(frame, height, width, -1) |
|
|
| freqs = torch.cat([freqs_frame, freqs_height, freqs_width], dim=-1).reshape(seq_lens, -1) |
| return freqs.clone().contiguous() |
|
|
|
|
| class QwenEmbedLayer3DRope(nn.Module): |
| def __init__(self, theta: int, axes_dim: list[int], scale_rope=False): |
| super().__init__() |
| self.theta = theta |
| self.axes_dim = axes_dim |
| pos_index = torch.arange(4096) |
| neg_index = torch.arange(4096).flip(0) * -1 - 1 |
| self.pos_freqs = torch.cat( |
| [ |
| self.rope_params(pos_index, self.axes_dim[0], self.theta), |
| self.rope_params(pos_index, self.axes_dim[1], self.theta), |
| self.rope_params(pos_index, self.axes_dim[2], self.theta), |
| ], |
| dim=1, |
| ) |
| self.neg_freqs = torch.cat( |
| [ |
| self.rope_params(neg_index, self.axes_dim[0], self.theta), |
| self.rope_params(neg_index, self.axes_dim[1], self.theta), |
| self.rope_params(neg_index, self.axes_dim[2], self.theta), |
| ], |
| dim=1, |
| ) |
|
|
| self.scale_rope = scale_rope |
|
|
| def rope_params(self, index, dim, theta=10000): |
| """ |
| Args: |
| index: [0, 1, 2, 3] 1D Tensor representing the position index of the token |
| """ |
| assert dim % 2 == 0 |
| freqs = torch.outer(index, 1.0 / torch.pow(theta, torch.arange(0, dim, 2).to(torch.float32).div(dim))) |
| freqs = torch.polar(torch.ones_like(freqs), freqs) |
| return freqs |
|
|
| def forward( |
| self, |
| video_fhw: tuple[int, int, int, list[tuple[int, int, int]]], |
| max_txt_seq_len: int | torch.Tensor, |
| device: torch.device = None, |
| ) -> tuple[torch.Tensor, torch.Tensor]: |
| """ |
| Args: |
| video_fhw (`tuple[int, int, int]` or `list[tuple[int, int, int]]`): |
| A list of 3 integers [frame, height, width] representing the shape of the video, or a list of layer |
| structures. |
| max_txt_seq_len (`int` or `torch.Tensor`): |
| The maximum text sequence length for RoPE computation. This should match the encoder hidden states |
| sequence length. Can be either an int or a scalar tensor (for torch.compile compatibility). |
| device: (`torch.device`, *optional*): |
| The device on which to perform the RoPE computation. |
| """ |
| |
| |
| if isinstance(video_fhw, list) and len(video_fhw) > 1: |
| |
| first_entry = video_fhw[0] |
| if not all(entry == first_entry for entry in video_fhw): |
| logger.warning( |
| "Batch inference with variable-sized images is not currently supported in QwenEmbedLayer3DRope. " |
| "All images in the batch should have the same layer structure. " |
| f"Detected sizes: {video_fhw}. Using the first image's layer structure {first_entry} " |
| "for RoPE computation, which may lead to incorrect results for other images in the batch." |
| ) |
|
|
| if isinstance(video_fhw, list): |
| video_fhw = video_fhw[0] |
| if not isinstance(video_fhw, list): |
| video_fhw = [video_fhw] |
|
|
| vid_freqs = [] |
| max_vid_index = 0 |
| layer_num = len(video_fhw) - 1 |
| for idx, fhw in enumerate(video_fhw): |
| frame, height, width = fhw |
| if idx != layer_num: |
| video_freq = self._compute_video_freqs(frame, height, width, idx, device) |
| else: |
| |
| video_freq = self._compute_condition_freqs(frame, height, width, device) |
| vid_freqs.append(video_freq) |
|
|
| if self.scale_rope: |
| max_vid_index = max(height // 2, width // 2, max_vid_index) |
| else: |
| max_vid_index = max(height, width, max_vid_index) |
|
|
| max_vid_index = max(max_vid_index, layer_num) |
| max_txt_seq_len_int = int(max_txt_seq_len) |
| |
| txt_freqs = self.pos_freqs.to(device)[max_vid_index : max_vid_index + max_txt_seq_len_int, ...] |
| vid_freqs = torch.cat(vid_freqs, dim=0) |
|
|
| return vid_freqs, txt_freqs |
|
|
| @functools.lru_cache(maxsize=None) |
| def _compute_video_freqs(self, frame, height, width, idx=0, device: torch.device = None): |
| seq_lens = frame * height * width |
| pos_freqs = self.pos_freqs.to(device) if device is not None else self.pos_freqs |
| neg_freqs = self.neg_freqs.to(device) if device is not None else self.neg_freqs |
|
|
| freqs_pos = pos_freqs.split([x // 2 for x in self.axes_dim], dim=1) |
| freqs_neg = neg_freqs.split([x // 2 for x in self.axes_dim], dim=1) |
|
|
| freqs_frame = freqs_pos[0][idx : idx + frame].view(frame, 1, 1, -1).expand(frame, height, width, -1) |
| if self.scale_rope: |
| freqs_height = torch.cat([freqs_neg[1][-(height - height // 2) :], freqs_pos[1][: height // 2]], dim=0) |
| freqs_height = freqs_height.view(1, height, 1, -1).expand(frame, height, width, -1) |
| freqs_width = torch.cat([freqs_neg[2][-(width - width // 2) :], freqs_pos[2][: width // 2]], dim=0) |
| freqs_width = freqs_width.view(1, 1, width, -1).expand(frame, height, width, -1) |
| else: |
| freqs_height = freqs_pos[1][:height].view(1, height, 1, -1).expand(frame, height, width, -1) |
| freqs_width = freqs_pos[2][:width].view(1, 1, width, -1).expand(frame, height, width, -1) |
|
|
| freqs = torch.cat([freqs_frame, freqs_height, freqs_width], dim=-1).reshape(seq_lens, -1) |
| return freqs.clone().contiguous() |
|
|
| @functools.lru_cache(maxsize=None) |
| def _compute_condition_freqs(self, frame, height, width, device: torch.device = None): |
| seq_lens = frame * height * width |
| pos_freqs = self.pos_freqs.to(device) if device is not None else self.pos_freqs |
| neg_freqs = self.neg_freqs.to(device) if device is not None else self.neg_freqs |
|
|
| freqs_pos = pos_freqs.split([x // 2 for x in self.axes_dim], dim=1) |
| freqs_neg = neg_freqs.split([x // 2 for x in self.axes_dim], dim=1) |
|
|
| freqs_frame = freqs_neg[0][-1:].view(frame, 1, 1, -1).expand(frame, height, width, -1) |
| if self.scale_rope: |
| freqs_height = torch.cat([freqs_neg[1][-(height - height // 2) :], freqs_pos[1][: height // 2]], dim=0) |
| freqs_height = freqs_height.view(1, height, 1, -1).expand(frame, height, width, -1) |
| freqs_width = torch.cat([freqs_neg[2][-(width - width // 2) :], freqs_pos[2][: width // 2]], dim=0) |
| freqs_width = freqs_width.view(1, 1, width, -1).expand(frame, height, width, -1) |
| else: |
| freqs_height = freqs_pos[1][:height].view(1, height, 1, -1).expand(frame, height, width, -1) |
| freqs_width = freqs_pos[2][:width].view(1, 1, width, -1).expand(frame, height, width, -1) |
|
|
| freqs = torch.cat([freqs_frame, freqs_height, freqs_width], dim=-1).reshape(seq_lens, -1) |
| return freqs.clone().contiguous() |
|
|
|
|
| class QwenDoubleStreamAttnProcessor2_0: |
| """ |
| Attention processor for Qwen double-stream architecture, matching DoubleStreamLayerMegatron logic. This processor |
| implements joint attention computation where text and image streams are processed together. |
| """ |
|
|
| _attention_backend = None |
| _parallel_config = None |
|
|
| def __init__(self): |
| if not hasattr(F, "scaled_dot_product_attention"): |
| raise ImportError( |
| "QwenDoubleStreamAttnProcessor2_0 requires PyTorch 2.0, to use it, please upgrade PyTorch to 2.0." |
| ) |
|
|
| def __call__( |
| self, |
| attn: Attention, |
| hidden_states: torch.FloatTensor, |
| encoder_hidden_states: torch.FloatTensor = None, |
| encoder_hidden_states_mask: torch.FloatTensor = None, |
| attention_mask: torch.FloatTensor | None = None, |
| image_rotary_emb: torch.Tensor | None = None, |
| ) -> torch.FloatTensor: |
| if encoder_hidden_states is None: |
| raise ValueError("QwenDoubleStreamAttnProcessor2_0 requires encoder_hidden_states (text stream)") |
|
|
| seq_txt = encoder_hidden_states.shape[1] |
|
|
| |
| img_query = attn.to_q(hidden_states) |
| img_key = attn.to_k(hidden_states) |
| img_value = attn.to_v(hidden_states) |
|
|
| |
| txt_query = attn.add_q_proj(encoder_hidden_states) |
| txt_key = attn.add_k_proj(encoder_hidden_states) |
| txt_value = attn.add_v_proj(encoder_hidden_states) |
|
|
| |
| img_query = img_query.unflatten(-1, (attn.heads, -1)) |
| img_key = img_key.unflatten(-1, (attn.heads, -1)) |
| img_value = img_value.unflatten(-1, (attn.heads, -1)) |
|
|
| txt_query = txt_query.unflatten(-1, (attn.heads, -1)) |
| txt_key = txt_key.unflatten(-1, (attn.heads, -1)) |
| txt_value = txt_value.unflatten(-1, (attn.heads, -1)) |
|
|
| |
| if attn.norm_q is not None: |
| img_query = attn.norm_q(img_query) |
| if attn.norm_k is not None: |
| img_key = attn.norm_k(img_key) |
| if attn.norm_added_q is not None: |
| txt_query = attn.norm_added_q(txt_query) |
| if attn.norm_added_k is not None: |
| txt_key = attn.norm_added_k(txt_key) |
|
|
| |
| if image_rotary_emb is not None: |
| img_freqs, txt_freqs = image_rotary_emb |
| img_query = apply_rotary_emb_qwen(img_query, img_freqs, use_real=False) |
| img_key = apply_rotary_emb_qwen(img_key, img_freqs, use_real=False) |
| txt_query = apply_rotary_emb_qwen(txt_query, txt_freqs, use_real=False) |
| txt_key = apply_rotary_emb_qwen(txt_key, txt_freqs, use_real=False) |
|
|
| |
| |
| joint_query = torch.cat([txt_query, img_query], dim=1) |
| joint_key = torch.cat([txt_key, img_key], dim=1) |
| joint_value = torch.cat([txt_value, img_value], dim=1) |
|
|
| joint_hidden_states = dispatch_attention_fn( |
| joint_query, |
| joint_key, |
| joint_value, |
| attn_mask=attention_mask, |
| dropout_p=0.0, |
| is_causal=False, |
| backend=self._attention_backend, |
| parallel_config=self._parallel_config, |
| ) |
|
|
| |
| joint_hidden_states = joint_hidden_states.flatten(2, 3) |
| joint_hidden_states = joint_hidden_states.to(joint_query.dtype) |
|
|
| |
| txt_attn_output = joint_hidden_states[:, :seq_txt, :] |
| img_attn_output = joint_hidden_states[:, seq_txt:, :] |
|
|
| |
| img_attn_output = attn.to_out[0](img_attn_output.contiguous()) |
| if len(attn.to_out) > 1: |
| img_attn_output = attn.to_out[1](img_attn_output) |
|
|
| txt_attn_output = attn.to_add_out(txt_attn_output.contiguous()) |
|
|
| return img_attn_output, txt_attn_output |
|
|
|
|
| @maybe_allow_in_graph |
| class QwenImageTransformerBlock(nn.Module): |
| def __init__( |
| self, |
| dim: int, |
| num_attention_heads: int, |
| attention_head_dim: int, |
| qk_norm: str = "rms_norm", |
| eps: float = 1e-6, |
| zero_cond_t: bool = False, |
| ): |
| super().__init__() |
|
|
| self.dim = dim |
| self.num_attention_heads = num_attention_heads |
| self.attention_head_dim = attention_head_dim |
|
|
| |
| self.img_mod = nn.Sequential( |
| nn.SiLU(), |
| nn.Linear(dim, 6 * dim, bias=True), |
| ) |
| self.img_norm1 = nn.LayerNorm(dim, elementwise_affine=False, eps=eps) |
| self.attn = Attention( |
| query_dim=dim, |
| cross_attention_dim=None, |
| added_kv_proj_dim=dim, |
| dim_head=attention_head_dim, |
| heads=num_attention_heads, |
| out_dim=dim, |
| context_pre_only=False, |
| bias=True, |
| processor=QwenDoubleStreamAttnProcessor2_0(), |
| qk_norm=qk_norm, |
| eps=eps, |
| ) |
| self.img_norm2 = nn.LayerNorm(dim, elementwise_affine=False, eps=eps) |
| self.img_mlp = FeedForward(dim=dim, dim_out=dim, activation_fn="gelu-approximate") |
|
|
| |
| self.txt_mod = nn.Sequential( |
| nn.SiLU(), |
| nn.Linear(dim, 6 * dim, bias=True), |
| ) |
| self.txt_norm1 = nn.LayerNorm(dim, elementwise_affine=False, eps=eps) |
| |
| self.txt_norm2 = nn.LayerNorm(dim, elementwise_affine=False, eps=eps) |
| self.txt_mlp = FeedForward(dim=dim, dim_out=dim, activation_fn="gelu-approximate") |
|
|
| self.zero_cond_t = zero_cond_t |
|
|
| def _modulate(self, x, mod_params, index=None): |
| """Apply modulation to input tensor""" |
| |
| shift, scale, gate = mod_params.chunk(3, dim=-1) |
|
|
| if index is not None: |
| |
| |
| actual_batch = shift.size(0) // 2 |
| shift_0, shift_1 = shift[:actual_batch], shift[actual_batch:] |
| scale_0, scale_1 = scale[:actual_batch], scale[actual_batch:] |
| gate_0, gate_1 = gate[:actual_batch], gate[actual_batch:] |
|
|
| |
| |
| index_expanded = index.unsqueeze(-1) |
|
|
| |
| shift_0_exp = shift_0.unsqueeze(1) |
| shift_1_exp = shift_1.unsqueeze(1) |
| scale_0_exp = scale_0.unsqueeze(1) |
| scale_1_exp = scale_1.unsqueeze(1) |
| gate_0_exp = gate_0.unsqueeze(1) |
| gate_1_exp = gate_1.unsqueeze(1) |
|
|
| |
| shift_result = torch.where(index_expanded == 0, shift_0_exp, shift_1_exp) |
| scale_result = torch.where(index_expanded == 0, scale_0_exp, scale_1_exp) |
| gate_result = torch.where(index_expanded == 0, gate_0_exp, gate_1_exp) |
| else: |
| shift_result = shift.unsqueeze(1) |
| scale_result = scale.unsqueeze(1) |
| gate_result = gate.unsqueeze(1) |
|
|
| return x * (1 + scale_result) + shift_result, gate_result |
|
|
| def forward( |
| self, |
| hidden_states: torch.Tensor, |
| encoder_hidden_states: torch.Tensor, |
| encoder_hidden_states_mask: torch.Tensor, |
| temb: torch.Tensor, |
| image_rotary_emb: tuple[torch.Tensor, torch.Tensor] | None = None, |
| joint_attention_kwargs: dict[str, Any] | None = None, |
| modulate_index: list[int] | None = None, |
| ) -> tuple[torch.Tensor, torch.Tensor]: |
| |
| img_mod_params = self.img_mod(temb) |
|
|
| if self.zero_cond_t: |
| temb = torch.chunk(temb, 2, dim=0)[0] |
| txt_mod_params = self.txt_mod(temb) |
|
|
| |
| img_mod1, img_mod2 = img_mod_params.chunk(2, dim=-1) |
| txt_mod1, txt_mod2 = txt_mod_params.chunk(2, dim=-1) |
|
|
| |
| img_normed = self.img_norm1(hidden_states) |
| img_modulated, img_gate1 = self._modulate(img_normed, img_mod1, modulate_index) |
|
|
| |
| txt_normed = self.txt_norm1(encoder_hidden_states) |
| txt_modulated, txt_gate1 = self._modulate(txt_normed, txt_mod1) |
|
|
| |
| |
| |
| |
| |
| |
| joint_attention_kwargs = joint_attention_kwargs or {} |
| attn_output = self.attn( |
| hidden_states=img_modulated, |
| encoder_hidden_states=txt_modulated, |
| encoder_hidden_states_mask=encoder_hidden_states_mask, |
| image_rotary_emb=image_rotary_emb, |
| **joint_attention_kwargs, |
| ) |
|
|
| |
| img_attn_output, txt_attn_output = attn_output |
|
|
| |
| hidden_states = hidden_states + img_gate1 * img_attn_output |
| encoder_hidden_states = encoder_hidden_states + txt_gate1 * txt_attn_output |
|
|
| |
| img_normed2 = self.img_norm2(hidden_states) |
| img_modulated2, img_gate2 = self._modulate(img_normed2, img_mod2, modulate_index) |
| img_mlp_output = self.img_mlp(img_modulated2) |
| hidden_states = hidden_states + img_gate2 * img_mlp_output |
|
|
| |
| txt_normed2 = self.txt_norm2(encoder_hidden_states) |
| txt_modulated2, txt_gate2 = self._modulate(txt_normed2, txt_mod2) |
| txt_mlp_output = self.txt_mlp(txt_modulated2) |
| encoder_hidden_states = encoder_hidden_states + txt_gate2 * txt_mlp_output |
|
|
| |
| if encoder_hidden_states.dtype == torch.float16: |
| encoder_hidden_states = encoder_hidden_states.clip(-65504, 65504) |
| if hidden_states.dtype == torch.float16: |
| hidden_states = hidden_states.clip(-65504, 65504) |
|
|
| return encoder_hidden_states, hidden_states |
|
|
|
|
| class QwenImageTransformer2DModel( |
| ModelMixin, ConfigMixin, PeftAdapterMixin, FromOriginalModelMixin, CacheMixin, AttentionMixin |
| ): |
| """ |
| The Transformer model introduced in Qwen. |
| |
| Args: |
| patch_size (`int`, defaults to `2`): |
| Patch size to turn the input data into small patches. |
| in_channels (`int`, defaults to `64`): |
| The number of channels in the input. |
| out_channels (`int`, *optional*, defaults to `None`): |
| The number of channels in the output. If not specified, it defaults to `in_channels`. |
| num_layers (`int`, defaults to `60`): |
| The number of layers of dual stream DiT blocks to use. |
| attention_head_dim (`int`, defaults to `128`): |
| The number of dimensions to use for each attention head. |
| num_attention_heads (`int`, defaults to `24`): |
| The number of attention heads to use. |
| joint_attention_dim (`int`, defaults to `3584`): |
| The number of dimensions to use for the joint attention (embedding/channel dimension of |
| `encoder_hidden_states`). |
| guidance_embeds (`bool`, defaults to `False`): |
| Whether to use guidance embeddings for guidance-distilled variant of the model. |
| axes_dims_rope (`tuple[int]`, defaults to `(16, 56, 56)`): |
| The dimensions to use for the rotary positional embeddings. |
| """ |
|
|
| _supports_gradient_checkpointing = True |
| _no_split_modules = ["QwenImageTransformerBlock"] |
| _skip_layerwise_casting_patterns = ["pos_embed", "norm"] |
| _repeated_blocks = ["QwenImageTransformerBlock"] |
| |
| _cp_plan = { |
| "transformer_blocks.0": { |
| "hidden_states": ContextParallelInput(split_dim=1, expected_dims=3, split_output=False), |
| "encoder_hidden_states": ContextParallelInput(split_dim=1, expected_dims=3, split_output=False), |
| }, |
| "transformer_blocks.*": { |
| "modulate_index": ContextParallelInput(split_dim=1, expected_dims=2, split_output=False), |
| }, |
| "pos_embed": { |
| 0: ContextParallelInput(split_dim=0, expected_dims=2, split_output=True), |
| 1: ContextParallelInput(split_dim=0, expected_dims=2, split_output=True), |
| }, |
| "proj_out": ContextParallelOutput(gather_dim=1, expected_dims=3), |
| } |
|
|
| @register_to_config |
| def __init__( |
| self, |
| patch_size: int = 2, |
| in_channels: int = 64, |
| out_channels: int | None = 16, |
| num_layers: int = 60, |
| attention_head_dim: int = 128, |
| num_attention_heads: int = 24, |
| joint_attention_dim: int = 3584, |
| guidance_embeds: bool = False, |
| axes_dims_rope: tuple[int, int, int] = (16, 56, 56), |
| zero_cond_t: bool = False, |
| use_additional_t_cond: bool = False, |
| use_layer3d_rope: bool = False, |
| ): |
| super().__init__() |
| self.out_channels = out_channels or in_channels |
| self.inner_dim = num_attention_heads * attention_head_dim |
|
|
| if not use_layer3d_rope: |
| self.pos_embed = QwenEmbedRope(theta=10000, axes_dim=list(axes_dims_rope), scale_rope=True) |
| else: |
| self.pos_embed = QwenEmbedLayer3DRope(theta=10000, axes_dim=list(axes_dims_rope), scale_rope=True) |
|
|
| self.time_text_embed = QwenTimestepProjEmbeddings( |
| embedding_dim=self.inner_dim, use_additional_t_cond=use_additional_t_cond |
| ) |
|
|
| self.txt_norm = RMSNorm(joint_attention_dim, eps=1e-6) |
|
|
| self.img_in = nn.Linear(in_channels, self.inner_dim) |
| self.txt_in = nn.Linear(joint_attention_dim, self.inner_dim) |
|
|
| self.transformer_blocks = nn.ModuleList( |
| [ |
| QwenImageTransformerBlock( |
| dim=self.inner_dim, |
| num_attention_heads=num_attention_heads, |
| attention_head_dim=attention_head_dim, |
| zero_cond_t=zero_cond_t, |
| ) |
| for _ in range(num_layers) |
| ] |
| ) |
|
|
| self.norm_out = AdaLayerNormContinuous(self.inner_dim, self.inner_dim, elementwise_affine=False, eps=1e-6) |
| self.proj_out = nn.Linear(self.inner_dim, patch_size * patch_size * self.out_channels, bias=True) |
|
|
| self.gradient_checkpointing = False |
| self.zero_cond_t = zero_cond_t |
|
|
| @apply_lora_scale("attention_kwargs") |
| def forward( |
| self, |
| hidden_states: torch.Tensor, |
| encoder_hidden_states: torch.Tensor = None, |
| encoder_hidden_states_mask: torch.Tensor = None, |
| timestep: torch.LongTensor = None, |
| img_shapes: list[tuple[int, int, int]] | None = None, |
| txt_seq_lens: list[int] | None = None, |
| guidance: torch.Tensor = None, |
| attention_kwargs: dict[str, Any] | None = None, |
| controlnet_block_samples=None, |
| additional_t_cond=None, |
| return_dict: bool = True, |
| ) -> torch.Tensor | Transformer2DModelOutput: |
| """ |
| The [`QwenTransformer2DModel`] forward method. |
| |
| Args: |
| hidden_states (`torch.Tensor` of shape `(batch_size, image_sequence_length, in_channels)`): |
| Input `hidden_states`. |
| encoder_hidden_states (`torch.Tensor` of shape `(batch_size, text_sequence_length, joint_attention_dim)`): |
| Conditional embeddings (embeddings computed from the input conditions such as prompts) to use. |
| encoder_hidden_states_mask (`torch.Tensor` of shape `(batch_size, text_sequence_length)`, *optional*): |
| Mask for the encoder hidden states. Expected to have 1.0 for valid tokens and 0.0 for padding tokens. |
| Used in the attention processor to prevent attending to padding tokens. The mask can have any pattern |
| (not just contiguous valid tokens followed by padding) since it's applied element-wise in attention. |
| timestep ( `torch.LongTensor`): |
| Used to indicate denoising step. |
| img_shapes (`list[tuple[int, int, int]]`, *optional*): |
| Image shapes for RoPE computation. |
| txt_seq_lens (`list[int]`, *optional*, **Deprecated**): |
| Deprecated parameter. Use `encoder_hidden_states_mask` instead. If provided, the maximum value will be |
| used to compute RoPE sequence length. |
| guidance (`torch.Tensor`, *optional*): |
| Guidance tensor for conditional generation. |
| attention_kwargs (`dict`, *optional*): |
| A kwargs dictionary that if specified is passed along to the `AttentionProcessor` as defined under |
| `self.processor` in |
| [diffusers.models.attention_processor](https://github.com/huggingface/diffusers/blob/main/src/diffusers/models/attention_processor.py). |
| controlnet_block_samples (*optional*): |
| ControlNet block samples to add to the transformer blocks. |
| return_dict (`bool`, *optional*, defaults to `True`): |
| Whether or not to return a [`~models.transformer_2d.Transformer2DModelOutput`] instead of a plain |
| tuple. |
| |
| Returns: |
| If `return_dict` is True, an [`~models.transformer_2d.Transformer2DModelOutput`] is returned, otherwise a |
| `tuple` where the first element is the sample tensor. |
| """ |
| if txt_seq_lens is not None: |
| deprecate( |
| "txt_seq_lens", |
| "0.39.0", |
| "Passing `txt_seq_lens` is deprecated and will be removed in version 0.39.0. " |
| "Please use `encoder_hidden_states_mask` instead. " |
| "The mask-based approach is more flexible and supports variable-length sequences.", |
| standard_warn=False, |
| ) |
|
|
| hidden_states = self.img_in(hidden_states) |
|
|
| timestep = timestep.to(hidden_states.dtype) |
|
|
| if self.zero_cond_t: |
| timestep = torch.cat([timestep, timestep * 0], dim=0) |
| modulate_index = torch.tensor( |
| [[0] * prod(sample[0]) + [1] * sum([prod(s) for s in sample[1:]]) for sample in img_shapes], |
| device=timestep.device, |
| dtype=torch.int, |
| ) |
| else: |
| modulate_index = None |
|
|
| encoder_hidden_states = self.txt_norm(encoder_hidden_states) |
| encoder_hidden_states = self.txt_in(encoder_hidden_states) |
|
|
| |
| text_seq_len, _, encoder_hidden_states_mask = compute_text_seq_len_from_mask( |
| encoder_hidden_states, encoder_hidden_states_mask |
| ) |
|
|
| if guidance is not None: |
| guidance = guidance.to(hidden_states.dtype) * 1000 |
|
|
| temb = ( |
| self.time_text_embed(timestep, hidden_states, additional_t_cond) |
| if guidance is None |
| else self.time_text_embed(timestep, guidance, hidden_states, additional_t_cond) |
| ) |
|
|
| image_rotary_emb = self.pos_embed(img_shapes, max_txt_seq_len=text_seq_len, device=hidden_states.device) |
|
|
| |
| |
| block_attention_kwargs = attention_kwargs.copy() if attention_kwargs is not None else {} |
| if encoder_hidden_states_mask is not None: |
| |
| batch_size, image_seq_len = hidden_states.shape[:2] |
| image_mask = torch.ones((batch_size, image_seq_len), dtype=torch.bool, device=hidden_states.device) |
| joint_attention_mask = torch.cat([encoder_hidden_states_mask, image_mask], dim=1) |
| block_attention_kwargs["attention_mask"] = joint_attention_mask |
|
|
| for index_block, block in enumerate(self.transformer_blocks): |
| if torch.is_grad_enabled() and self.gradient_checkpointing: |
| encoder_hidden_states, hidden_states = self._gradient_checkpointing_func( |
| block, |
| hidden_states, |
| encoder_hidden_states, |
| None, |
| temb, |
| image_rotary_emb, |
| block_attention_kwargs, |
| modulate_index, |
| ) |
|
|
| else: |
| encoder_hidden_states, hidden_states = block( |
| hidden_states=hidden_states, |
| encoder_hidden_states=encoder_hidden_states, |
| encoder_hidden_states_mask=None, |
| temb=temb, |
| image_rotary_emb=image_rotary_emb, |
| joint_attention_kwargs=block_attention_kwargs, |
| modulate_index=modulate_index, |
| ) |
|
|
| |
| if controlnet_block_samples is not None: |
| interval_control = len(self.transformer_blocks) / len(controlnet_block_samples) |
| interval_control = int(np.ceil(interval_control)) |
| hidden_states = hidden_states + controlnet_block_samples[index_block // interval_control] |
|
|
| if self.zero_cond_t: |
| temb = temb.chunk(2, dim=0)[0] |
| |
| hidden_states = self.norm_out(hidden_states, temb) |
| output = self.proj_out(hidden_states) |
|
|
| if not return_dict: |
| return (output,) |
|
|
| return Transformer2DModelOutput(sample=output) |
|
|