Spaces:
Running on L40S
Running on L40S
File size: 67,297 Bytes
9f818c5 | 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 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 | # SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: OpenMDW-1.1
# Copied from cosmos3._src.vfm.datasets.sequence_packing
import math
from dataclasses import dataclass, field
from typing import Any, Dict, List, Optional, Tuple
import torch
@dataclass
class GenerationDataClean:
batch_size: int
is_image_batch: bool
raw_state_vision: Optional[List[torch.Tensor]] = None
x0_tokens_vision: Optional[List[torch.Tensor]] = None
fps_vision: Optional[torch.Tensor] = None
num_vision_items_per_sample: Optional[List[int]] = None
x0_tokens_action: Optional[List[torch.Tensor]] = None
fps_action: Optional[torch.Tensor] = None
action_domain_id: Optional[List[torch.Tensor]] = None
raw_action_dim: Optional[List[Optional[torch.Tensor]]] = None
x0_tokens_sound: Optional[List[torch.Tensor]] = None
fps_sound: Optional[torch.Tensor] = None
# "Fake" types for readability; everything is plain dict at runtime.
FactoredSequencePack = dict[str, Any]
JointSequencePack = dict[str, Any]
SequencePack = FactoredSequencePack | JointSequencePack
# ------------------------------------
# Internal helpers
# ------------------------------------
def _pad_to_N(N, x: torch.Tensor) -> torch.Tensor:
assert x.shape[0] <= N
padded = x.new_zeros((N, *x.shape[1:]))
padded[: x.shape[0]] = x
return padded
def _pad(
causal_seq: torch.Tensor, full_only_seq: torch.Tensor, max_causal_len: int, max_full_len: int
) -> tuple[torch.Tensor, torch.Tensor]:
causal_seq = _pad_to_N(max_causal_len, causal_seq)
full_only_seq = _pad_to_N(max_full_len, full_only_seq)
return causal_seq, full_only_seq
def _compute_mode_indices_and_offsets(
split_lens: list[int],
attn_modes: list[str],
mode: str,
device: torch.device,
) -> tuple[torch.Tensor, torch.Tensor]:
indices = []
offsets = [0]
next_offset = 0
start = 0
for split_len, attn_mode in zip(split_lens, attn_modes):
if attn_mode == mode:
indices.extend(range(start, start + split_len))
next_offset += split_len
offsets.append(next_offset)
start += split_len
return (
torch.tensor(indices, dtype=torch.int32, device=device),
torch.tensor(offsets, dtype=torch.int32, device=device),
)
def _init_sequence_pack(
sample_lens: list[int],
split_lens: list[int],
attn_modes: list[str],
device: torch.device,
) -> dict:
_max_sample_len = max(sample_lens)
_max_causal_len = max((split_lens[i] for i in range(len(split_lens)) if attn_modes[i] == "causal"), default=0)
_max_full_len = max((split_lens[i] for i in range(len(split_lens)) if attn_modes[i] == "full"), default=0)
sample_lens_cu = torch.tensor([0] + sample_lens, device=device, dtype=torch.int32)
_sample_offsets = torch.cumsum(sample_lens_cu, dim=0, dtype=torch.int32)
_causal_indices, _causal_seq_offsets = _compute_mode_indices_and_offsets(split_lens, attn_modes, "causal", device)
_full_indices, _full_only_seq_offsets = _compute_mode_indices_and_offsets(split_lens, attn_modes, "full", device)
return dict(
sample_offsets=_sample_offsets,
max_sample_len=_max_sample_len,
max_causal_len=_max_causal_len,
max_full_len=_max_full_len,
_causal_indices=_causal_indices,
_full_indices=_full_indices,
_causal_seq_offsets=_causal_seq_offsets,
_full_only_seq_offsets=_full_only_seq_offsets,
_num_causal_tokens=len(_causal_indices),
_num_full_tokens=len(_full_indices),
split_lens=split_lens,
attn_modes=attn_modes,
)
def _find_non_causal_text_token_idx(
attn_modes: list[str],
split_lens: list[int],
und_token_indexes: list[int],
) -> list[int]:
out = []
full_offset = 0
packed_idx = 0
und_token_set = set(und_token_indexes)
for attn_mode, split_len in zip(attn_modes, split_lens):
if attn_mode == "full":
for local_idx, split_idx in enumerate(range(packed_idx, packed_idx + split_len)):
if split_idx in und_token_set:
out.append(full_offset + local_idx)
full_offset += split_len
packed_idx += split_len
return out
def factored_from_joint_sequence(
packed_sequence: torch.Tensor,
attn_modes: list[str],
split_lens: list[int],
sample_lens: list[int],
packed_und_token_indexes: torch.Tensor,
packed_gen_token_indexes: torch.Tensor,
is_image_batch: bool = False,
cp_world_size: int = 1,
pad_for_cuda_graphs: bool = False,
) -> FactoredSequencePack:
non_causal_text_idxs = _find_non_causal_text_token_idx(attn_modes, split_lens, packed_und_token_indexes.tolist())
assert len(non_causal_text_idxs) == 0, "non_causal_text_idxs should be empty"
assert sum(sample_lens) == packed_sequence.shape[0]
meta = _init_sequence_pack(sample_lens, split_lens, attn_modes, packed_sequence.device)
causal_seq = packed_sequence[meta["_causal_indices"]]
full_only_seq = packed_sequence[meta["_full_indices"]]
return {
**meta,
"max_num_tokens": sum(sample_lens),
"causal_seq": causal_seq,
"full_only_seq": full_only_seq,
"is_sharded": False,
}
class SplitInfo:
def __init__(
self,
split_lens: list[int],
attn_modes: list[str],
sample_lens: list[int],
actual_len: int,
):
assert sum(sample_lens) == sum(split_lens)
max_causal_len = 0
max_full_len = 0
for split_len, attn_mode in zip(split_lens, attn_modes):
if attn_mode == "causal":
max_causal_len = max(max_causal_len, split_len)
elif attn_mode == "full":
max_full_len = max(max_full_len, split_len)
self.max_causal_len = max_causal_len
self.max_full_len = max_full_len
self.max_sample_len = max(sample_lens)
self.split_lens = split_lens
self.attn_modes = attn_modes
self.sample_lens = sample_lens
def build_packed_sequence(
joint_attn_implementation: str,
*,
packed_sequence: torch.Tensor,
attn_modes: list[str],
split_lens: list[int],
sample_lens: list[int],
packed_und_token_indexes: torch.LongTensor,
packed_gen_token_indexes: torch.LongTensor,
num_heads: int,
head_dim: int,
num_layers: int,
token_shapes=None,
natten_parameter_list=None,
block_size: int = 128,
is_image_batch: bool = False,
cp_world_size: int = 1,
video_temporal_causal: bool = False,
vision_token_shapes=None,
action_token_shapes=None,
temporal_compression_factor_vision: int = 4,
null_action_supertokens: bool = False,
pad_for_cuda_graphs: bool = False,
) -> tuple[FactoredSequencePack, SplitInfo, None]:
assert joint_attn_implementation == "two_way", (
f"Only two_way attention is supported, got {joint_attn_implementation!r}"
)
device = packed_sequence.device
attention_meta = SplitInfo(
split_lens=split_lens,
attn_modes=attn_modes,
sample_lens=sample_lens,
actual_len=int(packed_sequence.shape[0]),
)
input_pack = factored_from_joint_sequence(
packed_sequence=packed_sequence,
attn_modes=attn_modes,
split_lens=split_lens,
sample_lens=sample_lens,
packed_und_token_indexes=packed_und_token_indexes.to(device),
packed_gen_token_indexes=packed_gen_token_indexes.to(device),
is_image_batch=is_image_batch,
cp_world_size=cp_world_size,
pad_for_cuda_graphs=pad_for_cuda_graphs,
)
input_pack.pop("split_lens", None)
input_pack.pop("attn_modes", None)
return input_pack, attention_meta, None
def _ensure_core_metadata(pack: SequencePack) -> None:
required = [
"sample_offsets",
"max_sample_len",
"max_causal_len",
"max_full_len",
"_causal_indices",
"_full_indices",
"_causal_seq_offsets",
"_full_only_seq_offsets",
"is_sharded",
]
for key in required:
if key not in pack:
raise KeyError(f"Missing required pack field: {key}")
def from_mode_splits(
causal_seq: torch.Tensor,
full_only_seq: torch.Tensor,
orig: FactoredSequencePack | JointSequencePack,
is_sharded: bool | None = None,
):
"""
Create a new sequence pack from two mode splits.
Args:
causal_seq (torch.Tensor): The causal sequence.
full_only_seq (torch.Tensor): The full-only sequence.
orig (FactoredSequencePack | JointSequencePack): The metadata source to copy from.
is_sharded (bool | None): If True, create a local pack for context parallel.
If None, inherits from orig.
"""
_ensure_core_metadata(orig)
if is_sharded is None:
is_sharded = orig.get("is_sharded", False)
if "packed_sequence" in orig:
all_len = int(orig["_causal_indices"].shape[0] + orig["_full_indices"].shape[0])
packed_sequence = causal_seq.new_zeros((all_len, *causal_seq.shape[1:])) # [seq_len,D]
packed_sequence[orig["_causal_indices"]] = causal_seq
packed_sequence[orig["_full_indices"]] = full_only_seq
return from_joint(packed_sequence, orig)
else:
out = dict(orig)
out["causal_seq"] = causal_seq
out["full_only_seq"] = full_only_seq
out["is_sharded"] = is_sharded
return out
# ------------------------------------
# Public API
# ------------------------------------
def zeros_like(orig: FactoredSequencePack | JointSequencePack, shape: Tuple[int, ...] | torch.Size | None = None):
"""
Create a new sequence pack with the same metadata as the original, but with all tokens set to zero.
Args:
orig (FactoredSequencePack | JointSequencePack): The original sequence pack to copy metadata from.
shape (Tuple[int, ...] | torch.Size | None): The shape of the new sequence pack. If None, the shape will be the same as the original.
"""
_ensure_core_metadata(orig)
if "packed_sequence" in orig:
if shape is None:
shape_ = orig["packed_sequence"].shape
else:
assert len(shape) >= 1 and shape[0] == -1
shape_ = (orig["packed_sequence"].shape[0],) + tuple(shape)[1:]
packed_sequence = torch.zeros(
shape_, device=orig["packed_sequence"].device, dtype=orig["packed_sequence"].dtype
) # [seq_len,D]
return from_joint(packed_sequence, orig)
else:
if shape is None:
shape_causal = orig["causal_seq"].shape
shape_full = orig["full_only_seq"].shape
else:
assert len(shape) >= 1 and shape[0] == -1
shape_causal = (orig["causal_seq"].shape[0],) + tuple(shape)[1:]
shape_full = (orig["full_only_seq"].shape[0],) + tuple(shape)[1:]
causal_seq = torch.zeros(
shape_causal, device=orig["causal_seq"].device, dtype=orig["causal_seq"].dtype
) # [N_causal_tokens,D]
full_only_seq = torch.zeros(
shape_full, device=orig["full_only_seq"].device, dtype=orig["full_only_seq"].dtype
) # [N_full_tokens,D]
return from_mode_splits(causal_seq, full_only_seq, orig)
def from_joint(packed_sequence: torch.Tensor, metadata_source: FactoredSequencePack | JointSequencePack):
"""
Create a new sequence pack from a packed sequence and another sequence pack with the same metadata.
Args:
packed_sequence (torch.Tensor): Tensor containing all tokens in the batch of sequences.
metadata_source (FactoredSequencePack | JointSequencePack): The metadata source to copy from.
"""
_ensure_core_metadata(metadata_source)
if "packed_sequence" in metadata_source:
out = dict(metadata_source)
out["packed_sequence"] = packed_sequence
return out
else:
if metadata_source["is_sharded"]:
# Use sharded sequences as is when is_sharded is True (used in Context Parallel)
causal_seq = packed_sequence[: len(metadata_source["causal_seq"])] # [N_causal_tokens,D]
full_only_seq = packed_sequence[len(metadata_source["causal_seq"]) :] # [N_full_tokens,D]
else:
causal_seq = packed_sequence[metadata_source["_causal_indices"]] # [N_causal_tokens,D]
full_only_seq = packed_sequence[metadata_source["_full_indices"]] # [N_full_tokens,D]
causal_seq, full_only_seq = _pad(
causal_seq,
full_only_seq,
max_causal_len=metadata_source["causal_seq"].shape[0],
max_full_len=metadata_source["full_only_seq"].shape[0],
)
return from_mode_splits(causal_seq, full_only_seq, metadata_source)
def from_und_gen_splits(und_seq: torch.Tensor, gen_seq: torch.Tensor, orig: FactoredSequencePack | JointSequencePack):
"""
Create a new sequence pack from two und/gen splits.
Args:
und_seq (torch.Tensor): The understanding sequence.
gen_seq (torch.Tensor): The generating sequence.
orig (FactoredSequencePack | JointSequencePack): The metadata source to copy from.
"""
# If we have a joint pack (single packed_sequence), place by und/gen indexes.
if "packed_sequence" in orig and "packed_und_token_indexes" in orig and "packed_gen_token_indexes" in orig:
all_len = int(und_seq.shape[0] + gen_seq.shape[0])
packed_sequence = und_seq.new_zeros((all_len, *und_seq.shape[1:])) # [seq_len,D]
packed_sequence[orig["packed_und_token_indexes"]] = und_seq
packed_sequence[orig["packed_gen_token_indexes"]] = gen_seq
return from_joint(packed_sequence, orig)
# Otherwise, treat und/gen as mode splits (und == causal; gen == full).
return from_mode_splits(und_seq, gen_seq, orig)
def get_und_seq(pack: SequencePack) -> torch.Tensor:
"""
Get all understanding tokens in a sequence pack in a single tensor.
Args:
pack (FactoredSequencePack | JointSequencePack): The sequence pack to get the understanding sequence from.
Returns:
torch.Tensor: All understanding tokens concatenated over all sequences in the batch.
"""
if "causal_seq" in pack:
return pack["causal_seq"]
if "packed_sequence" in pack and "packed_und_token_indexes" in pack:
return pack["packed_sequence"][pack["packed_und_token_indexes"]]
raise KeyError("Cannot derive und_seq from provided pack")
def set_und_seq(pack: SequencePack, value: torch.Tensor) -> None:
"""
Override the understanding tokens in a sequence pack.
The order of tokens passed in must correspond to the order of tokens returned by get_und_seq.
Args:
pack (FactoredSequencePack | JointSequencePack): The sequence pack to set the understanding sequence in.
value (torch.Tensor): The understanding sequence to set.
"""
if "packed_sequence" in pack and "packed_und_token_indexes" in pack:
pack["packed_sequence"][pack["packed_und_token_indexes"]] = value
elif "causal_seq" in pack:
pack["causal_seq"] = value
else:
raise KeyError("Cannot set und_seq from provided pack")
def get_gen_seq(pack: SequencePack) -> torch.Tensor:
"""
Get all generating tokens in a sequence pack in a single tensor.
Args:
pack (FactoredSequencePack | JointSequencePack): The sequence pack to get the generating sequence from.
Returns:
torch.Tensor: All generating tokens concatenated over all sequences in the batch.
"""
if "full_only_seq" in pack:
return pack["full_only_seq"]
if "packed_sequence" in pack and "packed_gen_token_indexes" in pack:
return pack["packed_sequence"][pack["packed_gen_token_indexes"]]
raise KeyError("Cannot derive gen_seq from provided pack")
def set_gen_seq(pack: SequencePack, value: torch.Tensor) -> None:
"""
Override the generating tokens in a sequence pack.
The order of tokens passed in must correspond to the order of tokens returned by get_gen_seq.
Args:
pack (FactoredSequencePack | JointSequencePack): The sequence pack to set the generating sequence in.
value (torch.Tensor): The generating sequence to set.
"""
if "packed_sequence" in pack and "packed_gen_token_indexes" in pack:
pack["packed_sequence"][pack["packed_gen_token_indexes"]] = value
elif "full_only_seq" in pack:
pack["full_only_seq"] = value
else:
raise KeyError("Cannot set gen_seq from provided pack")
def get_device_and_dtype(pack: SequencePack) -> Tuple[torch.device, torch.dtype]:
"""
Get the device and dtype of a sequence pack.
Args:
pack (FactoredSequencePack | JointSequencePack): The sequence pack to get the device and dtype from.
Returns:
Tuple[torch.device, torch.dtype]: The device and dtype of the sequence pack.
"""
if "packed_sequence" in pack:
return pack["packed_sequence"].device, pack["packed_sequence"].dtype
if "causal_seq" in pack and "full_only_seq" in pack:
return pack["causal_seq"].device, pack["causal_seq"].dtype
raise KeyError("Cannot derive device and dtype from provided pack")
def get_all_seq(pack: SequencePack) -> torch.Tensor:
"""
Get all tokens in a sequence pack in a single tensor.
Args:
pack (FactoredSequencePack | JointSequencePack): The sequence pack to get the all sequence from.
Returns:
torch.Tensor: All tokens concatenated over all sequences in the batch.
"""
if "all_seq" in pack:
return pack["all_seq"]
if "packed_sequence" in pack:
return pack["packed_sequence"]
if "causal_seq" in pack and "full_only_seq" in pack:
_ensure_core_metadata(pack)
if pack["is_sharded"]:
assert False, "get_all_seq is not supported in context parallel sharded mode"
else:
out = pack["causal_seq"].new_zeros(
int(pack["_causal_indices"].shape[0] + pack["_full_indices"].shape[0]), *pack["causal_seq"].shape[1:]
) # [seq_len,D]
if pack["causal_seq"].shape[0] > 0:
out[pack["_causal_indices"]] = pack["causal_seq"][: pack["_causal_indices"].shape[0]]
if pack["full_only_seq"].shape[0] > 0:
out[pack["_full_indices"]] = pack["full_only_seq"][: pack["_full_indices"].shape[0]]
return out
raise KeyError("Cannot derive all_seq from provided pack")
def get_causal_seq(pack: SequencePack) -> Tuple[torch.Tensor, torch.Tensor]:
"""
Get the causal sequence and its offsets in a sequence pack.
Args:
pack (FactoredSequencePack | JointSequencePack): The sequence pack to get the causal sequence from.
Returns:
Tuple[torch.Tensor, torch.Tensor]: The concatenated causal sub-sequences and the starting offset for each sub-sequence.
"""
_ensure_core_metadata(pack)
if "causal_seq" in pack:
return pack["causal_seq"], pack["_causal_seq_offsets"]
assert "packed_sequence" in pack
return pack["packed_sequence"][pack["_causal_indices"]], pack["_causal_seq_offsets"]
def get_full_only_seq(pack: SequencePack) -> Tuple[torch.Tensor, torch.Tensor]:
"""
Get the full-only sequence and its offsets in a sequence pack.
Args:
pack (FactoredSequencePack | JointSequencePack): The sequence pack to get the full-only sequence from.
Returns:
Tuple[torch.Tensor, torch.Tensor]: The concatenated full-only sub-sequences and the starting offset for each sub-sequence.
"""
_ensure_core_metadata(pack)
if "full_only_seq" in pack:
return pack["full_only_seq"], pack["_full_only_seq_offsets"]
assert "packed_sequence" in pack
return pack["packed_sequence"][pack["_full_indices"]], pack["_full_only_seq_offsets"]
# ============================================================================
# 3D mRoPE position ID utilities
# Copied from cosmos3._src.vfm.models.mot.unified_3dmrope_utils
# ============================================================================
def get_3d_mrope_ids_text_tokens(
num_tokens: int,
temporal_offset: int | float,
use_float_positions: bool = False,
) -> tuple[torch.Tensor, int | float]:
"""Generate 3D mRoPE position IDs for text tokens.
For text tokens, all three axes (temporal, height, width) share the same
monotonically increasing position IDs, starting from ``temporal_offset``.
Args:
num_tokens: Number of text tokens.
temporal_offset: Current temporal offset to start from.
use_float_positions: If True, generate float position IDs.
Returns:
Tuple of position IDs tensor of shape (3, num_tokens) and updated temporal offset.
"""
if use_float_positions:
ids = torch.arange(num_tokens, dtype=torch.float32) + temporal_offset
else:
ids = torch.arange(num_tokens, dtype=torch.long) + int(temporal_offset)
mrope_ids = ids.unsqueeze(0).expand(3, -1).contiguous() # [3,num_tokens]
next_temporal_offset = temporal_offset + num_tokens
return mrope_ids, next_temporal_offset
def get_3d_mrope_ids_vae_tokens(
grid_t: int,
grid_h: int,
grid_w: int,
temporal_offset: int | float,
reset_spatial_indices: bool = True,
fps: float | None = None,
base_fps: float = 24.0,
temporal_compression_factor: int = 4,
base_temporal_compression_factor: int | None = None,
start_frame_offset: int = 0,
) -> tuple[torch.Tensor, int | float]:
"""Generate 3D mRoPE position IDs for VAE vision tokens (image/video latents).
Args:
grid_t: Number of temporal frames in the latent grid.
grid_h: Height of the latent grid (after patchification).
grid_w: Width of the latent grid (after patchification).
temporal_offset: Current temporal offset.
reset_spatial_indices: If True, spatial indices start from 0 for each vision segment.
fps: Frames per second. If None, FPS modulation is disabled.
base_fps: Base FPS for normalization.
temporal_compression_factor: VAE temporal compression factor.
base_temporal_compression_factor: Base temporal compression factor.
start_frame_offset: Offset added to frame indices before FPS scaling.
Returns:
Tuple of position IDs tensor of shape (3, grid_t * grid_h * grid_w) and updated offset.
"""
fps_modulation_enabled = fps is not None and grid_t > 1
effective_base_tcf = (
base_temporal_compression_factor
if base_temporal_compression_factor is not None
else temporal_compression_factor
)
if fps_modulation_enabled:
tps = fps / temporal_compression_factor
base_tps = base_fps / effective_base_tcf
frame_indices = torch.arange(grid_t, dtype=torch.float32)
scaled_t = (frame_indices + start_frame_offset) / tps * base_tps + temporal_offset
t_index = scaled_t.view(-1, 1).expand(-1, grid_h * grid_w).flatten()
t_dtype = torch.float32
else:
t_index = (
torch.arange(grid_t, dtype=torch.long).view(-1, 1).expand(-1, grid_h * grid_w).flatten()
+ int(temporal_offset)
+ start_frame_offset
)
t_dtype = torch.long
h_index = torch.arange(grid_h, dtype=torch.long).view(1, -1, 1).expand(grid_t, -1, grid_w).flatten()
w_index = torch.arange(grid_w, dtype=torch.long).view(1, 1, -1).expand(grid_t, grid_h, -1).flatten()
if not reset_spatial_indices:
spatial_offset = int(temporal_offset)
h_index = h_index + spatial_offset
w_index = w_index + spatial_offset
if fps_modulation_enabled:
mrope_ids = torch.stack([t_index, h_index.to(torch.float32), w_index.to(torch.float32)], dim=0)
else:
mrope_ids = torch.stack([t_index, h_index, w_index], dim=0)
max_position = mrope_ids.max().item()
next_temporal_offset = math.ceil(max_position) + 1
return mrope_ids, next_temporal_offset
# ============================================================================
# Data structures for sequence packing
# Copied from cosmos3._src.vfm.datasets.sequence_packing
# ============================================================================
@dataclass
class ModalityData:
"""Unified container for a single generation modality's data.
This dataclass serves dual purposes:
1. During packing: Acts as a builder, accumulating data in lists
2. After finalize(): Holds finalized tensors ready for model consumption
"""
sequence_indexes: list[int] | torch.Tensor = field(default_factory=list)
timesteps: list[float] | torch.Tensor = field(default_factory=list)
mse_loss_indexes: list[int] | torch.Tensor = field(default_factory=list)
token_shapes: list = field(default_factory=list)
tokens: list[torch.Tensor] = field(default_factory=list)
condition_mask: list[torch.Tensor] = field(default_factory=list)
noisy_frame_indexes: list[torch.Tensor] = field(default_factory=list)
domain_id: list[torch.Tensor] = field(default_factory=list)
raw_action_dim: list[torch.Tensor | None] | None = field(default_factory=list)
def to_cuda(self) -> None:
if isinstance(self.sequence_indexes, torch.Tensor):
self.sequence_indexes = self.sequence_indexes.cuda()
if isinstance(self.timesteps, torch.Tensor):
self.timesteps = self.timesteps.cuda()
if isinstance(self.mse_loss_indexes, torch.Tensor):
self.mse_loss_indexes = self.mse_loss_indexes.cuda()
self.tokens = [token.cuda() for token in self.tokens]
self.condition_mask = [cm.cuda() for cm in self.condition_mask]
self.noisy_frame_indexes = [ni.cuda() for ni in self.noisy_frame_indexes]
self.domain_id = [d.cuda() for d in self.domain_id]
if self.raw_action_dim is not None:
self.raw_action_dim = [d.cuda() if d is not None else None for d in self.raw_action_dim]
@dataclass
class PackedSequence:
"""Unified sequence container - works as builder during packing and final output."""
# Sequence structure
sample_lens: list[int] = field(default_factory=list)
split_lens: list[int] = field(default_factory=list)
attn_modes: list[str] = field(default_factory=list)
is_image_batch: bool = False
sequence_length: int = 0
# Build-time tracking
curr: int = 0
# Text modality (list during build, tensor after finalize)
text_ids: list[int] | torch.Tensor = field(default_factory=list)
text_indexes: list[int] | torch.Tensor = field(default_factory=list)
position_ids: list[int] | torch.Tensor = field(default_factory=list)
# Loss computation - Cross Entropy (text)
label_ids: list[int] | torch.Tensor | None = field(default_factory=list)
ce_loss_indexes: list[int] | torch.Tensor | None = field(default_factory=list)
ce_loss_weights: list[float] | torch.Tensor | None = field(default_factory=list)
# Build-time mRoPE tracking
_use_mrope: bool = False
_mrope_temporal_offset: int | float = 0
_mrope_reset_spatial: bool = True
# Temporal causal
null_action_supertokens: bool = False
# Generation modalities
vision: ModalityData | None = None
action: ModalityData | None = None
sound: ModalityData | None = None
def finalize(
self,
gen_data_clean: "GenerationDataClean",
) -> "PackedSequence":
"""Convert all lists to tensors and compute derived values."""
sequence_length = sum(self.sample_lens)
sample_lens = self.sample_lens.copy()
split_lens = self.split_lens.copy()
attn_modes = self.attn_modes.copy()
label_ids: torch.Tensor | None = None
ce_loss_indexes: torch.Tensor | None = None
ce_loss_weights: torch.Tensor | None = None
if self.label_ids and len(self.label_ids) > 0:
label_ids = torch.tensor(self.label_ids)
ce_loss_indexes = torch.tensor(self.ce_loss_indexes)
ce_loss_weights = torch.tensor(self.ce_loss_weights)
vision: ModalityData | None = None
if self.vision is not None and len(self.vision.sequence_indexes) > 0:
vision = ModalityData(
sequence_indexes=torch.tensor(self.vision.sequence_indexes, dtype=torch.long),
timesteps=torch.tensor(self.vision.timesteps),
mse_loss_indexes=torch.tensor(self.vision.mse_loss_indexes, dtype=torch.long),
token_shapes=list(self.vision.token_shapes),
tokens=self.vision.tokens,
condition_mask=list(self.vision.condition_mask),
noisy_frame_indexes=list(self.vision.noisy_frame_indexes),
)
action: ModalityData | None = None
if self.action is not None and len(self.action.sequence_indexes) > 0:
action = ModalityData(
sequence_indexes=torch.tensor(self.action.sequence_indexes, dtype=torch.long),
timesteps=torch.tensor(self.action.timesteps),
mse_loss_indexes=torch.tensor(self.action.mse_loss_indexes, dtype=torch.long),
token_shapes=list(self.action.token_shapes),
tokens=self.action.tokens,
condition_mask=list(self.action.condition_mask),
noisy_frame_indexes=list(self.action.noisy_frame_indexes),
domain_id=(
gen_data_clean.action_domain_id
if gen_data_clean.action_domain_id is not None
else [torch.zeros(1, dtype=torch.long)] * len(self.action.token_shapes)
),
raw_action_dim=gen_data_clean.raw_action_dim,
)
sound: ModalityData | None = None
if self.sound is not None and len(self.sound.sequence_indexes) > 0:
sound = ModalityData(
sequence_indexes=torch.tensor(self.sound.sequence_indexes, dtype=torch.long),
timesteps=torch.tensor(self.sound.timesteps),
mse_loss_indexes=torch.tensor(self.sound.mse_loss_indexes, dtype=torch.long),
token_shapes=list(self.sound.token_shapes),
tokens=self.sound.tokens,
condition_mask=list(self.sound.condition_mask),
noisy_frame_indexes=list(self.sound.noisy_frame_indexes),
)
if self._use_mrope and len(self.position_ids) > 0 and isinstance(self.position_ids[0], torch.Tensor):
mrope_tensors: list[torch.Tensor] = self.position_ids # type: ignore[assignment]
position_ids = torch.cat(mrope_tensors, dim=1) # [3,actual_seq_len]
else:
position_ids = torch.tensor(self.position_ids) # [seq_len]
return PackedSequence(
sequence_length=sequence_length,
sample_lens=sample_lens,
split_lens=split_lens,
attn_modes=attn_modes,
is_image_batch=gen_data_clean.is_image_batch,
text_ids=torch.tensor(self.text_ids, dtype=torch.long),
text_indexes=torch.tensor(self.text_indexes, dtype=torch.long),
position_ids=position_ids,
label_ids=label_ids,
ce_loss_indexes=ce_loss_indexes,
ce_loss_weights=ce_loss_weights,
vision=vision,
action=action,
sound=sound,
null_action_supertokens=self.null_action_supertokens,
)
def to_cuda(self) -> None:
if isinstance(self.text_ids, torch.Tensor):
self.text_ids = self.text_ids.cuda()
if isinstance(self.text_indexes, torch.Tensor):
self.text_indexes = self.text_indexes.cuda()
if isinstance(self.position_ids, torch.Tensor):
self.position_ids = self.position_ids.cuda()
if isinstance(self.label_ids, torch.Tensor):
self.label_ids = self.label_ids.cuda()
if isinstance(self.ce_loss_indexes, torch.Tensor):
self.ce_loss_indexes = self.ce_loss_indexes.cuda()
if isinstance(self.ce_loss_weights, torch.Tensor):
self.ce_loss_weights = self.ce_loss_weights.cuda()
if self.vision is not None:
self.vision.to_cuda()
if self.action is not None:
self.action.to_cuda()
if self.sound is not None:
self.sound.to_cuda()
@dataclass
class SequencePlan:
"""Plan describing which modalities are present in a sample."""
has_text: bool
has_vision: bool = False
condition_frame_indexes_vision: list[int] = field(default_factory=list)
has_action: bool = False
condition_frame_indexes_action: list[int] = field(default_factory=list)
has_sound: bool = False
condition_frame_indexes_sound: list[int] = field(default_factory=list)
def as_dict(self) -> dict:
return {
"has_text": self.has_text,
"has_vision": self.has_vision,
"has_action": self.has_action,
"has_sound": self.has_sound,
"condition_frame_indexes_vision": self.condition_frame_indexes_vision,
"condition_frame_indexes_action": self.condition_frame_indexes_action,
"condition_frame_indexes_sound": self.condition_frame_indexes_sound,
}
# ============================================================================
# Helper functions for packing sequences
# ============================================================================
def _pack_text_tokens(
packed_seq: PackedSequence,
text_ids: List[int],
special_tokens: Dict[str, int],
curr_rope_id: int,
has_generation: bool,
use_float_positions: bool = False,
) -> Tuple[int, int, int]:
"""Pack text tokens into the sequence."""
assert isinstance(packed_seq.text_ids, list), "PackedSequence must be in build mode"
assert isinstance(packed_seq.text_indexes, list)
assert isinstance(packed_seq.position_ids, list)
assert isinstance(packed_seq.label_ids, list)
assert isinstance(packed_seq.ce_loss_indexes, list)
assert isinstance(packed_seq.ce_loss_weights, list)
curr = packed_seq.curr
if "bos_token_id" in special_tokens:
shifted_text_ids = [special_tokens["bos_token_id"]] + text_ids
else:
shifted_text_ids = text_ids
split_len = 0
packed_seq.text_ids.extend(shifted_text_ids)
packed_seq.text_indexes.extend(range(curr, curr + len(shifted_text_ids)))
packed_seq.ce_loss_indexes.extend(range(curr, curr + len(shifted_text_ids)))
packed_seq.ce_loss_weights.extend([1.0] * len(shifted_text_ids))
packed_seq.label_ids.extend(text_ids[1:] + [special_tokens["eos_token_id"]])
curr += len(shifted_text_ids)
split_len += len(shifted_text_ids)
packed_seq.text_ids.append(special_tokens["eos_token_id"])
packed_seq.text_indexes.append(curr)
curr += 1
split_len += 1
if has_generation:
packed_seq.text_ids.append(special_tokens["start_of_generation"])
packed_seq.text_indexes.append(curr)
curr += 1
split_len += 1
if packed_seq._use_mrope:
text_mrope_ids, packed_seq._mrope_temporal_offset = get_3d_mrope_ids_text_tokens(
num_tokens=split_len,
temporal_offset=packed_seq._mrope_temporal_offset,
use_float_positions=use_float_positions,
)
packed_seq.position_ids.append(text_mrope_ids)
else:
packed_seq.position_ids.extend(range(curr_rope_id, curr_rope_id + split_len))
packed_seq.attn_modes.append("causal")
packed_seq.split_lens.append(split_len)
packed_seq.curr = curr
return curr_rope_id + split_len, split_len, split_len
def _pack_vision_tokens(
packed_seq: PackedSequence,
input_vision_tokens: torch.Tensor,
condition_frame_indexes_vision: list[int],
input_timestep: float | torch.Tensor,
curr_rope_id: int,
latent_patch_size: int = 1,
vision_fps: float | None = None,
enable_fps_modulation: bool = False,
base_fps: float = 24.0,
temporal_compression_factor: int = 4,
) -> int:
"""Pack vision tokens into the sequence."""
assert isinstance(packed_seq.position_ids, list), "PackedSequence must be in build mode"
curr = packed_seq.curr
vision_split_len = 0
if packed_seq.vision is None:
packed_seq.vision = ModalityData()
assert isinstance(packed_seq.vision.sequence_indexes, list)
assert isinstance(packed_seq.vision.mse_loss_indexes, list)
assert isinstance(packed_seq.vision.timesteps, list)
assert isinstance(packed_seq.vision.tokens, list)
_, _, latent_t, latent_h, latent_w = input_vision_tokens.shape
if latent_patch_size < 1:
raise ValueError(f"latent_patch_size must be >= 1, got {latent_patch_size}")
patch_h = math.ceil(latent_h / latent_patch_size)
patch_w = math.ceil(latent_w / latent_patch_size)
packed_seq.vision.token_shapes.append((latent_t, patch_h, patch_w))
packed_seq.vision.tokens.append(input_vision_tokens)
num_vision_tokens = latent_t * patch_h * patch_w
packed_seq.vision.sequence_indexes.extend(range(curr, curr + num_vision_tokens))
condition_set = {idx for idx in condition_frame_indexes_vision if 0 <= idx < latent_t}
assert isinstance(packed_seq.vision.condition_mask, list)
vision_condition_mask = torch.zeros(
(latent_t, 1, 1), device=input_vision_tokens.device, dtype=input_vision_tokens.dtype
)
for frame_idx in condition_set:
vision_condition_mask[frame_idx, 0, 0] = 1.0
packed_seq.vision.condition_mask.append(vision_condition_mask)
vision_noisy_frame_indexes = torch.tensor(
[idx for idx in range(latent_t) if idx not in condition_set],
device=input_vision_tokens.device,
dtype=torch.long,
)
assert isinstance(packed_seq.vision.noisy_frame_indexes, list)
packed_seq.vision.noisy_frame_indexes.append(vision_noisy_frame_indexes)
frame_token_stride = patch_h * patch_w
for frame_idx in range(latent_t):
if frame_idx in condition_set:
continue
frame_start = curr + frame_idx * frame_token_stride
frame_end = frame_start + frame_token_stride
packed_seq.vision.mse_loss_indexes.extend(range(frame_start, frame_end))
if isinstance(input_timestep, torch.Tensor):
frame_ts = input_timestep[frame_idx].item()
else:
frame_ts = input_timestep
packed_seq.vision.timesteps.extend([frame_ts] * frame_token_stride)
curr += num_vision_tokens
vision_split_len += num_vision_tokens
if packed_seq._use_mrope:
effective_fps = vision_fps if enable_fps_modulation else None
vision_mrope_ids, packed_seq._mrope_temporal_offset = get_3d_mrope_ids_vae_tokens(
grid_t=latent_t,
grid_h=patch_h,
grid_w=patch_w,
temporal_offset=packed_seq._mrope_temporal_offset,
reset_spatial_indices=packed_seq._mrope_reset_spatial,
fps=effective_fps,
base_fps=base_fps,
temporal_compression_factor=temporal_compression_factor,
)
packed_seq.position_ids.append(vision_mrope_ids)
else:
packed_seq.position_ids.extend([curr_rope_id] * vision_split_len)
packed_seq.curr = curr
return vision_split_len
def _pack_action_tokens(
packed_seq: PackedSequence,
input_action_tokens: torch.Tensor,
condition_frame_indexes_action: list[int],
input_timestep: float,
curr_rope_id: int,
action_temporal_offset: int | float = 0,
enable_fps_modulation: bool = False,
base_fps: float = 24.0,
action_fps: float | None = None,
base_temporal_compression_factor: int | None = None,
) -> int:
"""Pack action tokens into the sequence."""
assert isinstance(packed_seq.position_ids, list), "PackedSequence must be in build mode"
curr = packed_seq.curr
action_split_len = input_action_tokens.shape[0]
if packed_seq.action is None:
packed_seq.action = ModalityData()
assert isinstance(packed_seq.action.sequence_indexes, list)
assert isinstance(packed_seq.action.mse_loss_indexes, list)
assert isinstance(packed_seq.action.timesteps, list)
assert isinstance(packed_seq.action.tokens, list)
action_indexes = list(range(curr, curr + action_split_len))
packed_seq.action.sequence_indexes.extend(action_indexes)
packed_seq.action.token_shapes.append((action_split_len,))
packed_seq.action.tokens.append(input_action_tokens)
condition_set = {idx for idx in condition_frame_indexes_action if 0 <= idx < action_split_len}
assert isinstance(packed_seq.action.condition_mask, list)
action_condition_mask = torch.zeros(
(action_split_len, 1), device=input_action_tokens.device, dtype=input_action_tokens.dtype
)
for frame_idx in condition_set:
action_condition_mask[frame_idx, 0] = 1.0
packed_seq.action.condition_mask.append(action_condition_mask)
action_noisy_frame_indexes = torch.tensor(
[idx for idx in range(action_split_len) if idx not in condition_set],
device=input_action_tokens.device,
dtype=torch.long,
)
assert isinstance(packed_seq.action.noisy_frame_indexes, list)
packed_seq.action.noisy_frame_indexes.append(action_noisy_frame_indexes)
frame_token_stride = 1
for frame_idx in range(action_split_len):
if frame_idx in condition_set:
continue
frame_start = curr + frame_idx * frame_token_stride
frame_end = frame_start + frame_token_stride
packed_seq.action.mse_loss_indexes.extend(range(frame_start, frame_end))
packed_seq.action.timesteps.extend([input_timestep] * frame_token_stride)
if packed_seq._use_mrope:
effective_fps = action_fps if enable_fps_modulation else None
action_mrope_ids, _ = get_3d_mrope_ids_vae_tokens(
grid_t=action_split_len,
grid_h=1,
grid_w=1,
temporal_offset=action_temporal_offset,
reset_spatial_indices=packed_seq._mrope_reset_spatial,
fps=effective_fps,
base_fps=base_fps,
temporal_compression_factor=1,
base_temporal_compression_factor=base_temporal_compression_factor,
start_frame_offset=1,
)
packed_seq.position_ids.append(action_mrope_ids)
else:
packed_seq.position_ids.extend([curr_rope_id] * action_split_len)
packed_seq.curr = curr + action_split_len
return action_split_len
def _pack_sound_tokens(
packed_seq: PackedSequence,
input_sound_tokens: torch.Tensor,
condition_frame_indexes_sound: list[int],
input_timestep: float,
curr_rope_id: int,
sound_temporal_offset: int | float = 0,
enable_fps_modulation: bool = False,
base_fps: float = 24.0,
sound_fps: float | None = None,
) -> int:
"""Pack sound/audio tokens into the sequence."""
assert isinstance(packed_seq.position_ids, list), "PackedSequence must be in build mode"
curr = packed_seq.curr
_, sound_split_len = input_sound_tokens.shape
if packed_seq.sound is None:
packed_seq.sound = ModalityData()
assert isinstance(packed_seq.sound.sequence_indexes, list)
assert isinstance(packed_seq.sound.mse_loss_indexes, list)
assert isinstance(packed_seq.sound.timesteps, list)
assert isinstance(packed_seq.sound.tokens, list)
packed_seq.sound.token_shapes.append((sound_split_len, 1, 1))
packed_seq.sound.sequence_indexes.extend(range(curr, curr + sound_split_len))
packed_seq.sound.tokens.append(input_sound_tokens)
condition_set = {idx for idx in condition_frame_indexes_sound if 0 <= idx < sound_split_len}
assert isinstance(packed_seq.sound.condition_mask, list)
sound_condition_mask = torch.zeros(
(sound_split_len, 1), device=input_sound_tokens.device, dtype=input_sound_tokens.dtype
)
for frame_idx in condition_set:
sound_condition_mask[frame_idx, 0] = 1.0
packed_seq.sound.condition_mask.append(sound_condition_mask)
sound_noisy_frame_indexes = torch.tensor(
[idx for idx in range(sound_split_len) if idx not in condition_set],
device=input_sound_tokens.device,
dtype=torch.long,
)
assert isinstance(packed_seq.sound.noisy_frame_indexes, list)
packed_seq.sound.noisy_frame_indexes.append(sound_noisy_frame_indexes)
for frame_idx in range(sound_split_len):
if frame_idx in condition_set:
continue
frame_start = curr + frame_idx
frame_end = frame_start + 1
packed_seq.sound.mse_loss_indexes.extend(range(frame_start, frame_end))
packed_seq.sound.timesteps.extend([input_timestep])
if packed_seq._use_mrope:
effective_fps = sound_fps if enable_fps_modulation else None
sound_mrope_ids, _ = get_3d_mrope_ids_vae_tokens(
grid_t=sound_split_len,
grid_h=1,
grid_w=1,
temporal_offset=sound_temporal_offset,
reset_spatial_indices=packed_seq._mrope_reset_spatial,
fps=effective_fps,
base_fps=base_fps,
temporal_compression_factor=1,
start_frame_offset=0,
)
packed_seq.position_ids.append(sound_mrope_ids)
else:
packed_seq.position_ids.extend([curr_rope_id] * sound_split_len)
packed_seq.curr = curr + sound_split_len
return sound_split_len
def _pack_supertokens_temporal_causal(
packed_seq: "PackedSequence",
input_vision_tokens: torch.Tensor,
input_action_tokens: torch.Tensor | None,
condition_frame_indexes_vision: list[int],
input_timestep: float | torch.Tensor,
curr_rope_id: int,
latent_patch_size: int,
temporal_compression_factor: int,
action_dim: int,
vision_fps: float | None = None,
action_fps: float | None = None,
enable_fps_modulation: bool = False,
base_fps: float = 24.0,
) -> tuple[int, bool]:
"""Pack vision and action tokens in interleaved supertoken order for temporal causal attention.
Buffer layout: [action_t0, vision_t0, action_t1, vision_t1, ..., action_{T-1}, vision_{T-1}]
"""
assert isinstance(packed_seq.position_ids, list), "PackedSequence must be in build mode"
_, _, latent_t, latent_h, latent_w = input_vision_tokens.shape
patch_h = math.ceil(latent_h / latent_patch_size)
patch_w = math.ceil(latent_w / latent_patch_size)
tcf = temporal_compression_factor
patches_per_frame = patch_h * patch_w
supertoken_len = tcf + patches_per_frame
if packed_seq.vision is None:
packed_seq.vision = ModalityData()
if packed_seq.action is None:
packed_seq.action = ModalityData()
assert isinstance(packed_seq.vision.sequence_indexes, list)
assert isinstance(packed_seq.vision.mse_loss_indexes, list)
assert isinstance(packed_seq.vision.timesteps, list)
assert isinstance(packed_seq.vision.tokens, list)
assert isinstance(packed_seq.vision.condition_mask, list)
assert isinstance(packed_seq.action.sequence_indexes, list)
assert isinstance(packed_seq.action.mse_loss_indexes, list)
assert isinstance(packed_seq.action.timesteps, list)
assert isinstance(packed_seq.action.tokens, list)
assert isinstance(packed_seq.action.condition_mask, list)
device = input_vision_tokens.device
dtype = input_vision_tokens.dtype
null_tokens = torch.zeros(tcf, action_dim, device=device, dtype=dtype)
if input_action_tokens is not None:
if input_action_tokens.dim() == 3:
real_actions = input_action_tokens.squeeze(0)
else:
real_actions = input_action_tokens
if latent_t == 1:
all_action_tokens = real_actions
else:
all_action_tokens = torch.cat([null_tokens, real_actions], dim=0)
else:
all_action_tokens = torch.zeros(latent_t * tcf, action_dim, device=device, dtype=dtype)
null_action_flag = not (latent_t == 1 and input_action_tokens is not None)
packed_seq.vision.token_shapes.append((latent_t, patch_h, patch_w))
packed_seq.vision.tokens.append(input_vision_tokens)
condition_set_vision = {idx for idx in condition_frame_indexes_vision if 0 <= idx < latent_t}
vision_condition_mask = torch.zeros((latent_t, 1, 1), device=device, dtype=dtype)
for fidx in condition_set_vision:
vision_condition_mask[fidx, 0, 0] = 1.0
packed_seq.vision.condition_mask.append(vision_condition_mask)
vision_noisy_frame_indexes = torch.tensor(
[idx for idx in range(latent_t) if idx not in condition_set_vision],
device=device,
dtype=torch.long,
)
packed_seq.vision.noisy_frame_indexes.append(vision_noisy_frame_indexes)
packed_seq.action.token_shapes.append((latent_t * tcf,))
packed_seq.action.tokens.append(all_action_tokens)
action_condition_mask = torch.ones((latent_t * tcf, 1), device=device, dtype=dtype)
packed_seq.action.condition_mask.append(action_condition_mask)
curr = packed_seq.curr
total_split_len = 0
if packed_seq._use_mrope:
temporal_offset = packed_seq._mrope_temporal_offset
effective_action_fps = action_fps if enable_fps_modulation else None
effective_vision_fps = vision_fps if enable_fps_modulation else None
fps_active = effective_action_fps is not None
t_dtype = torch.float32 if fps_active else torch.long
t_offset = float(temporal_offset) if fps_active else int(temporal_offset)
null_t = torch.full((tcf,), t_offset, dtype=t_dtype)
null_hw = torch.zeros(tcf, dtype=t_dtype)
null_ids = torch.stack([null_t, null_hw, null_hw]) # [3,tcf]
def _real_action_ids(n_frames: int, start_frame_offset: int) -> torch.Tensor:
flat, _ = get_3d_mrope_ids_vae_tokens(
grid_t=n_frames * tcf,
grid_h=1,
grid_w=1,
temporal_offset=temporal_offset,
reset_spatial_indices=packed_seq._mrope_reset_spatial,
fps=effective_action_fps,
base_fps=base_fps,
temporal_compression_factor=1,
base_temporal_compression_factor=tcf,
start_frame_offset=start_frame_offset,
)
return flat.reshape(3, n_frames, tcf)
if latent_t > 1:
null_ids_3d = null_ids.reshape(3, 1, tcf)
real_ids_3d = _real_action_ids(latent_t - 1, start_frame_offset=1)
action_ids_3d = torch.cat([null_ids_3d, real_ids_3d], dim=1)
elif input_action_tokens is None:
action_ids_3d = null_ids.reshape(3, 1, tcf)
else:
action_ids_3d = _real_action_ids(1, start_frame_offset=0)
vision_ids_flat, new_offset = get_3d_mrope_ids_vae_tokens(
grid_t=latent_t,
grid_h=patch_h,
grid_w=patch_w,
temporal_offset=temporal_offset,
reset_spatial_indices=packed_seq._mrope_reset_spatial,
fps=effective_vision_fps,
base_fps=base_fps,
temporal_compression_factor=tcf,
)
vision_ids_3d = vision_ids_flat.reshape(3, latent_t, patches_per_frame)
interleaved_ids = torch.cat([action_ids_3d, vision_ids_3d], dim=2).reshape(3, latent_t * supertoken_len)
packed_seq.position_ids.append(interleaved_ids)
packed_seq._mrope_temporal_offset = new_offset
for frame_t in range(latent_t):
action_indexes = list(range(curr, curr + tcf))
packed_seq.action.sequence_indexes.extend(action_indexes)
curr += tcf
total_split_len += tcf
if not packed_seq._use_mrope:
packed_seq.position_ids.extend([curr_rope_id] * tcf)
frame_indexes = list(range(curr, curr + patches_per_frame))
packed_seq.vision.sequence_indexes.extend(frame_indexes)
curr += patches_per_frame
total_split_len += patches_per_frame
if not packed_seq._use_mrope:
packed_seq.position_ids.extend([curr_rope_id] * patches_per_frame)
if frame_t not in condition_set_vision:
packed_seq.vision.mse_loss_indexes.extend(frame_indexes)
frame_ts = input_timestep[frame_t].item() if isinstance(input_timestep, torch.Tensor) else input_timestep
packed_seq.vision.timesteps.extend([frame_ts] * patches_per_frame)
packed_seq.curr = curr
return total_split_len, null_action_flag
# ============================================================================
# Main packing functions
# ============================================================================
def pack_input_sequence(
sequence_plans: list[SequencePlan],
input_text_indexes: list[list[int]],
gen_data_clean: GenerationDataClean,
input_timesteps: torch.Tensor,
special_tokens: dict[str, int],
max_num_tokens: int | None = None,
latent_patch_size: int = 1,
skip_text_tokens: bool = False,
include_end_of_generation_token: bool = False,
position_embedding_type: str = "3d_rope",
unified_3d_mrope_reset_spatial_ids: bool = True,
unified_3d_mrope_temporal_modality_margin: int = 0,
enable_fps_modulation: bool = False,
base_fps: float = 24.0,
temporal_compression_factor: int = 4,
video_temporal_causal: bool = False,
action_dim: int = 32,
initial_mrope_temporal_offset: int | float = 0,
) -> PackedSequence:
"""Pack a sequence of input strings and VAE latents into a packed tensor format.
Args:
sequence_plans: List of SequencePlan items describing which modalities are present.
input_text_indexes: List of text token ID sequences.
gen_data_clean: GenerationDataClean containing vision, action, and sound tensors.
input_timesteps: Diffusion timesteps for each sample. Shape (B,) or (B, 1).
special_tokens: Dictionary containing special token IDs.
max_num_tokens: Maximum number of tokens (unused, kept for API compatibility).
latent_patch_size: Patch size used by the network to pack latents.
skip_text_tokens: If True, skip packing text tokens.
include_end_of_generation_token: If True, append end-of-generation token.
position_embedding_type: Position embedding type for vision tokens.
unified_3d_mrope_reset_spatial_ids: If True, spatial indices start from 0 per segment.
unified_3d_mrope_temporal_modality_margin: Temporal margin between text and vision.
enable_fps_modulation: If True, scale temporal position IDs based on video FPS.
base_fps: Base FPS for normalization.
temporal_compression_factor: VAE temporal compression factor.
video_temporal_causal: If True, pack vision and action as interleaved supertokens.
action_dim: Action token dimension for temporal causal packing.
initial_mrope_temporal_offset: Initial temporal offset for AR inference.
Returns:
PackedSequence containing all packed tensors and metadata.
"""
del max_num_tokens
assert special_tokens is not None, "Special tokens must be provided"
assert isinstance(input_timesteps, torch.Tensor), "input_timesteps must be a tensor"
if input_timesteps.is_cuda:
raise ValueError("input_timesteps must be on CPU, not CUDA")
if isinstance(input_text_indexes, torch.Tensor):
raise ValueError("input_text_tokens must be a list, not a tensor")
packed_seq = PackedSequence()
packed_seq._use_mrope = position_embedding_type == "unified_3d_mrope"
packed_seq._mrope_reset_spatial = unified_3d_mrope_reset_spatial_ids
idx_text = 0
idx_vision = 0
idx_action = 0
idx_sound = 0
null_action_flags: list[bool] = []
if not skip_text_tokens:
for plan in sequence_plans:
assert plan.has_text, "All sequence plans must have has_text=True when skip_text_tokens=False"
for sample_idx, sequence_plan in enumerate(sequence_plans):
curr_rope_id = 0
sample_len = 0
packed_seq._mrope_temporal_offset = initial_mrope_temporal_offset
_ts = input_timesteps[sample_idx]
input_timestep = _ts.item() if _ts.numel() == 1 else _ts
if sequence_plan.has_text and not skip_text_tokens:
text_ids = input_text_indexes[idx_text]
idx_text += 1
has_generation_for_sample = sequence_plan.has_vision or sequence_plan.has_action or sequence_plan.has_sound
curr_rope_id, _, text_sample_len = _pack_text_tokens(
packed_seq,
text_ids,
special_tokens,
curr_rope_id,
has_generation=has_generation_for_sample,
use_float_positions=enable_fps_modulation,
)
sample_len += text_sample_len
packed_seq._mrope_temporal_offset += unified_3d_mrope_temporal_modality_margin
vision_start_temporal_offset = packed_seq._mrope_temporal_offset
if video_temporal_causal and sequence_plan.has_vision:
assert position_embedding_type == "unified_3d_mrope", (
"video_temporal_causal=True requires position_embedding_type='unified_3d_mrope'"
)
input_vision_tokens = gen_data_clean.x0_tokens_vision[idx_vision]
idx_vision += 1
vision_fps = None
if (
enable_fps_modulation
and gen_data_clean.fps_vision is not None
and idx_vision - 1 < len(gen_data_clean.fps_vision)
):
vision_fps = float(gen_data_clean.fps_vision[idx_vision - 1].item())
input_action_tokens_tc: torch.Tensor | None = None
action_fps_tc: float | None = None
if sequence_plan.has_action:
input_action_tokens_tc = gen_data_clean.x0_tokens_action[idx_action]
if (
enable_fps_modulation
and gen_data_clean.fps_action is not None
and idx_action < len(gen_data_clean.fps_action)
):
action_fps_tc = float(gen_data_clean.fps_action[idx_action].item())
idx_action += 1
supertoken_split_len, null_flag = _pack_supertokens_temporal_causal(
packed_seq=packed_seq,
input_vision_tokens=input_vision_tokens,
input_action_tokens=input_action_tokens_tc,
condition_frame_indexes_vision=sequence_plan.condition_frame_indexes_vision,
input_timestep=input_timestep,
curr_rope_id=curr_rope_id,
latent_patch_size=latent_patch_size,
temporal_compression_factor=temporal_compression_factor,
action_dim=action_dim,
vision_fps=vision_fps,
action_fps=action_fps_tc,
enable_fps_modulation=enable_fps_modulation,
base_fps=base_fps,
)
null_action_flags.append(null_flag)
sample_len += supertoken_split_len
vision_split_len = supertoken_split_len
action_split_len = 0
else:
if sequence_plan.has_vision:
num_vis = (
gen_data_clean.num_vision_items_per_sample[sample_idx]
if gen_data_clean.num_vision_items_per_sample is not None
else 1
)
vision_split_len = 0
for item_idx in range(num_vis):
input_vision_tokens = gen_data_clean.x0_tokens_vision[idx_vision]
vision_fps: float | None = None
if (
enable_fps_modulation
and gen_data_clean.fps_vision is not None
and idx_vision < len(gen_data_clean.fps_vision)
):
vision_fps = float(gen_data_clean.fps_vision[idx_vision].item())
idx_vision += 1
if num_vis > 1 and item_idx < num_vis - 1:
latent_t = input_vision_tokens.shape[2]
item_condition_frames = list(range(latent_t))
else:
item_condition_frames = sequence_plan.condition_frame_indexes_vision
item_split_len = _pack_vision_tokens(
packed_seq=packed_seq,
input_vision_tokens=input_vision_tokens,
condition_frame_indexes_vision=item_condition_frames,
input_timestep=input_timestep,
curr_rope_id=curr_rope_id,
latent_patch_size=latent_patch_size,
vision_fps=vision_fps,
enable_fps_modulation=enable_fps_modulation,
base_fps=base_fps,
temporal_compression_factor=temporal_compression_factor,
)
vision_split_len += item_split_len
sample_len += vision_split_len
else:
vision_split_len = 0
if sequence_plan.has_action:
input_action_tokens = gen_data_clean.x0_tokens_action[idx_action]
action_fps: float | None = None
if (
enable_fps_modulation
and gen_data_clean.fps_action is not None
and idx_action < len(gen_data_clean.fps_action)
):
action_fps = float(gen_data_clean.fps_action[idx_action].item())
idx_action += 1
action_split_len = _pack_action_tokens(
packed_seq=packed_seq,
input_action_tokens=input_action_tokens,
condition_frame_indexes_action=sequence_plan.condition_frame_indexes_action,
input_timestep=input_timestep,
curr_rope_id=curr_rope_id,
action_temporal_offset=vision_start_temporal_offset,
enable_fps_modulation=enable_fps_modulation,
base_fps=base_fps,
action_fps=action_fps,
base_temporal_compression_factor=temporal_compression_factor,
)
sample_len += action_split_len
else:
action_split_len = 0
if sequence_plan.has_sound:
input_sound_tokens = gen_data_clean.x0_tokens_sound[idx_sound]
sound_fps: float | None = None
if (
enable_fps_modulation
and gen_data_clean.fps_sound is not None
and idx_sound < len(gen_data_clean.fps_sound)
):
sound_fps = float(gen_data_clean.fps_sound[idx_sound].item())
idx_sound += 1
sound_split_len = _pack_sound_tokens(
packed_seq=packed_seq,
input_sound_tokens=input_sound_tokens,
condition_frame_indexes_sound=sequence_plan.condition_frame_indexes_sound,
input_timestep=input_timestep,
curr_rope_id=curr_rope_id,
sound_temporal_offset=vision_start_temporal_offset,
enable_fps_modulation=enable_fps_modulation,
base_fps=base_fps,
sound_fps=sound_fps,
)
sample_len += sound_split_len
else:
sound_split_len = 0
eov_len = 0
has_any_generation = sequence_plan.has_vision or sequence_plan.has_action or sequence_plan.has_sound
if include_end_of_generation_token and has_any_generation:
assert isinstance(packed_seq.text_ids, list)
assert isinstance(packed_seq.text_indexes, list)
assert isinstance(packed_seq.position_ids, list)
packed_seq.text_ids.append(special_tokens["end_of_generation"])
packed_seq.text_indexes.append(packed_seq.curr)
if packed_seq._use_mrope:
eov_dtype = torch.float32 if enable_fps_modulation else torch.long
eov_mrope_ids = torch.full((3, 1), packed_seq._mrope_temporal_offset, dtype=eov_dtype)
packed_seq.position_ids.append(eov_mrope_ids) # type: ignore[arg-type]
packed_seq._mrope_temporal_offset += 1
else:
packed_seq.position_ids.append(curr_rope_id) # type: ignore[arg-type]
packed_seq.curr += 1
eov_len = 1
sample_len += 1
combined_split_len = vision_split_len + action_split_len + sound_split_len + eov_len
packed_seq.attn_modes.append("full")
packed_seq.split_lens.append(combined_split_len)
packed_seq.sample_lens.append(sample_len)
if null_action_flags:
assert len(set(null_action_flags)) == 1, (
f"Inconsistent null_action_supertokens across samples: {null_action_flags}."
)
packed_seq.null_action_supertokens = null_action_flags[0]
return packed_seq.finalize(gen_data_clean=gen_data_clean)
def build_sequence_plans_from_data_batch(
data_batch: dict,
input_video_key,
input_image_key: str,
) -> list[SequencePlan]:
"""Build or retrieve sequence plans from a data batch dictionary.
This function extracts sequence plans from the data batch if they exist,
otherwise creates default SequencePlan objects for each sample in the batch.
Args:
data_batch: Dictionary containing the data batch from the dataloader.
input_video_key: Key for video tensors in the batch.
input_image_key: Key for image tensors in the batch.
Returns:
List of SequencePlan objects, one per sample in the batch.
"""
# NOTE: this function is ONLY intended for backward compatibility.
# For new modalities, please generate the sequence_plan in the dataset class.
if "sequence_plan" in data_batch:
return data_batch["sequence_plan"]
assert "action" not in data_batch or data_batch["action"] is None, "Action data SHOULD have sequence_plans!"
assert "sound" not in data_batch or data_batch["sound"] is None, "Sound data SHOULD have sequence_plans!"
batch_size = 0
for key in [input_video_key, input_image_key]:
if key in data_batch:
val = data_batch[key]
if isinstance(val, torch.Tensor):
batch_size = val.shape[0]
break
elif isinstance(val, list):
batch_size = len(val)
break
if batch_size == 0:
raise ValueError(
f"Cannot determine batch size from data_batch. Expected {input_video_key}, {input_image_key}, or similar key."
)
return [
SequencePlan(
has_text=True,
has_vision=True,
condition_frame_indexes_vision=[],
)
for _ in range(batch_size)
]
|