File size: 58,996 Bytes
7ae83df | 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 | # # Copyright 2024 Bytedance Ltd. and/or its affiliates
# #
# # Licensed under the Apache License, Version 2.0 (the "License");
# # you may not use this file except in compliance with the License.
# # You may obtain a copy of the License at
# #
# # http://www.apache.org/licenses/LICENSE-2.0
# #
# # Unless required by applicable law or agreed to in writing, software
# # distributed under the License is distributed on an "AS IS" BASIS,
# # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# # See the License for the specific language governing permissions and
# # limitations under the License.
# """
# Implement base data transfer protocol between any two functions, modules.
# We can subclass Protocol to define more detailed batch info with specific keys
# """
# import copy
# import io
# import os
# import pickle
# from collections import defaultdict
# from dataclasses import dataclass, field
# from typing import Any, Callable, Optional, Union
# import numpy as np
# import ray
# import torch
# from numpy.typing import NDArray
# from tensordict import TensorDict
# from torch.distributed import ProcessGroup
# from torch.utils.data import DataLoader
# from .utils.py_functional import union_two_dict
# try:
# import tensordict
# tensordict.set_lazy_legacy(False).set()
# except Exception:
# pass
# __all__ = ["DataProto", "union_tensor_dict"]
# # ====== Feature switches (default OFF to keep original behavior) ======
# DP_SMART_UNION = 1 # per-sample smart union for non-tensors
# DP_AUTO_ALIGN = 1 # auto align non_tensors length to batch_size
# DP_RELAX_FROM_SINGLE = 1 # from_single_dict accepts non-ndarray by casting to object
# def pad_dataproto_to_divisor(data: "DataProto", size_divisor: int) -> tuple["DataProto", int]:
# """Pad a DataProto to size divisible by size_divisor"""
# assert isinstance(data, DataProto), "data must be a DataProto"
# if len(data) % size_divisor != 0:
# pad_size = size_divisor - len(data) % size_divisor
# padding_protos = []
# remaining_pad = pad_size
# while remaining_pad > 0:
# take_size = min(remaining_pad, len(data))
# padding_protos.append(data[:take_size])
# remaining_pad -= take_size
# data_padded = DataProto.concat([data] + padding_protos)
# else:
# pad_size = 0
# data_padded = data
# return data_padded, pad_size
# def unpad_dataproto(data: "DataProto", pad_size: int) -> "DataProto":
# if pad_size != 0:
# data = data[:-pad_size]
# return data
# def union_tensor_dict(tensor_dict1: TensorDict, tensor_dict2: TensorDict) -> TensorDict:
# """Union two tensordicts."""
# if tensor_dict1.batch_size != tensor_dict2.batch_size:
# raise ValueError(
# f"Two tensor dict must have identical batch size. Got {tensor_dict1.batch_size} and {tensor_dict2.batch_size}"
# )
# for key in tensor_dict2.keys():
# if key in tensor_dict1 and not torch.equal(tensor_dict1[key], tensor_dict2[key]):
# raise ValueError(f"Key already exists: {key}.")
# tensor_dict1[key] = tensor_dict2[key]
# return tensor_dict1
# # ---------------------- non-tensor union (two modes) ----------------------
# # Strict mode (original behavior)
# def _union_numpy_dict_strict(tensor_dict1: dict[str, NDArray], tensor_dict2: dict[str, NDArray]) -> dict[str, NDArray]:
# for key in tensor_dict2.keys():
# if key in tensor_dict1:
# assert isinstance(tensor_dict2[key], np.ndarray)
# assert isinstance(tensor_dict1[key], np.ndarray)
# if not np.all(tensor_dict1[key] == tensor_dict2[key]):
# raise ValueError(f"Key already exists: {key}.")
# tensor_dict1[key] = tensor_dict2[key]
# return tensor_dict1
# # Smart mode (opt-in): per-sample merge with None tolerance
# def _to_obj_1d(x) -> NDArray:
# if isinstance(x, np.ndarray) and x.dtype == np.dtype(object):
# return x
# return np.array(x, dtype=object)
# def _elem_equal(x: Any, y: Any) -> bool:
# if x is y:
# return True
# if isinstance(x, str) and isinstance(y, str):
# return x == y
# if isinstance(x, torch.Tensor) and isinstance(y, torch.Tensor):
# try:
# return x.shape == y.shape and torch.equal(x.cpu(), y.cpu())
# except Exception:
# return False
# if isinstance(x, np.ndarray) and isinstance(y, np.ndarray) and x.dtype != object and y.dtype != object:
# try:
# return x.shape == y.shape and np.array_equal(x, y)
# except Exception:
# return False
# try:
# return x == y
# except Exception:
# return False
# def _union_numpy_dict_smart(tensor_dict1: dict[str, NDArray], tensor_dict2: dict[str, NDArray]) -> dict[str, NDArray]:
# """
# Per-sample merge:
# - missing side (None) -> take the other;
# - both non-None and equal -> keep left;
# - both non-None and not equal -> raise with conflict indices (first few).
# """
# for key, v2 in tensor_dict2.items():
# if key not in tensor_dict1:
# tensor_dict1[key] = v2
# continue
# v1 = tensor_dict1[key]
# a1 = _to_obj_1d(v1)
# a2 = _to_obj_1d(v2)
# if a1.shape != a2.shape:
# raise ValueError(f"Key '{key}' has different shapes: {a1.shape} vs {a2.shape}")
# merged = np.empty_like(a1, dtype=object)
# conflict_idx = []
# for i in range(a1.shape[0]):
# x, y = a1[i], a2[i]
# if x is None and y is None:
# merged[i] = None
# elif x is None:
# merged[i] = y
# elif y is None:
# merged[i] = x
# else:
# if _elem_equal(x, y):
# merged[i] = x
# else:
# conflict_idx.append(i)
# merged[i] = x # keep left, but we still error after loop
# if conflict_idx:
# head = conflict_idx[:5]
# raise ValueError(f"Key already exists and conflicts on sample indices {head} (key='{key}').")
# tensor_dict1[key] = merged
# return tensor_dict1
# # Public entry: choose by switch (default strict/original)
# def union_numpy_dict(tensor_dict1: dict[str, NDArray], tensor_dict2: dict[str, NDArray]) -> dict[str, NDArray]:
# if DP_SMART_UNION:
# return _union_numpy_dict_smart(tensor_dict1, tensor_dict2)
# else:
# return _union_numpy_dict_strict(tensor_dict1, tensor_dict2)
# # ---------------------- helpers ----------------------
# def batch_collate(features: list[dict[str, Any]]) -> dict[str, list[Any]]:
# if len(features) == 0:
# return {}
# batch_features = defaultdict(list)
# for feature in features:
# for key, value in feature.items():
# batch_features[key].append(value)
# return batch_features
# def fold_batch_dim(data: "DataProto", new_batch_size: int):
# """
# Fold a batch dim from [bsz, xxx] into [new_bsz, bsz // new_bsz, xxx]
# """
# batch_size = data.batch.batch_size[0]
# assert batch_size % new_batch_size == 0
# tensor: TensorDict = data.batch
# non_tensor = data.non_tensor_batch
# tensor = tensor.view(new_batch_size, -1)
# tensor.auto_batch_size_(batch_dims=1)
# for key, value in non_tensor.items():
# non_tensor[key] = np.reshape(value, newshape=(new_batch_size, -1, *value.shape[1:]))
# return DataProto(batch=tensor, non_tensor_batch=non_tensor, meta_info=data.meta_info)
# def collate_fn(data_items: list["DataProtoItem"]):
# batch = []
# non_tensor_batch = []
# for data in data_items:
# batch.append(data.batch)
# non_tensor_batch.append(data.non_tensor_batch)
# batch = torch.stack(batch).contiguous()
# non_tensor_batch = batch_collate(non_tensor_batch)
# non_tensor_batch = {key: np.array(value, dtype=object) for key, value in non_tensor_batch.items()}
# return DataProto(batch=batch, non_tensor_batch=non_tensor_batch)
# @dataclass
# class DataProtoItem:
# batch: Optional[TensorDict] = None
# non_tensor_batch: dict[str, NDArray] = field(default_factory=dict)
# meta_info: dict[str, Any] = field(default_factory=dict)
# @dataclass
# class DataProto:
# """
# A DataProto is a data structure that aims to provide a standard protocol for data exchange between functions.
# It contains a batch (TensorDict) and a meta_info (Dict).
# """
# batch: Optional[TensorDict] = None
# non_tensor_batch: dict[str, NDArray] = field(default_factory=dict)
# meta_info: dict[str, Any] = field(default_factory=dict)
# @staticmethod
# def _ensure_obj_array(v) -> NDArray:
# if isinstance(v, np.ndarray) and v.dtype == np.dtype(object):
# return v
# return np.array(v, dtype=object)
# @classmethod
# def _align_non_tensors_len(cls, non_tensors: dict[str, NDArray], batch_size: int) -> None:
# """Align non_tensors along dim0 to batch_size (pad with None or truncate)."""
# for k, v in list(non_tensors.items()):
# v = cls._ensure_obj_array(v)
# cur = v.shape[0]
# if cur < batch_size:
# pad_n = batch_size - cur
# pad = np.array([None] * pad_n, dtype=object)
# non_tensors[k] = np.concatenate([v, pad], axis=0)
# elif cur > batch_size:
# non_tensors[k] = v[:batch_size]
# else:
# non_tensors[k] = v
# def __post_init__(self):
# # Only auto-align when explicitly enabled; otherwise keep original strictness.
# if DP_AUTO_ALIGN and self.batch is not None and len(self.non_tensor_batch) != 0:
# self._align_non_tensors_len(self.non_tensor_batch, self.batch.batch_size[0])
# self.check_consistency() # perform necessary checking
# def __len__(self) -> int:
# if self.batch is not None:
# return self.batch.batch_size[0]
# elif self.non_tensor_batch is not None and len(self.non_tensor_batch) > 0:
# pivot_key = list(self.non_tensor_batch.keys())[0]
# return self.non_tensor_batch[pivot_key].shape[0]
# else:
# return 0
# def __getitem__(
# self, item: Union[int, slice, list[int], np.ndarray, torch.Tensor]
# ) -> Union["DataProto", "DataProtoItem"]:
# if isinstance(item, slice):
# return self.slice_select(item.start, item.stop, item.step)
# if isinstance(item, (list, np.ndarray, torch.Tensor)):
# return self.index_select(item)
# if isinstance(item, (int, np.integer)):
# tensor_data = self.batch[item] if self.batch is not None else None
# non_tensor_data = {key: value[item] for key, value in self.non_tensor_batch.items()}
# return DataProtoItem(batch=tensor_data, non_tensor_batch=non_tensor_data, meta_info=self.meta_info)
# raise TypeError(f"Indexing with {type(item)} is not supported.")
# def __getstate__(self) -> tuple[bytes, dict[str, NDArray], dict[str, Any]]:
# if self.batch is not None:
# batch_to_save: TensorDict = self.batch.contiguous()
# batch_to_save: TensorDict = batch_to_save.consolidate()
# else:
# batch_to_save = None
# buffer = io.BytesIO()
# torch.save(batch_to_save, buffer)
# buffer_bytes = buffer.getvalue()
# return buffer_bytes, self.non_tensor_batch, self.meta_info
# def __setstate__(self, data: tuple[bytes, dict[str, NDArray], dict[str, Any]]) -> None:
# batch_deserialized_bytes, non_tensor_batch, meta_info = data
# batch_deserialized = io.BytesIO(batch_deserialized_bytes)
# batch = torch.load(batch_deserialized, weights_only=False, map_location="cpu")
# self.batch = batch
# self.non_tensor_batch = non_tensor_batch
# self.meta_info = meta_info
# def save_to_disk(self, filepath: str) -> None:
# with open(filepath, "wb") as f:
# pickle.dump(self, f)
# @staticmethod
# def load_from_disk(filepath: str) -> "DataProto":
# with open(filepath, "rb") as f:
# data = pickle.load(f)
# return data
# def print_size(self, prefix: str = "") -> None:
# size_of_tensordict = 0
# if self.batch is not None:
# for tensor in self.batch.values():
# if isinstance(tensor, torch.Tensor):
# size_of_tensordict += tensor.element_size() * tensor.numel()
# size_of_numpy_array = 0
# for value in self.non_tensor_batch.values():
# size_of_numpy_array += value.nbytes
# size_of_numpy_array /= 1024**3
# size_of_tensordict /= 1024**3
# message = f"Size of tensordict: {size_of_tensordict} GB, size of non_tensor_batch: {size_of_numpy_array} GB."
# print({prefix}, {message})
# def check_consistency(self):
# """Check the consistency of the DataProto. Mainly for batch and non_tensor_batch"""
# if self.batch is not None:
# assert len(self.batch.batch_size) == 1, "only support num_batch_dims=1"
# if self.batch is not None and len(self.non_tensor_batch) != 0:
# assert len(self.batch.batch_size) == 1, "only support num_batch_dims=1 when non_tensor_batch is not empty."
# batch_size = self.batch.batch_size[0]
# # Only auto-align when enabled; otherwise keep original assertion behavior
# if DP_AUTO_ALIGN:
# self._align_non_tensors_len(self.non_tensor_batch, batch_size)
# for key, value in self.non_tensor_batch.items():
# assert len(value) == batch_size, f"key {key} length {len(value)} is not equal to bsz {batch_size}."
# @classmethod
# def from_single_dict(
# cls,
# data: dict[str, Union[torch.Tensor, NDArray]],
# meta_info: Optional[dict[str, Any]] = None,
# ) -> "DataProto":
# tensors, non_tensors = {}, {}
# for key, value in data.items():
# if isinstance(value, torch.Tensor):
# tensors[key] = value
# elif isinstance(value, np.ndarray):
# non_tensors[key] = value
# else:
# if DP_RELAX_FROM_SINGLE:
# non_tensors[key] = np.array(value, dtype=object)
# else:
# raise ValueError(f"Unsupported type in data {type(value)}")
# return DataProto.from_dict(tensors=tensors, non_tensors=non_tensors, meta_info=meta_info)
# @classmethod
# def from_dict(
# cls,
# tensors: Optional[dict[str, torch.Tensor]] = None,
# non_tensors: Optional[dict[str, NDArray]] = None,
# meta_info: Optional[dict[str, Any]] = None,
# num_batch_dims: int = 1,
# ) -> "DataProto":
# """Create a DataProto from a dict of tensors."""
# assert num_batch_dims > 0, "num_batch_dims must be greater than zero"
# if non_tensors is not None:
# assert num_batch_dims == 1, "only support num_batch_dims=1 when non_tensors is not None."
# tensors = tensors or {}
# non_tensors = non_tensors or {}
# meta_info = meta_info or {}
# assert isinstance(tensors, dict) and isinstance(non_tensors, dict) and isinstance(meta_info, dict)
# # get and check batch size
# batch_size = None
# pivot_key = None
# for key, tensor in tensors.items():
# if batch_size is None:
# batch_size = tensor.shape[:num_batch_dims]
# pivot_key = key
# else:
# current_batch = tensor.shape[:num_batch_dims]
# assert batch_size == current_batch, (
# f"Not all the tensor in tensors have the same batch size with batch_dims={num_batch_dims}. "
# f"Got {pivot_key} has {batch_size}, {key} has {current_batch}."
# )
# # keep original: normalize non_tensors to object ndarray for consistency
# for key, value in non_tensors.items():
# if not isinstance(value, np.ndarray) or value.dtype != np.dtype(object):
# non_tensors[key] = np.array(value, dtype=object)
# tensor_dict = TensorDict(source=tensors, batch_size=batch_size) if tensors else None
# return cls(batch=tensor_dict, non_tensor_batch=non_tensors, meta_info=meta_info)
# def to(self, device: torch.device, non_blocking: bool = False) -> "DataProto":
# """Move the batch to device"""
# if self.batch is not None:
# self.batch = self.batch.to(device, non_blocking=non_blocking)
# return self
# def select(
# self,
# batch_keys: Optional[list[str]] = None,
# non_tensor_batch_keys: Optional[list[str]] = None,
# meta_info_keys: Optional[list[str]] = None,
# deepcopy: bool = False,
# ) -> "DataProto":
# """Select a subset of the DataProto via batch_keys and meta_info_keys"""
# if batch_keys is not None:
# batch_keys = tuple(filter(lambda k: k in self.batch, batch_keys))
# sub_batch = self.batch.select(*batch_keys)
# else:
# sub_batch = self.batch
# if non_tensor_batch_keys is not None:
# non_tensor_batch_keys = tuple(filter(lambda k: k in self.non_tensor_batch, non_tensor_batch_keys))
# non_tensor_batch = {k: v for k, v in self.non_tensor_batch.items() if k in non_tensor_batch_keys}
# else:
# non_tensor_batch = self.non_tensor_batch
# if deepcopy:
# non_tensor_batch = copy.deepcopy(non_tensor_batch)
# if meta_info_keys is not None:
# meta_info_keys = tuple(filter(lambda k: k in self.meta_info, meta_info_keys))
# sub_meta_info = {k: v for k, v in self.meta_info.items() if k in meta_info_keys}
# else:
# sub_meta_info = self.meta_info
# if deepcopy:
# sub_meta_info = copy.deepcopy(sub_meta_info)
# return DataProto(batch=sub_batch, non_tensor_batch=non_tensor_batch, meta_info=sub_meta_info)
# def index_select(self, index: Union[list[int], NDArray, torch.Tensor]) -> "DataProto":
# """Select a subset via index."""
# if isinstance(index, list):
# index = np.array(index, dtype=bool if isinstance(index[0], bool) else np.int32)
# elif isinstance(index, torch.Tensor):
# index = index.detach().cpu().numpy()
# tensor_data = self.batch[index] if self.batch is not None else None
# non_tensor_data = {key: value[index] for key, value in self.non_tensor_batch.items()}
# return DataProto(batch=tensor_data, non_tensor_batch=non_tensor_data, meta_info=self.meta_info)
# def slice_select(
# self, start: Optional[int] = None, end: Optional[int] = None, step: Optional[int] = None
# ) -> "DataProto":
# """Select a subset via slice."""
# index = slice(start, end, step)
# tensor_data = self.batch[index] if self.batch is not None else None
# non_tensor_data = {key: value[index] for key, value in self.non_tensor_batch.items()}
# return DataProto(batch=tensor_data, non_tensor_batch=non_tensor_data, meta_info=self.meta_info)
# def pop(
# self,
# batch_keys: Optional[list[str]] = None,
# non_tensor_batch_keys: Optional[list[str]] = None,
# meta_info_keys: Optional[list[str]] = None,
# ) -> "DataProto":
# """Pop a subset of the DataProto via keys"""
# assert batch_keys is not None
# non_tensor_batch_keys = non_tensor_batch_keys or []
# meta_info_keys = meta_info_keys or []
# tensors = {}
# for key in filter(lambda k: k in self.batch, batch_keys):
# tensors[key] = self.batch.pop(key)
# non_tensors = {}
# for key in filter(lambda k: k in self.non_tensor_batch, non_tensor_batch_keys):
# non_tensors[key] = self.non_tensor_batch.pop(key)
# meta_info = {}
# for key in filter(lambda k: k in self.meta_info, meta_info_keys):
# meta_info[key] = self.meta_info.pop(key)
# return DataProto.from_dict(tensors=tensors, non_tensors=non_tensors, meta_info=meta_info)
# def rename(
# self, old_keys: Optional[Union[str, list[str]]] = None, new_keys: Optional[Union[str, list[str]]] = None
# ) -> "DataProto":
# """Rename keys in the batch only."""
# def validate_input(keys):
# if keys is not None:
# if isinstance(keys, str):
# keys = [keys]
# elif isinstance(keys, list):
# pass
# else:
# raise TypeError(f"keys must be a list or a string, but got {type(keys)}")
# return keys
# old_keys = validate_input(old_keys)
# new_keys = validate_input(new_keys)
# if len(new_keys) != len(old_keys):
# raise ValueError(
# f"new_keys and old_keys must have the same length, but got {len(new_keys)} and {len(old_keys)}"
# )
# self.batch.rename_key_(tuple(old_keys), tuple(new_keys))
# return self
# def union(self, other: "DataProto") -> "DataProto":
# """Union with another DataProto. Union batch and meta_info separately."""
# self.batch = union_tensor_dict(self.batch, other.batch)
# self.non_tensor_batch = union_numpy_dict(self.non_tensor_batch, other.non_tensor_batch)
# self.meta_info = union_two_dict(self.meta_info, other.meta_info)
# return self
# def make_iterator(
# self, mini_batch_size: int, epochs: int, seed: int = None, dataloader_kwargs: dict[str, Any] = None
# ):
# """Make an iterator from the DataProto."""
# assert self.batch.batch_size[0] % mini_batch_size == 0, f"{self.batch.batch_size[0]} % {mini_batch_size} != 0"
# if seed is not None:
# generator = torch.Generator()
# generator.manual_seed(seed)
# else:
# generator = None
# dataloader_kwargs = dataloader_kwargs or {}
# assert isinstance(dataloader_kwargs, dict)
# train_dataloader = DataLoader(
# dataset=self,
# batch_size=mini_batch_size,
# collate_fn=collate_fn,
# generator=generator,
# **dataloader_kwargs,
# )
# def get_data():
# for _ in range(epochs):
# for data in train_dataloader:
# setattr(data, "meta_info", self.meta_info)
# yield data
# return iter(get_data())
# def chunk(self, chunks: int) -> list["DataProto"]:
# """Split the batch among dim=0 into chunks."""
# assert len(self) % chunks == 0, (
# f"only support equal chunk. Got size of DataProto {len(self)} and chunk {chunks}."
# )
# if self.batch is not None:
# batch_lst = self.batch.chunk(chunks=chunks, dim=0)
# else:
# batch_lst = [None for _ in range(chunks)]
# non_tensor_batch_lst = [{} for _ in range(chunks)]
# for key, value in self.non_tensor_batch.items():
# non_tensor_lst = np.array_split(value, chunks)
# for i in range(chunks):
# non_tensor_batch_lst[i][key] = non_tensor_lst[i]
# return [
# DataProto(batch=batch_lst[i], non_tensor_batch=non_tensor_batch_lst[i], meta_info=self.meta_info)
# for i in range(chunks)
# ]
# def split(self, split_size: int) -> list["DataProto"]:
# """Split the batch among dim=0 into chunks."""
# assert len(self) % split_size == 0, (
# f"only support equal split. Got size of DataProto {len(self)} and split {split_size}."
# )
# chunks = len(self) // split_size
# return self.chunk(chunks)
# @staticmethod
# def concat(data: list["DataProto"]) -> "DataProto":
# """Concat a list of DataProto."""
# batch_lst = [batch.batch for batch in data]
# new_batch = torch.cat(batch_lst, dim=0) if batch_lst[0] is not None else None
# non_tensor_batch = batch_collate([d.non_tensor_batch for d in data])
# for key, value in non_tensor_batch.items():
# non_tensor_batch[key] = np.concatenate(value, axis=0)
# return DataProto(batch=new_batch, non_tensor_batch=non_tensor_batch, meta_info=data[0].meta_info)
# def reorder(self, indices: torch.Tensor) -> None:
# """In-place reorder by indices."""
# indices_np = indices.detach().numpy()
# self.batch = self.batch[indices]
# self.non_tensor_batch = {key: value[indices_np] for key, value in self.non_tensor_batch.items()}
# def repeat(self, repeat_times: int, interleave: bool = True) -> "DataProto":
# """Repeat the batch data a specified number of times."""
# if self.batch is not None:
# if interleave:
# repeated_tensors = {
# key: tensor.repeat_interleave(repeat_times, dim=0) for key, tensor in self.batch.items()
# }
# else:
# repeated_tensors = {
# key: tensor.unsqueeze(0).expand(repeat_times, *tensor.shape).reshape(-1, *tensor.shape[1:])
# for key, tensor in self.batch.items()
# }
# repeated_batch = TensorDict(
# source=repeated_tensors,
# batch_size=(self.batch.batch_size[0] * repeat_times,),
# )
# else:
# repeated_batch = None
# repeated_non_tensor_batch = {}
# for key, value in self.non_tensor_batch.items():
# if interleave:
# repeated_non_tensor_batch[key] = np.repeat(value, repeat_times, axis=0)
# else:
# repeated_non_tensor_batch[key] = np.tile(value, (repeat_times,) + (1,) * (value.ndim - 1))
# return DataProto(
# batch=repeated_batch,
# non_tensor_batch=repeated_non_tensor_batch,
# meta_info=self.meta_info,
# )
# @dataclass
# class DataProtoFuture:
# """
# DataProtoFuture aims to eliminate actual data fetching on driver.
# """
# collect_fn: Callable
# futures: list[ray.ObjectRef]
# dispatch_fn: Callable = None
# @staticmethod
# def concat(data: list[ray.ObjectRef]) -> "DataProtoFuture":
# output = DataProtoFuture(collect_fn=DataProto.concat, futures=data)
# return output
# def chunk(self, chunks: int) -> list["DataProtoFuture"]:
# from functools import partial
# arg_future_lst = []
# for i in range(chunks):
# # note that we can't directly pass i and chunks
# def dispatch_fn(x, i, chunks):
# return x.chunk(chunks=chunks)[i]
# arg_future = DataProtoFuture(
# collect_fn=self.collect_fn, dispatch_fn=partial(dispatch_fn, i=i, chunks=chunks), futures=self.futures
# )
# arg_future_lst.append(arg_future)
# return arg_future_lst
# def get(self):
# outputs = ray.get(self.futures) # dp_size
# for output in outputs:
# assert isinstance(output, DataProto)
# outputs = self.collect_fn(outputs) # select dp, concat
# if self.dispatch_fn is not None:
# outputs = self.dispatch_fn(outputs) # split in batch dim, select using dp
# return outputs
# def allgather_dict_tensors(
# tensors: Union[dict[str, torch.Tensor], TensorDict], size: int, group: ProcessGroup, dim: int = 0
# ) -> Union[dict[str, torch.Tensor], TensorDict]:
# """
# TODO: optimize this.
# - We can use async ops
# - We can use only one allgather
# """
# if isinstance(tensors, TensorDict):
# is_tensor_dict = True
# tensors_as_dict = tensors.to_dict()
# else:
# tensors_as_dict = tensors
# is_tensor_dict = False
# output = {}
# sorted_keys = sorted(tensors_as_dict.keys())
# for key in sorted_keys:
# value = tensors_as_dict[key]
# output[key] = [torch.empty_like(value) for _ in range(size)]
# torch.distributed.all_gather(output[key], value, group=group, async_op=False)
# output[key] = torch.cat(output[key], dim=dim)
# if is_tensor_dict:
# output = TensorDict(source=output, batch_size=tensors.batch_size[0] * size)
# return output
# def all_gather_data_proto(data: DataProto, size: int, group: ProcessGroup) -> None:
# # Note that this is an inplace operator just like torch.distributed.all_gather
# prev_device = data.batch.device
# data.batch = data.batch.cuda(device=torch.cuda.current_device())
# data.batch = allgather_dict_tensors(data.batch.contiguous(), size=size, group=group, dim=0)
# data.batch = data.batch.to(prev_device)
# # all gather non_tensor_batch
# all_non_tensor_batch = [None for _ in range(size)]
# torch.distributed.all_gather_object(all_non_tensor_batch, data.non_tensor_batch, group=group)
# data.non_tensor_batch = {k: np.concatenate([d[k] for d in all_non_tensor_batch]) for k in data.non_tensor_batch}
# Copyright 2024 Bytedance Ltd. and/or its affiliates
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Implement base data transfer protocol between any two functions, modules.
We can subclass Protocol to define more detailed batch info with specific keys
"""
import copy
import io
import pickle
from collections import defaultdict
from dataclasses import dataclass, field
from typing import Any, Callable, Optional, Union
import numpy as np
import ray
import torch
from numpy.typing import NDArray
from tensordict import TensorDict
from torch.distributed import ProcessGroup
from torch.utils.data import DataLoader
from .utils.py_functional import union_two_dict
try:
import tensordict
tensordict.set_lazy_legacy(False).set()
except Exception:
pass
__all__ = ["DataProto", "union_tensor_dict"]
def pad_dataproto_to_divisor(data: "DataProto", size_divisor: int) -> tuple["DataProto", int]:
"""Pad a DataProto to size divisible by size_divisor
Args:
data (DataProto): the unpadded DataProto
size_divisor (int): size divisor
Returns:
data (DataProto): the padded DataProto
pad_size (int)
"""
assert isinstance(data, DataProto), "data must be a DataProto"
if len(data) % size_divisor != 0:
pad_size = size_divisor - len(data) % size_divisor
padding_protos = []
remaining_pad = pad_size
while remaining_pad > 0:
take_size = min(remaining_pad, len(data))
padding_protos.append(data[:take_size])
remaining_pad -= take_size
data_padded = DataProto.concat([data] + padding_protos)
else:
pad_size = 0
data_padded = data
return data_padded, pad_size
def unpad_dataproto(data: "DataProto", pad_size: int) -> "DataProto":
if pad_size != 0:
data = data[:-pad_size]
return data
def union_tensor_dict(tensor_dict1: TensorDict, tensor_dict2: TensorDict) -> TensorDict:
"""Union two tensordicts."""
if tensor_dict1.batch_size != tensor_dict2.batch_size:
raise ValueError(
f"Two tensor dict must have identical batch size. Got {tensor_dict1.batch_size} and {tensor_dict2.batch_size}"
)
for key in tensor_dict2.keys():
if key in tensor_dict1 and not torch.equal(tensor_dict1[key], tensor_dict2[key]):
raise ValueError(f"Key already exists: {key}.")
tensor_dict1[key] = tensor_dict2[key]
return tensor_dict1
def union_numpy_dict(tensor_dict1: dict[str, NDArray], tensor_dict2: dict[str, NDArray]) -> dict[str, NDArray]:
for key in tensor_dict2.keys():
if key in tensor_dict1:
assert isinstance(tensor_dict2[key], np.ndarray)
assert isinstance(tensor_dict1[key], np.ndarray)
if not np.all(tensor_dict1[key] == tensor_dict2[key]):
raise ValueError(f"Key already exists: {key}.")
tensor_dict1[key] = tensor_dict2[key]
return tensor_dict1
def batch_collate(features: list[dict[str, Any]]) -> dict[str, list[Any]]:
if len(features) == 0:
return {}
batch_features = defaultdict(list)
for feature in features:
for key, value in feature.items():
batch_features[key].append(value)
return batch_features
def fold_batch_dim(data: "DataProto", new_batch_size: int):
"""
Fold a batch dim from [bsz, xxx] into [new_bsz, bsz // new_bsz, xxx]
"""
batch_size = data.batch.batch_size[0]
assert batch_size % new_batch_size == 0
tensor: TensorDict = data.batch
non_tensor = data.non_tensor_batch
tensor = tensor.view(new_batch_size, -1)
tensor.auto_batch_size_(batch_dims=1)
for key, value in non_tensor.items():
non_tensor[key] = np.reshape(value, newshape=(new_batch_size, -1, *value.shape[1:]))
return DataProto(batch=tensor, non_tensor_batch=non_tensor, meta_info=data.meta_info)
def collate_fn(data_items: list["DataProtoItem"]):
batch = []
non_tensor_batch = []
for data in data_items:
batch.append(data.batch)
non_tensor_batch.append(data.non_tensor_batch)
batch = torch.stack(batch).contiguous()
non_tensor_batch = batch_collate(non_tensor_batch)
non_tensor_batch = {key: np.array(value, dtype=object) for key, value in non_tensor_batch.items()}
return DataProto(batch=batch, non_tensor_batch=non_tensor_batch)
@dataclass
class DataProtoItem:
batch: Optional[TensorDict] = None
non_tensor_batch: dict[str, NDArray] = field(default_factory=dict)
meta_info: dict[str, Any] = field(default_factory=dict)
@dataclass
class DataProto:
"""
A DataProto is a data structure that aims to provide a standard protocol for data exchange between functions.
It contains a batch (TensorDict) and a meta_info (Dict). The batch is a TensorDict https://pytorch.org/tensordict/.
TensorDict allows you to manipulate a dictionary of Tensors like a single Tensor. Ideally, the tensors with the
same batch size should be put inside batch.
"""
batch: Optional[TensorDict] = None
non_tensor_batch: dict[str, NDArray] = field(default_factory=dict)
meta_info: dict[str, Any] = field(default_factory=dict)
def __post_init__(self):
self.check_consistency() # perform necessary checking
def __len__(self) -> int:
if self.batch is not None:
return self.batch.batch_size[0]
elif self.non_tensor_batch is not None and len(self.non_tensor_batch) > 0:
pivot_key = list(self.non_tensor_batch.keys())[0]
return self.non_tensor_batch[pivot_key].shape[0]
else:
return 0
def __getitem__(
self, item: Union[int, slice, list[int], np.ndarray, torch.Tensor]
) -> Union["DataProto", "DataProtoItem"]:
if isinstance(item, slice):
return self.slice_select(item.start, item.stop, item.step)
if isinstance(item, (list, np.ndarray, torch.Tensor)):
return self.index_select(item)
if isinstance(item, (int, np.integer)):
tensor_data = self.batch[item] if self.batch is not None else None
non_tensor_data = {key: value[item] for key, value in self.non_tensor_batch.items()}
return DataProtoItem(batch=tensor_data, non_tensor_batch=non_tensor_data, meta_info=self.meta_info)
raise TypeError(f"Indexing with {type(item)} is not supported.")
def __getstate__(self) -> tuple[bytes, dict[str, NDArray], dict[str, Any]]:
if self.batch is not None:
batch_to_save: TensorDict = self.batch.contiguous()
batch_to_save: TensorDict = batch_to_save.consolidate()
else:
batch_to_save = None
buffer = io.BytesIO()
torch.save(batch_to_save, buffer)
buffer_bytes = buffer.getvalue()
return buffer_bytes, self.non_tensor_batch, self.meta_info
def __setstate__(self, data: tuple[bytes, dict[str, NDArray], dict[str, Any]]) -> None:
batch_deserialized_bytes, non_tensor_batch, meta_info = data
batch_deserialized = io.BytesIO(batch_deserialized_bytes)
batch = torch.load(batch_deserialized, weights_only=False, map_location="cpu")
self.batch = batch
self.non_tensor_batch = non_tensor_batch
self.meta_info = meta_info
def save_to_disk(self, filepath: str) -> None:
with open(filepath, "wb") as f:
pickle.dump(self, f)
@staticmethod
def load_from_disk(filepath: str) -> "DataProto":
with open(filepath, "rb") as f:
data = pickle.load(f)
return data
def print_size(self, prefix: str = "") -> None:
size_of_tensordict = 0
if self.batch is not None:
for tensor in self.batch.values():
if isinstance(tensor, torch.Tensor):
size_of_tensordict += tensor.element_size() * tensor.numel()
size_of_numpy_array = 0
for value in self.non_tensor_batch.values():
size_of_numpy_array += value.nbytes
size_of_numpy_array /= 1024**3
size_of_tensordict /= 1024**3
message = f"Size of tensordict: {size_of_tensordict} GB, size of non_tensor_batch: {size_of_numpy_array} GB."
print({prefix}, {message})
def check_consistency(self):
"""Check the consistency of the DataProto. Mainly for batch and non_tensor_batch
We expose this function as a public one so that user can call themselves directly
"""
if self.batch is not None:
assert len(self.batch.batch_size) == 1, "only support num_batch_dims=1"
if self.batch is not None and len(self.non_tensor_batch) != 0:
# TODO: we can actually lift this restriction if needed
assert len(self.batch.batch_size) == 1, "only support num_batch_dims=1 when non_tensor_batch is not empty."
batch_size = self.batch.batch_size[0]
#print(self.non_tensor_batch.items())
for key, value in self.non_tensor_batch.items():
assert len(value) == batch_size, f"key {key} length {len(value)} is not equal to bsz {batch_size}."
@classmethod
def from_single_dict(
cls,
data: dict[str, Union[torch.Tensor, NDArray]],
meta_info: Optional[dict[str, Any]] = None,
) -> "DataProto":
tensors, non_tensors = {}, {}
for key, value in data.items():
if isinstance(value, torch.Tensor):
tensors[key] = value
elif isinstance(value, np.ndarray):
non_tensors[key] = value
else:
raise ValueError(f"Unsupported type in data {type(value)}")
return DataProto.from_dict(tensors=tensors, non_tensors=non_tensors, meta_info=meta_info)
@classmethod
def from_dict(
cls,
tensors: Optional[dict[str, torch.Tensor]] = None,
non_tensors: Optional[dict[str, NDArray]] = None,
meta_info: Optional[dict[str, Any]] = None,
num_batch_dims: int = 1,
) -> "DataProto":
"""Create a DataProto from a dict of tensors. This assumes that
1. All the tensor in tensors have the same dim0
2. Only dim0 is the batch dim
"""
assert num_batch_dims > 0, "num_batch_dims must be greater than zero"
if non_tensors is not None:
assert num_batch_dims == 1, "only support num_batch_dims=1 when non_tensors is not None."
tensors = tensors or {}
non_tensors = non_tensors or {}
meta_info = meta_info or {}
assert isinstance(tensors, dict) and isinstance(non_tensors, dict) and isinstance(meta_info, dict)
# get and check batch size
batch_size = None
pivot_key = None
for key, tensor in tensors.items():
if batch_size is None:
batch_size = tensor.shape[:num_batch_dims]
pivot_key = key
else:
current_batch = tensor.shape[:num_batch_dims]
assert batch_size == current_batch, (
f"Not all the tensor in tensors have the same batch size with batch_dims={num_batch_dims}. "
f"Got {pivot_key} has {batch_size}, {key} has {current_batch}."
)
for key, value in non_tensors.items():
if not isinstance(value, np.ndarray) or value.dtype != np.dtype(object):
non_tensors[key] = np.array(value, dtype=object)
tensor_dict = TensorDict(source=tensors, batch_size=batch_size) if tensors else None
return cls(batch=tensor_dict, non_tensor_batch=non_tensors, meta_info=meta_info)
def to(self, device: torch.device, non_blocking: bool = False) -> "DataProto":
"""Move the batch to device
Args:
device (torch.device): the device to move to.
non_blocking (bool, optional): whether to use non-blocking mode. Defaults to False.
Returns:
DataProto: the current DataProto.
NOTE: remember to use torch.cuda.synchronize() after self.to("cpu") to avoid weird number
"""
if self.batch is not None:
self.batch = self.batch.to(device, non_blocking=non_blocking)
return self
def select(
self,
batch_keys: Optional[list[str]] = None,
non_tensor_batch_keys: Optional[list[str]] = None,
meta_info_keys: Optional[list[str]] = None,
deepcopy: bool = False,
) -> "DataProto":
"""Select a subset of the DataProto via batch_keys and meta_info_keys
Args:
batch_keys (list, optional): a list of strings indicating the keys in batch to select
meta_info_keys (list, optional): a list of keys indicating the meta info to select
Returns:
DataProto: the DataProto with the selected batch_keys and meta_info_keys
"""
# TODO (zhangchi.usc1992) whether to copy
if batch_keys is not None:
batch_keys = tuple(filter(lambda k: k in self.batch, batch_keys))
sub_batch = self.batch.select(*batch_keys)
else:
sub_batch = self.batch
if non_tensor_batch_keys is not None:
# we must convert it to tuple to avoid the missing elements
non_tensor_batch_keys = tuple(filter(lambda k: k in self.non_tensor_batch, non_tensor_batch_keys))
non_tensor_batch = {k: v for k, v in self.non_tensor_batch.items() if k in non_tensor_batch_keys}
else:
non_tensor_batch = self.non_tensor_batch
if deepcopy:
non_tensor_batch = copy.deepcopy(non_tensor_batch)
if meta_info_keys is not None:
meta_info_keys = tuple(filter(lambda k: k in self.meta_info, meta_info_keys))
sub_meta_info = {k: v for k, v in self.meta_info.items() if k in meta_info_keys}
else:
sub_meta_info = self.meta_info
if deepcopy:
sub_meta_info = copy.deepcopy(sub_meta_info)
return DataProto(batch=sub_batch, non_tensor_batch=non_tensor_batch, meta_info=sub_meta_info)
def index_select(self, index: Union[list[int], NDArray, torch.Tensor]) -> "DataProto":
"""Select a subset of the DataProto via index.
Args:
index (list, ndarray, torch.Tensor): a list of indices to select.
Returns:
DataProto: the DataProto containing the selected indices.
"""
if isinstance(index, list):
index = np.array(index, dtype=bool if isinstance(index[0], bool) else np.int32)
elif isinstance(index, torch.Tensor):
index = index.detach().cpu().numpy()
tensor_data = self.batch[index] if self.batch is not None else None
non_tensor_data = {key: value[index] for key, value in self.non_tensor_batch.items()}
return DataProto(batch=tensor_data, non_tensor_batch=non_tensor_data, meta_info=self.meta_info)
def slice_select(
self, start: Optional[int] = None, end: Optional[int] = None, step: Optional[int] = None
) -> "DataProto":
"""Select a subset of the DataProto via slice.
Args:
start (int, optional): the start index of the slice.
end (int, optional): the end index of the slice.
step (int, optional): the step of the slice.
Returns:
DataProto: the DataProto containing the selected slice.
"""
index = slice(start, end, step)
tensor_data = self.batch[index] if self.batch is not None else None
non_tensor_data = {key: value[index] for key, value in self.non_tensor_batch.items()}
return DataProto(batch=tensor_data, non_tensor_batch=non_tensor_data, meta_info=self.meta_info)
def pop(
self,
batch_keys: Optional[list[str]] = None,
non_tensor_batch_keys: Optional[list[str]] = None,
meta_info_keys: Optional[list[str]] = None,
) -> "DataProto":
"""Pop a subset of the DataProto via `batch_keys` and `meta_info_keys`
Args:
batch_keys (list, optional): a list of strings indicating the keys in batch to pop
meta_info_keys (list, optional): a list of keys indicating the meta info to pop
Returns:
DataProto: the DataProto with the poped batch_keys and meta_info_keys
"""
assert batch_keys is not None
non_tensor_batch_keys = non_tensor_batch_keys or []
meta_info_keys = meta_info_keys or []
tensors = {}
for key in filter(lambda k: k in self.batch, batch_keys):
tensors[key] = self.batch.pop(key)
non_tensors = {}
for key in filter(lambda k: k in self.non_tensor_batch, non_tensor_batch_keys):
non_tensors[key] = self.non_tensor_batch.pop(key)
meta_info = {}
for key in filter(lambda k: k in self.meta_info, meta_info_keys):
meta_info[key] = self.meta_info.pop(key)
return DataProto.from_dict(tensors=tensors, non_tensors=non_tensors, meta_info=meta_info)
def rename(
self, old_keys: Optional[Union[str, list[str]]] = None, new_keys: Optional[Union[str, list[str]]] = None
) -> "DataProto":
"""
Note that this function only rename the key in the batch
"""
def validate_input(keys):
if keys is not None:
if isinstance(keys, str):
keys = [keys]
elif isinstance(keys, list):
pass
else:
raise TypeError(f"keys must be a list or a string, but got {type(keys)}")
return keys
old_keys = validate_input(old_keys)
new_keys = validate_input(new_keys)
if len(new_keys) != len(old_keys):
raise ValueError(
f"new_keys and old_keys must have the same length, but got {len(new_keys)} and {len(old_keys)}"
)
self.batch.rename_key_(tuple(old_keys), tuple(new_keys))
return self
def union(self, other: "DataProto") -> "DataProto":
"""Union with another DataProto. Union batch and meta_info separately.
Throw an error if
- there are conflict keys in batch and they are not equal
- the batch size of two data batch is not the same
- there are conflict keys in meta_info and they are not the same.
Args:
other (DataProto): another DataProto to union
Returns:
DataProto: the DataProto after union
"""
self.batch = union_tensor_dict(self.batch, other.batch)
self.non_tensor_batch = union_numpy_dict(self.non_tensor_batch, other.non_tensor_batch)
self.meta_info = union_two_dict(self.meta_info, other.meta_info)
return self
def make_iterator(
self, mini_batch_size: int, epochs: int, seed: int = None, dataloader_kwargs: dict[str, Any] = None
):
"""Make an iterator from the DataProto. This is built upon that TensorDict can be used as a normal Pytorch
dataset. See https://pytorch.org/tensordict/tutorials/data_fashion for more details.
Args:
mini_batch_size (int): mini-batch size when iterating the dataset. We require that
``batch.batch_size[0] % mini_batch_size == 0``
epochs (int): number of epochs when iterating the dataset.
dataloader_kwargs: internally, it returns a DataLoader over the batch.
The dataloader_kwargs is the kwargs passed to the DataLoader
Returns:
Iterator: an iterator that yields a mini-batch data at a time. The total number of iteration steps is
``self.batch.batch_size * epochs // mini_batch_size``
"""
assert self.batch.batch_size[0] % mini_batch_size == 0, f"{self.batch.batch_size[0]} % {mini_batch_size} != 0"
if seed is not None:
generator = torch.Generator()
generator.manual_seed(seed)
else:
generator = None
dataloader_kwargs = dataloader_kwargs or {}
assert isinstance(dataloader_kwargs, dict)
train_dataloader = DataLoader(
dataset=self,
batch_size=mini_batch_size,
collate_fn=collate_fn,
generator=generator,
**dataloader_kwargs,
)
def get_data():
for _ in range(epochs):
for data in train_dataloader:
setattr(data, "meta_info", self.meta_info)
yield data
return iter(get_data())
def chunk(self, chunks: int) -> list["DataProto"]:
"""Split the batch among dim=0 into chunks. The meta_info is passed to each DataProto after split.
Args:
chunks (int): the number of chunks to split on dim=0
Returns:
List[DataProto]: a list of DataProto after splitting
"""
assert len(self) % chunks == 0, (
f"only support equal chunk. Got size of DataProto {len(self)} and chunk {chunks}."
)
if self.batch is not None:
batch_lst = self.batch.chunk(chunks=chunks, dim=0)
else:
batch_lst = [None for _ in range(chunks)]
non_tensor_batch_lst = [{} for _ in range(chunks)]
for key, value in self.non_tensor_batch.items():
non_tensor_lst = np.array_split(value, chunks)
for i in range(chunks):
non_tensor_batch_lst[i][key] = non_tensor_lst[i]
return [
DataProto(batch=batch_lst[i], non_tensor_batch=non_tensor_batch_lst[i], meta_info=self.meta_info)
for i in range(chunks)
]
def split(self, split_size: int) -> list["DataProto"]:
"""Split the batch among dim=0 into chunks. The meta_info is passed to each DataProto after split.
Args:
split_size (int): the size of each split
Returns:
List[DataProto]: a list of DataProto after splitting
"""
assert len(self) % split_size == 0, (
f"only support equal split. Got size of DataProto {len(self)} and split {split_size}."
)
chunks = len(self) // split_size
return self.chunk(chunks)
@staticmethod
def concat(data: list["DataProto"]) -> "DataProto":
"""Concat a list of DataProto. The batch is concatenated among dim=0.
The meta_info is assumed to be identical and will use the first one.
Args:
data (List[DataProto]): list of DataProto
Returns:
DataProto: concatenated DataProto
"""
batch_lst = [batch.batch for batch in data]
new_batch = torch.cat(batch_lst, dim=0) if batch_lst[0] is not None else None
non_tensor_batch = batch_collate([d.non_tensor_batch for d in data])
for key, value in non_tensor_batch.items():
non_tensor_batch[key] = np.concatenate(value, axis=0)
return DataProto(batch=new_batch, non_tensor_batch=non_tensor_batch, meta_info=data[0].meta_info)
def reorder(self, indices: torch.Tensor) -> None:
"""
Note that this operation is in-place
"""
indices_np = indices.detach().numpy()
self.batch = self.batch[indices]
self.non_tensor_batch = {key: value[indices_np] for key, value in self.non_tensor_batch.items()}
def repeat(self, repeat_times: int, interleave: bool = True) -> "DataProto":
"""
Repeat the batch data a specified number of times.
Args:
repeat_times (int): Number of times to repeat the data.
interleave (bool): Whether to interleave the repeated data.
Returns:
DataProto: A new DataProto with repeated data.
"""
if self.batch is not None:
if interleave: # interleave the data
repeated_tensors = {
key: tensor.repeat_interleave(repeat_times, dim=0) for key, tensor in self.batch.items()
}
else: # stack the data
repeated_tensors = {
key: tensor.unsqueeze(0).expand(repeat_times, *tensor.shape).reshape(-1, *tensor.shape[1:])
for key, tensor in self.batch.items()
}
repeated_batch = TensorDict(
source=repeated_tensors,
batch_size=(self.batch.batch_size[0] * repeat_times,),
)
else:
repeated_batch = None
repeated_non_tensor_batch = {}
for key, value in self.non_tensor_batch.items():
if interleave:
repeated_non_tensor_batch[key] = np.repeat(value, repeat_times, axis=0)
else:
repeated_non_tensor_batch[key] = np.tile(value, (repeat_times,) + (1,) * (value.ndim - 1))
return DataProto(
batch=repeated_batch,
non_tensor_batch=repeated_non_tensor_batch,
meta_info=self.meta_info,
)
@dataclass
class DataProtoFuture:
"""
DataProtoFuture aims to eliminate actual data fetching on driver. By doing so, the driver doesn't have to wait
for data so that asynchronous execution becomes possible.
DataProtoFuture contains a list of futures from another WorkerGroup of size world_size.
- collect_fn is a Callable that reduces the list of futures to a DataProto
- dispatch_fn is a Callable that partitions the DataProto into a list of DataProto of size world_size and then select
Potential issue: we can optimize dispatch_fn(collect_fn) such that only needed data is fetched on destination
- DataProtoFuture only supports directly passing from the output of a method to another input. You can't perform any
operation on the DataProtoFuture in driver.
"""
collect_fn: Callable
futures: list[ray.ObjectRef]
dispatch_fn: Callable = None
@staticmethod
def concat(data: list[ray.ObjectRef]) -> "DataProtoFuture":
output = DataProtoFuture(collect_fn=DataProto.concat, futures=data)
return output
def chunk(self, chunks: int) -> list["DataProtoFuture"]:
from functools import partial
arg_future_lst = []
for i in range(chunks):
# note that we can't directly pass i and chunks
def dispatch_fn(x, i, chunks):
return x.chunk(chunks=chunks)[i]
arg_future = DataProtoFuture(
collect_fn=self.collect_fn, dispatch_fn=partial(dispatch_fn, i=i, chunks=chunks), futures=self.futures
)
arg_future_lst.append(arg_future)
return arg_future_lst
def get(self):
outputs = ray.get(self.futures) # dp_size
for output in outputs:
assert isinstance(output, DataProto)
outputs = self.collect_fn(outputs) # select dp, concat
if self.dispatch_fn is not None:
outputs = self.dispatch_fn(outputs) # split in batch dim, select using dp
return outputs
def allgather_dict_tensors(
tensors: Union[dict[str, torch.Tensor], TensorDict], size: int, group: ProcessGroup, dim: int = 0
) -> Union[dict[str, torch.Tensor], TensorDict]:
"""
TODO: optimize this.
- We can use async ops
- We can use only one allgather
"""
if isinstance(tensors, TensorDict):
is_tensor_dict = True
tensors_as_dict = tensors.to_dict()
else:
tensors_as_dict = tensors
is_tensor_dict = False
output = {}
sorted_keys = sorted(tensors_as_dict.keys())
for key in sorted_keys:
value = tensors_as_dict[key]
output[key] = [torch.empty_like(value) for _ in range(size)]
torch.distributed.all_gather(output[key], value, group=group, async_op=False)
output[key] = torch.cat(output[key], dim=dim)
if is_tensor_dict:
output = TensorDict(source=output, batch_size=tensors.batch_size[0] * size)
return output
def all_gather_data_proto(data: DataProto, size: int, group: ProcessGroup) -> None:
# Note that this is an inplace operator just like torch.distributed.all_gather
prev_device = data.batch.device
data.batch = data.batch.cuda(device=torch.cuda.current_device())
data.batch = allgather_dict_tensors(data.batch.contiguous(), size=size, group=group, dim=0)
data.batch = data.batch.to(prev_device)
# all gather non_tensor_batch
all_non_tensor_batch = [None for _ in range(size)]
torch.distributed.all_gather_object(all_non_tensor_batch, data.non_tensor_batch, group=group)
data.non_tensor_batch = {k: np.concatenate([d[k] for d in all_non_tensor_batch]) for k in data.non_tensor_batch}
|