Spaces:
Running on Zero
Running on Zero
File size: 49,628 Bytes
e35b35d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 | # Copyright 2024-2025 The Robbyant Team Authors. All rights reserved.
import math
from copy import deepcopy
import torch
import torch.nn as nn
import torch.nn.functional as F
from diffusers.configuration_utils import ConfigMixin, register_to_config
from diffusers.models.attention import FeedForward
from diffusers.models.embeddings import (
PixArtAlphaTextProjection,
TimestepEmbedding,
Timesteps,
)
from diffusers.models.modeling_utils import ModelMixin
from diffusers.models.normalization import FP32LayerNorm
from einops import rearrange
from typing import Callable, ClassVar
from torch.nn.attention.flex_attention import (
_mask_mod_signature,
BlockMask,
create_block_mask,
flex_attention,
and_masks,
or_masks
)
from functools import partial
try:
from flash_attn_interface import flash_attn_func
except:
from flash_attn import flash_attn_func
__all__ = ['WanTransformer3DModel']
def custom_sdpa(q, k, v):
out = F.scaled_dot_product_attention(q.transpose(1, 2), k.transpose(1, 2),
v.transpose(1, 2))
return out.transpose(1, 2)
class FlexAttnFunc(nn.Module):
flex_attn: ClassVar[Callable] = torch.compile(
flex_attention, dynamic=True,
)
compiled_create_block_mask: ClassVar[Callable] = torch.compile(create_block_mask)
attention_mask: ClassVar[BlockMask] = None
cross_attention_mask: ClassVar[BlockMask] = None
def __init__(
self,
is_cross=False,
) -> None:
super().__init__()
self.is_cross = is_cross
def forward(
self,
query: torch.Tensor,
key: torch.Tensor,
value: torch.Tensor,
dtype=torch.bfloat16,
) -> torch.Tensor:
q_varlen = rearrange(query[0], "s n d -> 1 n s d")
k_varlen = rearrange(key[0], "s n d -> 1 n s d")
v_varlen = rearrange(value[0], "s n d -> 1 n s d")
half_dtypes = (torch.float16, torch.bfloat16)
assert dtype in half_dtypes
def half(x):
return x if x.dtype in half_dtypes else x.to(dtype)
q_varlen = half(q_varlen)
k_varlen = half(k_varlen)
v_varlen = half(v_varlen)
q_varlen = q_varlen.to(v_varlen.dtype)
k_varlen = k_varlen.to(v_varlen.dtype)
block_mask = FlexAttnFunc.cross_attention_mask if self.is_cross else FlexAttnFunc.attention_mask
x_out = FlexAttnFunc.flex_attn(q_varlen, k_varlen, v_varlen, block_mask=block_mask, kernel_options = {
"BLOCK_M": 64,
"BLOCK_N": 64,
"BLOCK_M1": 32,
"BLOCK_N1": 64,
"BLOCK_M2": 64,
"BLOCK_N2": 32,
})
x_out = rearrange(x_out, "b n s d -> b s n d")
return x_out
@staticmethod
@torch.no_grad()
def init_mask(
latent_shape,
action_shape,
padded_length,
chunk_size,
window_size,
patch_size,
device,
):
torch._inductor.config.realize_opcount_threshold = 100
B, _, L_F, L_H, L_W = latent_shape
_, _, A_F, A_H, A_W = action_shape
latent_seq_id = torch.arange(B)[:, None, None, None].\
expand(-1, L_F // patch_size[0], L_H // patch_size[1], L_W // patch_size[2]).flatten()
action_seq_id = torch.arange(B)[:, None, None, None].expand(-1, A_F, A_H, A_W).flatten()
seq_ids = torch.cat([latent_seq_id] * 2 + [action_seq_id] * 2)
latent_frame_id = torch.arange(L_F)[None, :, None, None].expand(B, -1, L_H // patch_size[1], L_W // patch_size[2])[None].flatten()
action_frame_id = torch.arange(A_F)[None, :, None, None].expand(B, -1, A_H, A_W)[None].flatten()
frame_ids = torch.cat([latent_frame_id // chunk_size * 2] * 2 + [action_frame_id // chunk_size * 2 + 1] * 2)
noise_ids = torch.cat(
[
torch.zeros_like(latent_frame_id),
torch.ones_like(latent_frame_id),
torch.zeros_like(action_frame_id),
torch.ones_like(action_frame_id),
]
)
seq_ids = F.pad(seq_ids, (0, padded_length), value=-1)
frame_ids = F.pad(frame_ids, (0, padded_length), value=-1)
noise_ids = F.pad(noise_ids, (0, padded_length), value=-1)
mask_mod = FlexAttnFunc._get_mask_mod(seq_ids.long().to(device), frame_ids.long().to(device), noise_ids.long().to(device), window_size)
block_mask = FlexAttnFunc.compiled_create_block_mask(
mask_mod, 1, 1, len(seq_ids), len(seq_ids), device=device, _compile=True
)
FlexAttnFunc.attention_mask = block_mask
text_seq_ids = torch.arange(B)[:, None].expand(-1, 512).flatten()
mask_mod_cross = FlexAttnFunc._get_cross_mask_mod(seq_ids.long().to(device), text_seq_ids.long().to(device))
block_mask_cross = FlexAttnFunc.compiled_create_block_mask(
mask_mod_cross, 1, 1, len(seq_ids), len(text_seq_ids), device=device, _compile=True
)
FlexAttnFunc.cross_attention_mask = block_mask_cross
@staticmethod
@torch.no_grad()
def _get_cross_mask_mod(seq_ids, text_seq_ids):
def seq_mask(
b: torch.Tensor, h: torch.Tensor, q_idx: torch.Tensor, kv_idx: torch.Tensor
):
return (seq_ids[q_idx] == text_seq_ids[kv_idx]) & (seq_ids[q_idx] >=0 ) & (text_seq_ids[kv_idx] >= 0)
return seq_mask
@staticmethod
@torch.no_grad()
def _get_mask_mod(seq_ids, frame_ids, noise_ids, window_size):
def seq_mask(
b: torch.Tensor, h: torch.Tensor, q_idx: torch.Tensor, kv_idx: torch.Tensor
):
return (seq_ids[q_idx] == seq_ids[kv_idx]) & (seq_ids[q_idx] >=0 ) & (seq_ids[kv_idx] >= 0)
def block_causal_mask(
b: torch.Tensor, h: torch.Tensor, q_idx: torch.Tensor, kv_idx: torch.Tensor
):
return (frame_ids[kv_idx] <= frame_ids[q_idx])
def block_causal_mask_exclude_self(
b: torch.Tensor, h: torch.Tensor, q_idx: torch.Tensor, kv_idx: torch.Tensor
):
return (frame_ids[kv_idx] < frame_ids[q_idx])
def block_self_mask(
b: torch.Tensor, h: torch.Tensor, q_idx: torch.Tensor, kv_idx: torch.Tensor
):
return (frame_ids[kv_idx] == frame_ids[q_idx])
def clean2clean_mask(
b: torch.Tensor, h: torch.Tensor, q_idx: torch.Tensor, kv_idx: torch.Tensor
):
return (noise_ids[q_idx] == 1) & (noise_ids[kv_idx] == 1)
def noise2clean_mask(
b: torch.Tensor, h: torch.Tensor, q_idx: torch.Tensor, kv_idx: torch.Tensor
):
return (noise_ids[q_idx] == 0) & (noise_ids[kv_idx] == 1)
def noise2noise_mask(
b: torch.Tensor, h: torch.Tensor, q_idx: torch.Tensor, kv_idx: torch.Tensor
):
return (noise_ids[q_idx] == 0) & (noise_ids[kv_idx] == 0)
def block_window_mask(
b: torch.Tensor, h: torch.Tensor, q_idx: torch.Tensor, kv_idx: torch.Tensor, window_size: int
):
return ((frame_ids[q_idx] - frame_ids[kv_idx]).abs() <= window_size)
mask_list = []
mask_list.append(and_masks(clean2clean_mask, block_causal_mask))
mask_list.append(and_masks(noise2clean_mask, block_causal_mask_exclude_self))
mask_list.append(and_masks(noise2noise_mask, block_self_mask))
mask = or_masks(*mask_list)
mask = and_masks(mask, seq_mask)
mask = and_masks(mask, partial(block_window_mask, window_size=window_size))
return mask
class WanTimeTextImageEmbedding(nn.Module):
def __init__(
self,
dim,
time_freq_dim,
time_proj_dim,
text_embed_dim,
pos_embed_seq_len,
):
super().__init__()
self.timesteps_proj = Timesteps(num_channels=time_freq_dim,
flip_sin_to_cos=True,
downscale_freq_shift=0)
self.time_embedder = TimestepEmbedding(in_channels=time_freq_dim,
time_embed_dim=dim)
self.act_fn = nn.SiLU()
self.time_proj = nn.Linear(dim, time_proj_dim)
self.text_embedder = PixArtAlphaTextProjection(text_embed_dim,
dim,
act_fn="gelu_tanh")
def forward(
self,
timestep: torch.Tensor,
dtype=None,
):
B, L = timestep.shape
timestep = timestep.reshape(-1)
timestep = self.timesteps_proj(timestep)
# time_embedder_dtype = next(iter(self.time_embedder.parameters())).dtype
time_embedder_dtype = self.time_embedder.linear_1.weight.dtype
if timestep.dtype != time_embedder_dtype and time_embedder_dtype != torch.int8:
timestep = timestep.to(time_embedder_dtype)
temb = self.time_embedder(timestep).to(dtype=dtype)
timestep_proj = self.time_proj(self.act_fn(temb))
return temb.reshape(B, L, -1), timestep_proj.reshape(B, L, -1)
class WanRotaryPosEmbed(nn.Module):
def __init__(
self,
attention_head_dim: int,
patch_size,
max_seq_len: int,
theta: float = 10000.0,
):
super().__init__()
self.attention_head_dim = attention_head_dim
self.patch_size = patch_size
self.max_seq_len = max_seq_len
self.theta = theta
self.f_dim = self.attention_head_dim - 2 * (self.attention_head_dim // 3)
self.h_dim = self.attention_head_dim // 3
self.w_dim = self.attention_head_dim // 3
# Precompute and register buffers
f_freqs_base, h_freqs_base, w_freqs_base = self._precompute_freqs_base()
self.f_freqs_base = f_freqs_base
self.h_freqs_base = h_freqs_base
self.w_freqs_base = w_freqs_base
def _precompute_freqs_base(self):
# freqs_base = 1.0 / (theta ** (2k / dim))
f_freqs_base = 1.0 / (self.theta**(torch.arange(
0, self.f_dim, 2)[:(self.f_dim // 2)].double() / self.f_dim))
h_freqs_base = 1.0 / (self.theta**(torch.arange(
0, self.h_dim, 2)[:(self.h_dim // 2)].double() / self.h_dim))
w_freqs_base = 1.0 / (self.theta**(torch.arange(
0, self.w_dim, 2)[:(self.w_dim // 2)].double() / self.w_dim))
return f_freqs_base, h_freqs_base, w_freqs_base
def forward(self, grid_ids):
with torch.no_grad():
f_freqs = grid_ids[:, 0, :].unsqueeze(-1) * self.f_freqs_base.to(grid_ids.device)
h_freqs = grid_ids[:, 1, :].unsqueeze(-1) * self.h_freqs_base.to(grid_ids.device)
w_freqs = grid_ids[:, 2, :].unsqueeze(-1) * self.w_freqs_base.to(grid_ids.device)
freqs = torch.cat([f_freqs, h_freqs, w_freqs], dim=-1).float()
freqs_cis = torch.polar(torch.ones_like(freqs), freqs)
return freqs_cis
class WanAttention(torch.nn.Module):
def __init__(
self,
dim,
heads=8,
dim_head=64,
eps=1e-5,
dropout=0.0,
cross_attention_dim_head=None,
attn_mode='torch',
):
super().__init__()
if attn_mode == 'torch':
self.attn_op = custom_sdpa
elif attn_mode == 'flashattn':
self.attn_op = flash_attn_func
elif attn_mode == 'flex':
self.attn_op = FlexAttnFunc(cross_attention_dim_head is not None)
else:
raise ValueError(
f"Unsupported attention mode: {attn_mode}, only support torch and flashattn"
)
self.inner_dim = dim_head * heads
self.heads = heads
self.cross_attention_dim_head = cross_attention_dim_head
self.kv_inner_dim = self.inner_dim if cross_attention_dim_head is None else cross_attention_dim_head * heads
self.to_q = torch.nn.Linear(dim, self.inner_dim, bias=True)
self.to_k = torch.nn.Linear(dim, self.kv_inner_dim, bias=True)
self.to_v = torch.nn.Linear(dim, self.kv_inner_dim, bias=True)
self.to_out = torch.nn.ModuleList([
torch.nn.Linear(self.inner_dim, dim, bias=True),
torch.nn.Dropout(dropout),
])
self.norm_q = torch.nn.RMSNorm(dim_head * heads,
eps=eps,
elementwise_affine=True)
self.norm_k = torch.nn.RMSNorm(dim_head * heads,
eps=eps,
elementwise_affine=True)
self.attn_caches = {} if cross_attention_dim_head is None else None
def clear_pred_cache(self, cache_name):
if self.attn_caches is None:
return
cache = self.attn_caches[cache_name]
is_pred = cache['is_pred']
cache['mask'][is_pred] = False
def clear_cache(self, cache_name):
if self.attn_caches is None:
return
self.attn_caches[cache_name] = None
def init_kv_cache(self, cache_name, total_tolen, num_head, head_dim,
device, dtype, batch_size):
if self.attn_caches is None:
return
self.attn_caches[cache_name] = {
'k':
torch.empty([batch_size, total_tolen, num_head, head_dim],
device=device,
dtype=dtype),
'v':
torch.empty([batch_size, total_tolen, num_head, head_dim],
device=device,
dtype=dtype),
'id':
torch.full((total_tolen, ), -1, device=device),
"mask":
torch.zeros((total_tolen, ), dtype=torch.bool, device=device),
"is_pred":
torch.zeros((total_tolen, ), dtype=torch.bool, device=device),
}
def allocate_slots(self, cache_name, key_size):
cache = self.attn_caches[cache_name]
mask = cache["mask"]
ids = cache["id"]
free = (~mask).nonzero(as_tuple=False).squeeze(-1)
if free.numel() < key_size:
used = mask.nonzero(as_tuple=False).squeeze(-1)
used_ids = ids[used]
order = torch.argsort(used_ids)
need = key_size - free.numel()
to_free = used[order[:need]]
mask[to_free] = False
ids[to_free] = -1
free = (~mask).nonzero(as_tuple=False).squeeze(-1)
assert free.numel() >= key_size
return free[:key_size]
def _next_cache_id(self, cache_name):
ids = self.attn_caches[cache_name]['id']
mask = self.attn_caches[cache_name]['mask']
if mask.any():
return ids[mask].max() + 1
else:
return torch.tensor(0, device=ids.device, dtype=ids.dtype)
def update_cache(self, cache_name, key, value, is_pred):
cache = self.attn_caches[cache_name]
key_size = key.shape[1]
slots = self.allocate_slots(cache_name, key_size)
new_id = self._next_cache_id(cache_name)
cache['k'][:, slots] = key
cache['v'][:, slots] = value
cache['mask'][slots] = True
cache['id'][slots] = new_id
cache['is_pred'][slots] = is_pred
return slots
def restore_cache(self, cache_name, slots):
self.attn_caches[cache_name]['mask'][slots] = False
def forward(
self,
q,
k,
v,
rotary_emb,
update_cache=0,
cache_name='pos',
):
kv_cache = self.attn_caches[
cache_name] if (self.attn_caches is not None) and (cache_name in self.attn_caches) else None
query, key, value = self.to_q(q), self.to_k(k), self.to_v(v)
query = self.norm_q(query)
query = query.unflatten(2, (self.heads, -1))
key = self.norm_k(key)
key = key.unflatten(2, (self.heads, -1))
value = value.unflatten(2, (self.heads, -1))
if rotary_emb is not None:
def apply_rotary_emb(x, freqs):
x_out = torch.view_as_complex(
x.to(torch.float64).reshape(x.shape[0], x.shape[1],
x.shape[2], -1, 2))
x_out = torch.view_as_real(x_out * freqs).flatten(3)
return x_out.to(x.dtype)
query = apply_rotary_emb(query, rotary_emb)
key = apply_rotary_emb(key, rotary_emb)
slots = None
if kv_cache is not None and kv_cache['k'] is not None:
slots = self.update_cache(cache_name,
key,
value,
is_pred=(update_cache == 1))
key_pool = self.attn_caches[cache_name]['k']
value_pool = self.attn_caches[cache_name]['v']
mask = self.attn_caches[cache_name]['mask']
valid = mask.nonzero(as_tuple=False).squeeze(-1)
key = key_pool[:, valid]
value = value_pool[:, valid]
hidden_states = self.attn_op(query, key, value)
if update_cache == 0:
if kv_cache is not None and kv_cache['k'] is not None:
self.restore_cache(cache_name, slots)
hidden_states = hidden_states.flatten(2, 3)
hidden_states = hidden_states.type_as(query)
hidden_states = self.to_out[0](hidden_states)
hidden_states = self.to_out[1](hidden_states)
return hidden_states
class WanTransformerBlock(nn.Module):
def __init__(
self,
dim,
ffn_dim,
num_heads,
cross_attn_norm=False,
eps=1e-6,
attn_mode: str = "flashattn",
):
super().__init__()
self.attn_mode = attn_mode
# 1. Self-attention
self.norm1 = FP32LayerNorm(dim, eps, elementwise_affine=False)
self.attn1 = WanAttention(
dim=dim,
heads=num_heads,
dim_head=dim // num_heads,
eps=eps,
cross_attention_dim_head=None,
attn_mode=attn_mode,
)
# 2. Cross-attention
self.attn2 = WanAttention(
dim=dim,
heads=num_heads,
dim_head=dim // num_heads,
eps=eps,
cross_attention_dim_head=dim // num_heads,
attn_mode=attn_mode,
)
self.norm2 = FP32LayerNorm(
dim, eps,
elementwise_affine=True) if cross_attn_norm else nn.Identity()
# 3. Feed-forward
self.ffn = FeedForward(dim,
inner_dim=ffn_dim,
activation_fn="gelu-approximate")
self.norm3 = FP32LayerNorm(dim, eps, elementwise_affine=False)
self.scale_shift_table = nn.Parameter(
torch.randn(1, 6, dim) / dim**0.5)
def forward(
self,
hidden_states,
encoder_hidden_states,
temb,
rotary_emb,
update_cache=0,
cache_name='pos',
) -> torch.Tensor:
temb_scale_shift_table = self.scale_shift_table[None] + temb.float()
shift_msa, scale_msa, gate_msa, c_shift_msa, c_scale_msa, c_gate_msa = \
rearrange(temb_scale_shift_table, 'b l n c -> b n l c').chunk(6, dim=1)
shift_msa = shift_msa.squeeze(1)
scale_msa = scale_msa.squeeze(1)
gate_msa = gate_msa.squeeze(1)
c_shift_msa = c_shift_msa.squeeze(1)
c_scale_msa = c_scale_msa.squeeze(1)
c_gate_msa = c_gate_msa.squeeze(1)
# 1. Self-attention
norm_hidden_states = (self.norm1(hidden_states.float()) *
(1. + scale_msa) +
shift_msa).type_as(hidden_states)
attn_output = self.attn1(norm_hidden_states,
norm_hidden_states,
norm_hidden_states,
rotary_emb,
update_cache=update_cache,
cache_name=cache_name)
hidden_states = (hidden_states.float() +
attn_output * gate_msa).type_as(hidden_states)
# 2. Cross-attention
norm_hidden_states = self.norm2(
hidden_states.float()).type_as(hidden_states)
attn_output = self.attn2(norm_hidden_states,
encoder_hidden_states,
encoder_hidden_states,
None,
update_cache=0,
cache_name=cache_name)
hidden_states = hidden_states + attn_output
# 3. Feed-forward
norm_hidden_states = (self.norm3(hidden_states.float()) *
(1. + c_scale_msa) +
c_shift_msa).type_as(hidden_states)
ff_output = self.ffn(norm_hidden_states)
hidden_states = (hidden_states.float() +
ff_output.float() * c_gate_msa).type_as(hidden_states)
return hidden_states
class WanTransformer3DModel(ModelMixin, ConfigMixin):
r"""
TODO
"""
_supports_gradient_checkpointing = True
_skip_layerwise_casting_patterns = [
# "patch_embedding",
"patch_embedding_mlp",
"condition_embedder",
'condition_embedder_action',
"norm"]
_no_split_modules = ["WanTransformerBlock"]
_keep_in_fp32_modules = ["time_embedder",
"scale_shift_table",
"scale_shift_table_action",
"norm1",
'action_norm1',
'text_norm1',
"norm2",
'action_norm2',
'text_norm2',
"norm3",
'action_norm3',
'text_norm3'
]
_keys_to_ignore_on_load_unexpected = ["norm_added_q"]
_repeated_blocks = ["WanTransformerBlock"]
@register_to_config
def __init__(self,
patch_size=[1, 2, 2],
num_attention_heads=24,
attention_head_dim=128,
in_channels=48,
out_channels=48,
action_dim=30,
text_dim=4096,
freq_dim=256,
ffn_dim=14336,
num_layers=30,
cross_attn_norm=True,
eps=1e-06,
rope_max_seq_len=1024,
pos_embed_seq_len=None,
attn_mode="torch",
enable_mcp=False,
num_mcp_depths=3,
mcp_blocks_per_depth=3,
mcp_hidden_collect_layers=(3, 11, 19, 29)):
r"""
TODO
"""
super().__init__()
self.patch_size = patch_size
self.num_attention_heads = num_attention_heads
self.attention_head_dim = attention_head_dim
inner_dim = num_attention_heads * attention_head_dim
self.inner_dim = inner_dim
self.ffn_dim = ffn_dim
self.cross_attn_norm = cross_attn_norm
self.eps = eps
self.attn_mode = attn_mode
self.rope = WanRotaryPosEmbed(attention_head_dim, patch_size,
rope_max_seq_len)
self.patch_embedding_mlp = nn.Linear(
in_channels * patch_size[0] * patch_size[1] * patch_size[2],
inner_dim)
self.action_embedder = nn.Linear(action_dim, inner_dim)
self.condition_embedder = WanTimeTextImageEmbedding(
dim=inner_dim,
time_freq_dim=freq_dim,
time_proj_dim=inner_dim * 6,
text_embed_dim=text_dim,
pos_embed_seq_len=pos_embed_seq_len,
)
self.condition_embedder_action = deepcopy(self.condition_embedder)
self.blocks = nn.ModuleList([
WanTransformerBlock(inner_dim,
ffn_dim,
num_attention_heads,
cross_attn_norm,
eps,
attn_mode=attn_mode) for _ in range(num_layers)
])
self.enable_mcp = enable_mcp
self.num_mcp_depths = num_mcp_depths
self.mcp_blocks_per_depth = mcp_blocks_per_depth
self.mcp_hidden_collect_layers = list(mcp_hidden_collect_layers)
if self.enable_mcp:
self._build_mcp_modules()
self.norm_out = FP32LayerNorm(inner_dim, eps, elementwise_affine=False)
self.proj_out = nn.Linear(inner_dim,
out_channels * math.prod(patch_size))
self.action_proj_out = nn.Linear(inner_dim, action_dim)
self.scale_shift_table = nn.Parameter(
torch.randn(1, 2, inner_dim) / inner_dim**0.5)
def _validate_mcp_architecture(self):
if self.num_mcp_depths <= 0:
raise ValueError("num_mcp_depths must be positive")
if self.mcp_blocks_per_depth <= 0:
raise ValueError("mcp_blocks_per_depth must be positive")
if not self.mcp_hidden_collect_layers:
raise ValueError("mcp_hidden_collect_layers cannot be empty")
if len(set(self.mcp_hidden_collect_layers)) != len(
self.mcp_hidden_collect_layers):
raise ValueError("mcp_hidden_collect_layers must be unique")
if min(self.mcp_hidden_collect_layers) < 0 or max(
self.mcp_hidden_collect_layers) >= len(self.blocks):
raise ValueError(
"mcp_hidden_collect_layers must reference existing model layers")
if self.mcp_blocks_per_depth > len(self.blocks):
raise ValueError(
"mcp_blocks_per_depth cannot exceed the number of model layers")
def _build_mcp_modules(self):
self._validate_mcp_architecture()
self.mcp_hidden_fuser = nn.Sequential(
nn.Linear(
self.inner_dim * len(self.mcp_hidden_collect_layers),
self.inner_dim,
),
nn.SiLU(),
nn.Linear(self.inner_dim, self.inner_dim),
)
self.mcp_input_projections = nn.ModuleList([
nn.Linear(self.inner_dim * 2, self.inner_dim)
for _ in range(self.num_mcp_depths)
])
self.mcp_blocks = nn.ModuleList([
nn.ModuleList([
WanTransformerBlock(
self.inner_dim,
self.ffn_dim,
self.num_attention_heads,
self.cross_attn_norm,
self.eps,
attn_mode=self.attn_mode,
) for _ in range(self.mcp_blocks_per_depth)
]) for _ in range(self.num_mcp_depths)
])
def enable_mcp_training(self,
num_mcp_depths,
mcp_blocks_per_depth,
mcp_hidden_collect_layers,
init_from_backbone=True):
requested_layers = list(mcp_hidden_collect_layers)
if self.enable_mcp:
current = (
self.num_mcp_depths,
self.mcp_blocks_per_depth,
self.mcp_hidden_collect_layers,
)
requested = (
num_mcp_depths,
mcp_blocks_per_depth,
requested_layers,
)
if current != requested:
raise ValueError(
f"MCP checkpoint architecture {current} does not match {requested}")
return False
self.enable_mcp = True
self.num_mcp_depths = num_mcp_depths
self.mcp_blocks_per_depth = mcp_blocks_per_depth
self.mcp_hidden_collect_layers = requested_layers
self._build_mcp_modules()
reference = next(self.blocks[0].parameters())
self.mcp_hidden_fuser.to(device=reference.device,
dtype=reference.dtype)
self.mcp_input_projections.to(device=reference.device,
dtype=reference.dtype)
self.mcp_blocks.to(device=reference.device, dtype=reference.dtype)
self._initialize_mcp_projection_weights()
if init_from_backbone:
self.initialize_mcp_blocks_from_backbone()
used_default_values = set(
self.config.get("_use_default_values", []))
used_default_values.difference_update({
"enable_mcp",
"num_mcp_depths",
"mcp_blocks_per_depth",
"mcp_hidden_collect_layers",
})
self.register_to_config(
enable_mcp=True,
num_mcp_depths=num_mcp_depths,
mcp_blocks_per_depth=mcp_blocks_per_depth,
mcp_hidden_collect_layers=requested_layers,
_use_default_values=sorted(used_default_values),
)
return True
def _initialize_mcp_projection_weights(self):
for module in [self.mcp_hidden_fuser, self.mcp_input_projections]:
for layer in module.modules():
if isinstance(layer, nn.Linear):
nn.init.normal_(layer.weight, std=0.02)
if layer.bias is not None:
nn.init.zeros_(layer.bias)
def initialize_mcp_blocks_from_backbone(self):
if not self.enable_mcp:
return
source_blocks = self.blocks[-self.mcp_blocks_per_depth:]
for group in self.mcp_blocks:
for target_block, source_block in zip(group, source_blocks):
target_block.load_state_dict(source_block.state_dict())
def disable_mcp_modules(self):
if not self.enable_mcp:
return
del self.mcp_hidden_fuser
del self.mcp_input_projections
del self.mcp_blocks
self.enable_mcp = False
self.register_to_config(enable_mcp=False)
def clear_cache(self, cache_name):
for block in self.blocks:
block.attn1.clear_cache(cache_name)
def clear_pred_cache(self, cache_name):
for block in self.blocks:
block.attn1.clear_pred_cache(cache_name)
def create_empty_cache(self, cache_name, attn_window,
latent_token_per_chunk, action_token_per_chunk,
device, dtype, batch_size):
total_tolen = (attn_window // 2) * latent_token_per_chunk + (
attn_window // 2) * action_token_per_chunk
for block in self.blocks:
block.attn1.init_kv_cache(cache_name, total_tolen,
self.num_attention_heads,
self.attention_head_dim, device, dtype, batch_size)
def _input_embed(self, latents, input_type='latent'):
if input_type == 'latent':
hidden_states = rearrange(
latents,
'b c (f p1) (h p2) (w p3) -> b (f h w) (c p1 p2 p3)',
p1=self.patch_size[0],
p2=self.patch_size[1],
p3=self.patch_size[2])
hidden_states = self.patch_embedding_mlp(hidden_states)
elif input_type == 'action':
hidden_states = rearrange(latents, 'b c f h w -> b (f h w) c')
hidden_states = self.action_embedder(hidden_states)
elif input_type == 'text':
hidden_states = self.condition_embedder.text_embedder(latents)
else:
raise ValueError(f"Unsupported input type: {input_type}")
return hidden_states
def _time_embed(self, timesteps, H, W, dtype, action_mode=False):
pach_scale_h, pach_scale_w = (1, 1) if action_mode else (
self.patch_size[1], self.patch_size[2])
latent_time_steps = torch.repeat_interleave(
timesteps,
(H // pach_scale_h) *
(W // pach_scale_w), dim=1) # L
current_condition_embedder = self.condition_embedder_action if action_mode else self.condition_embedder
temb, timestep_proj = current_condition_embedder(
latent_time_steps, dtype=dtype)
timestep_proj = timestep_proj.unflatten(2, (6, -1)) # B L 6 C
return temb, timestep_proj
def _forward_mcp(
self,
input_dict,
hidden_states,
collected_hidden_states,
text_hidden_states,
latent_grid_id,
action_grid_id,
latent_timestep_proj,
action_timestep_proj,
split_list,
batch_size,
):
mcp_latent_dicts = input_dict.get('mcp_latent_dicts')
if not self.enable_mcp or not mcp_latent_dicts:
return []
if len(mcp_latent_dicts) != self.num_mcp_depths:
raise ValueError(
"MCP input depth count must match num_mcp_depths")
if len(collected_hidden_states) != len(
self.mcp_hidden_collect_layers):
raise RuntimeError(
"MCP did not collect all configured backbone hidden states")
latent_length, clean_latent_length, action_length, clean_action_length, padded_length = split_list
if latent_length != clean_latent_length:
raise ValueError("MCP requires noisy and clean video token lengths to match")
video_length = latent_length + clean_latent_length
video_hidden_states = [
states[:, :video_length] for states in collected_hidden_states
]
fused_hidden_states = self.mcp_hidden_fuser(
torch.cat(video_hidden_states, dim=-1))
previous_hidden_states = fused_hidden_states[:, :latent_length]
clean_hidden_states = fused_hidden_states[:, latent_length:]
action_start = video_length
action_end = action_start + action_length + clean_action_length
action_hidden_states = hidden_states[:, action_start:action_end]
clean_latent_timestep_proj = latent_timestep_proj[
:, latent_length:video_length]
outputs = []
for depth in range(self.num_mcp_depths):
mcp_latent_dict = mcp_latent_dicts[depth]
noisy_latents = mcp_latent_dict['noisy_latents'].to(torch.bfloat16)
noisy_hidden_states = self._input_embed(
noisy_latents, input_type='latent').flatten(0, 1)[None]
if noisy_hidden_states.shape[1] != latent_length:
raise ValueError(
"MCP future video token length must match the main video token length")
future_hidden_states = self.mcp_input_projections[depth](torch.cat(
[previous_hidden_states, noisy_hidden_states], dim=-1))
mcp_hidden_states = torch.cat([
future_hidden_states,
clean_hidden_states,
action_hidden_states,
], dim=1)
mcp_hidden_states = F.pad(
mcp_hidden_states, (0, 0, 0, padded_length))
future_grid_id = mcp_latent_dict['grid_id'].permute(
1, 0, 2).flatten(1)[None]
full_grid_id = torch.cat([
future_grid_id,
latent_grid_id,
action_grid_id,
action_grid_id,
], dim=2)
mcp_rotary_emb = self.rope(full_grid_id)[:, :, None]
mcp_rotary_emb = F.pad(
mcp_rotary_emb, (0, 0, 0, 0, 0, padded_length))
future_time_steps = mcp_latent_dict['timesteps'].flatten()[None]
future_temb, future_timestep_proj = self._time_embed(
future_time_steps,
noisy_latents.shape[-2],
noisy_latents.shape[-1],
dtype=mcp_hidden_states.dtype,
action_mode=False,
)
mcp_timestep_proj = torch.cat([
future_timestep_proj,
clean_latent_timestep_proj,
action_timestep_proj,
], dim=1)
mcp_timestep_proj = F.pad(
mcp_timestep_proj, (0, 0, 0, 0, 0, padded_length))
for block in self.mcp_blocks[depth]:
mcp_hidden_states = block(
mcp_hidden_states,
text_hidden_states,
mcp_timestep_proj,
mcp_rotary_emb,
update_cache=False,
)
previous_hidden_states = mcp_hidden_states[:, :latent_length]
mcp_output = previous_hidden_states
temb_scale_shift_table = (
self.scale_shift_table[None] + future_temb[:, :, None, ...])
shift, scale = rearrange(
temb_scale_shift_table,
'b l n c -> b n l c',
).chunk(2, dim=1)
shift = shift.to(mcp_output.device).squeeze(1)
scale = scale.to(mcp_output.device).squeeze(1)
mcp_output = (
self.norm_out(mcp_output.float()) * (1. + scale) + shift
).type_as(mcp_output)
mcp_output = self.proj_out(mcp_output)
mcp_output = rearrange(
mcp_output,
'1 (b l) (n c) -> b (l n) c',
n=math.prod(self.patch_size),
b=batch_size,
)
outputs.append(mcp_output)
return outputs
def forward_train(self, input_dict):
input_dict['latent_dict']['noisy_latents'] = input_dict['latent_dict']['noisy_latents'].to(torch.bfloat16)
input_dict['latent_dict']['latent'] = input_dict['latent_dict']['latent'].to(torch.bfloat16)
input_dict['action_dict']['noisy_latents'] = input_dict['action_dict']['noisy_latents'].to(torch.bfloat16)
input_dict['action_dict']['latent'] = input_dict['action_dict']['latent'].to(torch.bfloat16)
if self.enable_mcp:
for mcp_latent_dict in input_dict.get('mcp_latent_dicts', []):
mcp_latent_dict['noisy_latents'] = mcp_latent_dict[
'noisy_latents'].to(torch.bfloat16)
latent_dict = input_dict['latent_dict']
action_dict = input_dict['action_dict']
batch_size = latent_dict['noisy_latents'].shape[0]
latent_hidden_states = self._input_embed(latent_dict['noisy_latents'], input_type='latent').flatten(0, 1)[None]
action_hidden_states = self._input_embed(action_dict['noisy_latents'], input_type='action').flatten(0, 1)[None]
text_hidden_states = self._input_embed(latent_dict["text_emb"], input_type='text')
text_hidden_states = text_hidden_states.flatten(0, 1)[None]
condition_latent_hidden_states = self._input_embed(latent_dict['latent'], input_type='latent').flatten(0, 1)[None]
condition_action_hidden_states = self._input_embed(action_dict['latent'], input_type='action').flatten(0, 1)[None]
hidden_states = torch.cat([latent_hidden_states,
condition_latent_hidden_states,
action_hidden_states,
condition_action_hidden_states], dim=1)
latent_grid_id = latent_dict['grid_id'].permute(1, 0, 2).flatten(1)[None]
action_grid_id = action_dict['grid_id'].permute(1, 0, 2).flatten(1)[None]
full_grid_id = torch.cat([latent_grid_id] * 2 + [action_grid_id] * 2, dim=2)
rotary_emb = self.rope(full_grid_id)[:, :, None]
latent_time_steps = torch.cat(
[latent_dict['timesteps'].flatten(0, 1), latent_dict['cond_timesteps'].flatten(0, 1)]
)[None]
action_time_steps = torch.cat(
[action_dict['timesteps'].flatten(0, 1), action_dict['cond_timesteps'].flatten(0, 1)]
)[None]
latent_temb, latent_timestep_proj =self._time_embed(latent_time_steps,
latent_dict['noisy_latents'].shape[-2],
latent_dict['noisy_latents'].shape[-1],
dtype=hidden_states.dtype,
action_mode=False)
action_temb, action_timestep_proj = self._time_embed(action_time_steps,
action_dict['noisy_latents'].shape[-2],
action_dict['noisy_latents'].shape[-1],
dtype=hidden_states.dtype,
action_mode=True)
temb = torch.cat([latent_temb, action_temb], dim=1)
timestep_proj = torch.cat([latent_timestep_proj, action_timestep_proj], dim=1)
total_length = hidden_states.shape[1]
padded_length = (128 - total_length % 128) % 128
hidden_states = F.pad(hidden_states, (0, 0, 0, padded_length))
rotary_emb = F.pad(rotary_emb, (0, 0, 0, 0, 0, padded_length))
temb = F.pad(temb, (0, 0, 0, padded_length))
timestep_proj = F.pad(timestep_proj, (0, 0, 0, 0, 0, padded_length))
split_list = [latent_hidden_states.shape[1],
condition_latent_hidden_states.shape[1],
action_hidden_states.shape[1],
condition_action_hidden_states.shape[1],
padded_length]
FlexAttnFunc.init_mask(latent_dict['noisy_latents'].shape,
action_dict['noisy_latents'].shape,
padded_length,
input_dict["chunk_size"],
window_size=input_dict['window_size'],
patch_size=self.patch_size,
device=hidden_states.device
)
collected_hidden_states = {}
for layer_id, block in enumerate(self.blocks):
hidden_states = block(hidden_states,
text_hidden_states,
timestep_proj,
rotary_emb,
update_cache=False)
if self.enable_mcp and layer_id in self.mcp_hidden_collect_layers:
collected_hidden_states[layer_id] = hidden_states
collected_hidden_states = [
collected_hidden_states[layer_id]
for layer_id in self.mcp_hidden_collect_layers
if layer_id in collected_hidden_states
]
mcp_outputs = self._forward_mcp(
input_dict=input_dict,
hidden_states=hidden_states,
collected_hidden_states=collected_hidden_states,
text_hidden_states=text_hidden_states,
latent_grid_id=latent_grid_id,
action_grid_id=action_grid_id,
latent_timestep_proj=latent_timestep_proj,
action_timestep_proj=action_timestep_proj,
split_list=split_list,
batch_size=batch_size,
)
temb_scale_shift_table = self.scale_shift_table[None] + temb[:, :, None, ...]
shift, scale = rearrange(temb_scale_shift_table,
'b l n c -> b n l c').chunk(2, dim=1)
shift = shift.to(hidden_states.device).squeeze(1)
scale = scale.to(hidden_states.device).squeeze(1)
hidden_states = (self.norm_out(hidden_states.float()) *
(1. + scale) +
shift).type_as(hidden_states)
latent_hidden_states, _, action_hidden_states, _, _ = torch.split(hidden_states, split_list, dim=1)
latent_hidden_states = self.proj_out(latent_hidden_states)
latent_hidden_states = rearrange(latent_hidden_states,
'1 (b l) (n c) -> b (l n) c',
n=math.prod(self.patch_size), b=batch_size) #
action_hidden_states = self.action_proj_out(action_hidden_states)
action_hidden_states = rearrange(action_hidden_states,
'1 (b l) c -> b l c',
b=batch_size) #
if self.enable_mcp:
return latent_hidden_states, action_hidden_states, mcp_outputs
return latent_hidden_states, action_hidden_states
def forward(
self,
input_dict,
update_cache=0,
cache_name="pos",
action_mode=False,
train_mode=False,
):
r"""
Forward pass through the diffusion model
Args:
x (List[Tensor]):
List of input video tensors, each with shape [C_in, F, H, W]
t (Tensor):
Diffusion timesteps tensor of shape [B]
context (List[Tensor]):
List of text embeddings each with shape [L, C]
seq_len (`int`):
Maximum sequence length for positional encoding
y (List[Tensor], *optional*):
Conditional video inputs for image-to-video mode, same shape as x
Returns:
List[Tensor]:
List of denoised video tensors with original input shapes [C_out, F, H / 8, W / 8]
"""
if train_mode:
return self.forward_train(input_dict)
if action_mode: # action input emb
latent_hidden_states = rearrange(input_dict['noisy_latents'],
'b c f h w -> b (f h w) c')
latent_hidden_states = self.action_embedder(
latent_hidden_states) # B L1 C
else: # latent input emb
latent_hidden_states = rearrange(
input_dict['noisy_latents'],
'b c (f p1) (h p2) (w p3) -> b (f h w) (c p1 p2 p3)',
p1=self.patch_size[0],
p2=self.patch_size[1],
p3=self.patch_size[2])
latent_hidden_states = self.patch_embedding_mlp(
latent_hidden_states)
text_hidden_states = self.condition_embedder.text_embedder(
input_dict["text_emb"]) # B L2 C
latent_grid_id = input_dict['grid_id']
rotary_emb = self.rope(latent_grid_id)[:, :, None] # 1 L 1 C
pach_scale_h, pach_scale_w = (1, 1) if action_mode else (
self.patch_size[1], self.patch_size[2])
latent_time_steps = torch.repeat_interleave(
input_dict['timesteps'],
(input_dict['noisy_latents'].shape[-2] // pach_scale_h) *
(input_dict['noisy_latents'].shape[-1] // pach_scale_w), dim=1) # L
current_condition_embedder = self.condition_embedder_action if action_mode else self.condition_embedder
temb, timestep_proj = current_condition_embedder(
latent_time_steps, dtype=latent_hidden_states.dtype)
timestep_proj = timestep_proj.unflatten(2, (6, -1)) # B L 6 C
for block in self.blocks:
latent_hidden_states = block(latent_hidden_states,
text_hidden_states,
timestep_proj,
rotary_emb,
update_cache=update_cache,
cache_name=cache_name)
temb_scale_shift_table = self.scale_shift_table[None] + temb[:, :, None, ...]
shift, scale = rearrange(temb_scale_shift_table,
'b l n c -> b n l c').chunk(2, dim=1)
shift = shift.to(latent_hidden_states.device).squeeze(1)
scale = scale.to(latent_hidden_states.device).squeeze(1)
latent_hidden_states = (self.norm_out(latent_hidden_states.float()) *
(1. + scale) +
shift).type_as(latent_hidden_states)
if action_mode:
latent_hidden_states = self.action_proj_out(latent_hidden_states)
else:
latent_hidden_states = self.proj_out(latent_hidden_states)
latent_hidden_states = rearrange(latent_hidden_states,
'b l (n c) -> b (l n) c',
n=math.prod(self.patch_size)) #
return latent_hidden_states
if __name__ == '__main__':
model = WanTransformer3DModel(patch_size=[1, 2, 2],
num_attention_heads=24,
attention_head_dim=128,
in_channels=48,
out_channels=48,
action_dim=30,
text_dim=4096,
freq_dim=256,
ffn_dim=14336,
num_layers=30,
cross_attn_norm=True,
eps=1e-6,
rope_max_seq_len=1024,
pos_embed_seq_len=None,
attn_mode="torch")
print(model)
|