File size: 55,049 Bytes
62dca4c | 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 | import math
import warnings
from typing import List, Optional, Tuple
import torch
import torch.distributed as dist
import torch.nn as nn
import torch.nn.functional as F
from torch.nn.attention.flex_attention import create_block_mask, flex_attention
from transformers.activations import ACT2FN
from transformers.cache_utils import Cache
from transformers.models.llama.configuration_llama import LlamaConfig
from yunchang.comm import SeqAllToAll4D
from specforge.modeling.draft.flex_attention import (
compile_friendly_create_block_mask,
compile_friendly_flex_attention,
generate_eagle3_mask,
)
from specforge.utils import print_with_rank
from ...distributed import get_sp_ring_group, get_sp_ulysses_group
from ...layers.ring import ring_flash_attn_func
from .base import Eagle3DraftModel
try:
from flash_attn import flash_attn_func
except ImportError:
warnings.warn(
"flash_attn is not found, falling back to flex_attention. "
"Please install flash_attn if you want to use the flash attention backend."
)
flash_attn_func = None
# Copied from transformers.models.bart.modeling_bart._make_causal_mask
def _make_causal_mask(
input_ids_shape: torch.Size,
dtype: torch.dtype,
device: torch.device,
past_key_values_length: int = 0,
):
"""
Make causal mask used for bi-directional self-attention.
"""
bsz, tgt_len = input_ids_shape
mask = torch.full((tgt_len, tgt_len), torch.finfo(dtype).min, device=device)
mask_cond = torch.arange(mask.size(-1), device=device)
mask.masked_fill_(mask_cond < (mask_cond + 1).view(mask.size(-1), 1), 0)
mask = mask.to(dtype)
if past_key_values_length > 0:
mask = torch.cat(
[
torch.zeros(
tgt_len, past_key_values_length, dtype=dtype, device=device
),
mask,
],
dim=-1,
)
return mask[None, None, :, :].expand(
bsz, 1, tgt_len, tgt_len + past_key_values_length
)
# Copied from transformers.models.bart.modeling_bart._expand_mask
def _expand_mask(mask: torch.Tensor, dtype: torch.dtype, tgt_len: Optional[int] = None):
"""
Expands attention_mask from `[bsz, seq_len]` to `[bsz, 1, tgt_seq_len, src_seq_len]`.
"""
bsz, src_len = mask.size()
tgt_len = tgt_len if tgt_len is not None else src_len
expanded_mask = mask[:, None, None, :].expand(bsz, 1, tgt_len, src_len).to(dtype)
inverted_mask = 1.0 - expanded_mask
return inverted_mask.masked_fill(
inverted_mask.to(torch.bool), torch.finfo(dtype).min
)
def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor:
"""
This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). The hidden states go from (batch,
num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim)
"""
batch, num_key_value_heads, slen, head_dim = hidden_states.shape
if n_rep == 1:
return hidden_states
hidden_states = hidden_states[:, :, None, :, :].expand(
batch, num_key_value_heads, n_rep, slen, head_dim
)
return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen, head_dim)
def rotate_half(x):
"""Rotates half the hidden dims of the input."""
x1 = x[..., : x.shape[-1] // 2]
x2 = x[..., x.shape[-1] // 2 :]
return torch.cat((-x2, x1), dim=-1)
@torch.compile(dynamic=True)
def apply_rotary_pos_emb(q, k, cos, sin, position_ids, unsqueeze_dim=1):
# The first two dimensions of cos and sin are always 1, so we can `squeeze` them.
cos = cos.squeeze(1).squeeze(0) # [seq_len, dim]
sin = sin.squeeze(1).squeeze(0) # [seq_len, dim]
cos = cos[position_ids].unsqueeze(unsqueeze_dim) # [bs, 1, seq_len, dim]
sin = sin[position_ids].unsqueeze(unsqueeze_dim) # [bs, 1, seq_len, dim]
q_embed = (q * cos) + (rotate_half(q) * sin)
k_embed = (k * cos) + (rotate_half(k) * sin)
return q_embed, k_embed
def apply_multimodal_rotary_pos_emb(q, k, cos, sin, mrope_section, unsqueeze_dim=1):
"""Applies Rotary Position Embedding with Multimodal Sections to the query and key tensors (https://qwenlm.github.io/blog/qwen2-vl/).
Explanation:
Multimodal 3D rotary position embedding is an extension to 1D rotary position embedding. The input embedding
sequence contains vision (images / videos) embedding and text embedding or just contains text embedding. For
vision embedding part, we apply rotary position embedding on temporal, height and width dimension separately.
Here we split the channel dimension to 3 chunks for the temporal, height and width rotary position embedding.
For text embedding part, we just apply 1D rotary position embedding. The three rotary position index (temporal,
height and width) of text embedding is always the same, so the text embedding rotary position embedding has no
difference with modern LLMs.
Args:
q (`torch.Tensor`): The query tensor.
k (`torch.Tensor`): The key tensor.
cos (`torch.Tensor`): The cosine part of the rotary embedding.
sin (`torch.Tensor`): The sine part of the rotary embedding.
position_ids (`torch.Tensor`):
The position indices of the tokens corresponding to the query and key tensors. For example, this can be
used to pass offsetted position ids when working with a KV-cache.
mrope_section(`List(int)`):
Multimodal rope section is for channel dimension of temporal, height and width in rope calculation.
unsqueeze_dim (`int`, *optional*, defaults to 1):
The 'unsqueeze_dim' argument specifies the dimension along which to unsqueeze cos[position_ids] and
sin[position_ids] so that they can be properly broadcasted to the dimensions of q and k. For example, note
that cos[position_ids] and sin[position_ids] have the shape [batch_size, seq_len, head_dim]. Then, if q and
k have the shape [batch_size, heads, seq_len, head_dim], then setting unsqueeze_dim=1 makes
cos[position_ids] and sin[position_ids] broadcastable to the shapes of q and k. Similarly, if q and k have
the shape [batch_size, seq_len, heads, head_dim], then set unsqueeze_dim=2.
Returns:
`tuple(torch.Tensor)` comprising of the query and key tensors rotated using the Rotary Position Embedding.
"""
mrope_section = mrope_section * 2
cos = torch.cat(
[m[i % 3] for i, m in enumerate(cos.split(mrope_section, dim=-1))], dim=-1
).unsqueeze(unsqueeze_dim)
sin = torch.cat(
[m[i % 3] for i, m in enumerate(sin.split(mrope_section, dim=-1))], dim=-1
).unsqueeze(unsqueeze_dim)
q_embed = (q * cos) + (rotate_half(q) * sin)
k_embed = (k * cos) + (rotate_half(k) * sin)
return q_embed, k_embed
def prepare_decoder_attention_mask(
attention_mask, input_shape, inputs_embeds, past_key_values_length
):
# create causal mask
# [bsz, seq_len] -> [bsz, 1, tgt_seq_len, src_seq_len]
combined_attention_mask = None
if input_shape[-1] > 1:
combined_attention_mask = _make_causal_mask(
input_shape,
inputs_embeds.dtype,
device=inputs_embeds.device,
past_key_values_length=past_key_values_length,
)
if attention_mask is not None:
# [bsz, seq_len] -> [bsz, 1, tgt_seq_len, src_seq_len]
expanded_attn_mask = _expand_mask(
attention_mask, inputs_embeds.dtype, tgt_len=input_shape[-1]
).to(inputs_embeds.device)
combined_attention_mask = (
expanded_attn_mask
if combined_attention_mask is None
else expanded_attn_mask + combined_attention_mask
)
return combined_attention_mask
class LlamaRotaryEmbedding(torch.nn.Module):
def __init__(
self,
dim,
max_position_embeddings=2048,
base=10000,
device=None,
scaling_factor=None,
low_freq_factor=None,
high_freq_factor=None,
orig_max_position=None,
):
super().__init__()
self.dim = dim
self.max_position_embeddings = max_position_embeddings
self.base = base
inv_freq = 1.0 / (
self.base ** (torch.arange(0, self.dim, 2).float().to(device) / self.dim)
)
# Llama3 style rotary embedding frequency scaling
if all(
v is not None
for v in [
scaling_factor,
low_freq_factor,
high_freq_factor,
orig_max_position,
]
):
print_with_rank(
f"Using Llama3 style rotary embedding with scaling_factor={scaling_factor}, low_freq_factor={low_freq_factor}, high_freq_factor={high_freq_factor}, orig_max_position={orig_max_position}"
)
self.scaling_factor = scaling_factor
self.low_freq_factor = low_freq_factor
self.high_freq_factor = high_freq_factor
self.orig_max_position = orig_max_position
low_freq_wavelen = orig_max_position / low_freq_factor
high_freq_wavelen = orig_max_position / high_freq_factor
wave_len = 2 * math.pi / inv_freq
if low_freq_factor != high_freq_factor:
smooth = (orig_max_position / wave_len - low_freq_factor) / (
high_freq_factor - low_freq_factor
)
else:
smooth = 0
new_freqs = torch.where(
wave_len < high_freq_wavelen,
inv_freq,
torch.where(
wave_len > low_freq_wavelen,
inv_freq / self.scaling_factor,
(1 - smooth) * inv_freq / self.scaling_factor + smooth * inv_freq,
),
)
inv_freq = new_freqs
self.register_buffer("inv_freq", inv_freq, persistent=False)
# Build here to make `torch.jit.trace` work.
self._set_cos_sin_cache(
seq_len=max_position_embeddings + 20,
device=self.inv_freq.device,
dtype=torch.get_default_dtype(),
)
def _set_cos_sin_cache(self, seq_len, device, dtype):
self.max_seq_len_cached = seq_len
t = torch.arange(
self.max_seq_len_cached, device=device, dtype=self.inv_freq.dtype
)
freqs = torch.einsum("i,j->ij", t, self.inv_freq)
# Different from paper, but it uses a different permutation in order to obtain the same calculation
emb = torch.cat((freqs, freqs), dim=-1)
self.register_buffer(
"cos_cached", emb.cos()[None, None, :, :].to(dtype), persistent=False
)
self.register_buffer(
"sin_cached", emb.sin()[None, None, :, :].to(dtype), persistent=False
)
@torch.compile(dynamic=True)
def forward(self, x, seq_len=None):
# x: [bs, num_attention_heads, seq_len, head_size]
if seq_len and seq_len > self.max_seq_len_cached:
self._set_cos_sin_cache(seq_len=seq_len, device=x.device, dtype=x.dtype)
return (
self.cos_cached[:, :, :seq_len, ...].to(dtype=x.dtype),
self.sin_cached[:, :, :seq_len, ...].to(dtype=x.dtype),
)
class LlamaLinearScalingRotaryEmbedding(LlamaRotaryEmbedding):
"""LlamaRotaryEmbedding extended with linear scaling. Credits to the Reddit user /u/kaiokendev"""
def __init__(
self,
dim,
max_position_embeddings=2048,
base=10000,
device=None,
scaling_factor=1.0,
):
self.scaling_factor = scaling_factor
super().__init__(dim, max_position_embeddings, base, device)
def _set_cos_sin_cache(self, seq_len, device, dtype):
self.max_seq_len_cached = seq_len
t = torch.arange(
self.max_seq_len_cached, device=device, dtype=self.inv_freq.dtype
)
t = t / self.scaling_factor
freqs = torch.einsum("i,j->ij", t, self.inv_freq)
# Different from paper, but it uses a different permutation in order to obtain the same calculation
emb = torch.cat((freqs, freqs), dim=-1)
self.register_buffer(
"cos_cached", emb.cos()[None, None, :, :].to(dtype), persistent=False
)
self.register_buffer(
"sin_cached", emb.sin()[None, None, :, :].to(dtype), persistent=False
)
class LlamaDynamicNTKScalingRotaryEmbedding(LlamaRotaryEmbedding):
"""LlamaRotaryEmbedding extended with Dynamic NTK scaling. Credits to the Reddit users /u/bloc97 and /u/emozilla"""
def __init__(
self,
dim,
max_position_embeddings=2048,
base=10000,
device=None,
scaling_factor=1.0,
):
self.scaling_factor = scaling_factor
super().__init__(dim, max_position_embeddings, base, device)
def _set_cos_sin_cache(self, seq_len, device, dtype):
self.max_seq_len_cached = seq_len
if seq_len > self.max_position_embeddings:
base = self.base * (
(self.scaling_factor * seq_len / self.max_position_embeddings)
- (self.scaling_factor - 1)
) ** (self.dim / (self.dim - 2))
inv_freq = 1.0 / (
base ** (torch.arange(0, self.dim, 2).float().to(device) / self.dim)
)
self.register_buffer("inv_freq", inv_freq, persistent=False)
t = torch.arange(
self.max_seq_len_cached, device=device, dtype=self.inv_freq.dtype
)
freqs = torch.einsum("i,j->ij", t, self.inv_freq)
# Different from paper, but it uses a different permutation in order to obtain the same calculation
emb = torch.cat((freqs, freqs), dim=-1)
self.register_buffer(
"cos_cached", emb.cos()[None, None, :, :].to(dtype), persistent=False
)
self.register_buffer(
"sin_cached", emb.sin()[None, None, :, :].to(dtype), persistent=False
)
class LlamaMutiRotaryEmbedding(LlamaRotaryEmbedding):
def __init__(
self,
dim,
max_position_embeddings=2048,
base=10000,
device=None,
scaling_factor=1.0,
):
super().__init__(dim, max_position_embeddings, base, device)
self.scaling_factor = scaling_factor
def forward(self, x, position_ids):
# In contrast to other models, Qwen2_5_VL has different position ids for the grids
# So we expand the inv_freq to shape (3, ...)
inv_freq_expanded = (
self.inv_freq[None, None, :, None]
.float()
.expand(3, position_ids.shape[1], -1, 1)
)
position_ids_expanded = position_ids[
:, :, None, :
].float() # shape (3, bs, 1, positions)
device_type = (
x.device.type
if isinstance(x.device.type, str) and x.device.type != "mps"
else "cpu"
)
with torch.autocast(device_type=device_type, enabled=False): # Force float32
freqs = (
inv_freq_expanded.float() @ position_ids_expanded.float()
).transpose(2, 3)
emb = torch.cat((freqs, freqs), dim=-1)
cos = emb.cos() * self.scaling_factor
sin = emb.sin() * self.scaling_factor
return cos.to(dtype=x.dtype), sin.to(dtype=x.dtype)
# Inverse dim formula to find dim based on number of rotations
def yarn_find_correction_dim(
num_rotations, dim, base=10000, max_position_embeddings=2048
):
return (dim * math.log(max_position_embeddings / (num_rotations * 2 * math.pi))) / (
2 * math.log(base)
)
# Find dim range bounds based on rotations
def yarn_find_correction_range(
low_rot, high_rot, dim, base=10000, max_position_embeddings=2048
):
low = math.floor(
yarn_find_correction_dim(low_rot, dim, base, max_position_embeddings)
)
high = math.ceil(
yarn_find_correction_dim(high_rot, dim, base, max_position_embeddings)
)
return max(low, 0), min(high, dim - 1) # Clamp values just in case
def yarn_get_mscale(scale=1, mscale=1):
if scale <= 1:
return 1.0
return 0.1 * mscale * math.log(scale) + 1.0
def yarn_linear_ramp_mask(min_val, max_val, dim):
if min_val == max_val:
max_val += 0.001 # Prevent singularity
linear_func = (torch.arange(dim, dtype=torch.float32) - min_val) / (
max_val - min_val
)
ramp_func = torch.clamp(linear_func, 0, 1)
return ramp_func
class LlamaYarnRotaryEmbedding(LlamaRotaryEmbedding):
def __init__(
self,
dim,
max_position_embeddings=2048,
base=10000,
device=None,
scaling_factor=1.0,
original_max_position_embeddings=4096,
beta_fast=32,
beta_slow=1,
mscale=1,
mscale_all_dim=0,
):
self.scaling_factor = scaling_factor
self.original_max_position_embeddings = original_max_position_embeddings
self.beta_fast = beta_fast
self.beta_slow = beta_slow
self.mscale = mscale
self.mscale_all_dim = mscale_all_dim
super().__init__(dim, max_position_embeddings, base, device)
def _set_cos_sin_cache(self, seq_len, device, dtype):
self.max_seq_len_cached = seq_len
dim = self.dim
freq_extra = 1.0 / (
self.base
** (torch.arange(0, dim, 2, dtype=torch.float32, device=device) / dim)
)
freq_inter = 1.0 / (
self.scaling_factor
* self.base
** (torch.arange(0, dim, 2, dtype=torch.float32, device=device) / dim)
)
low, high = yarn_find_correction_range(
self.beta_fast,
self.beta_slow,
dim,
self.base,
self.original_max_position_embeddings,
)
inv_freq_mask = 1.0 - yarn_linear_ramp_mask(low, high, dim // 2).to(
device=device, dtype=torch.float32
)
inv_freq = freq_inter * (1 - inv_freq_mask) + freq_extra * inv_freq_mask
self.register_buffer("inv_freq", inv_freq, persistent=False)
t = torch.arange(seq_len, device=device, dtype=torch.float32)
freqs = torch.outer(t, inv_freq)
_mscale = float(
yarn_get_mscale(self.scaling_factor, self.mscale)
/ yarn_get_mscale(self.scaling_factor, self.mscale_all_dim)
)
emb = torch.cat((freqs, freqs), dim=-1)
self.register_buffer(
"cos_cached",
(emb.cos() * _mscale)[None, None, :, :].to(dtype),
persistent=False,
)
self.register_buffer(
"sin_cached",
(emb.sin() * _mscale)[None, None, :, :].to(dtype),
persistent=False,
)
class LlamaAttention(nn.Module):
"""Multi-headed attention from 'Attention Is All You Need' paper"""
def __init__(self, config):
super().__init__()
self.config = config
self.hidden_size = config.hidden_size
self.num_heads = config.num_attention_heads
if hasattr(config, "head_dim"):
self.head_dim = config.head_dim
else:
self.head_dim = self.hidden_size // self.num_heads
self.num_key_value_heads = config.num_key_value_heads
self.num_key_value_groups = self.num_heads // self.num_key_value_heads
self.max_position_embeddings = config.max_position_embeddings
self.q_proj = nn.Linear(
self.hidden_size * 2, self.num_heads * self.head_dim, bias=False
)
self.k_proj = nn.Linear(
self.hidden_size * 2, self.num_key_value_heads * self.head_dim, bias=False
)
self.v_proj = nn.Linear(
self.hidden_size * 2, self.num_key_value_heads * self.head_dim, bias=False
)
self.o_proj = nn.Linear(
self.num_heads * self.head_dim, self.hidden_size, bias=False
)
self._init_rope()
def _init_rope(self):
if self.config.rope_scaling is None:
self.rotary_emb = LlamaRotaryEmbedding(
self.head_dim,
max_position_embeddings=self.max_position_embeddings,
base=getattr(self.config, "rope_theta", 10000),
)
else:
rope_scaling = self.config.rope_scaling
def rope_get(key, default=None):
if isinstance(rope_scaling, dict):
return rope_scaling.get(key, default)
return getattr(rope_scaling, key, default)
scaling_type = rope_get("rope_type", rope_get("type"))
scaling_factor = rope_get("factor")
if scaling_type == "linear":
if scaling_factor is None:
raise ValueError(
"Linear RoPE scaling requires 'factor' in rope_scaling config."
)
self.rotary_emb = LlamaLinearScalingRotaryEmbedding(
self.head_dim,
max_position_embeddings=self.max_position_embeddings,
scaling_factor=scaling_factor,
)
elif scaling_type == "dynamic":
if scaling_factor is None:
raise ValueError(
"Dynamic RoPE scaling requires 'factor' in rope_scaling config."
)
self.rotary_emb = LlamaDynamicNTKScalingRotaryEmbedding(
self.head_dim,
max_position_embeddings=self.max_position_embeddings,
scaling_factor=scaling_factor,
)
elif scaling_type == "llama3":
# for nv type
self.rotary_emb = LlamaRotaryEmbedding(
self.head_dim,
max_position_embeddings=self.max_position_embeddings,
base=getattr(self.config, "rope_theta", 10000),
scaling_factor=(
scaling_factor if scaling_factor is not None else 1.0
),
low_freq_factor=rope_get("low_freq_factor"),
high_freq_factor=rope_get("high_freq_factor"),
orig_max_position=rope_get("original_max_position_embeddings"),
)
elif scaling_type == "mrope":
self.rotary_emb = LlamaMutiRotaryEmbedding(
self.head_dim, max_position_embeddings=self.max_position_embeddings
)
elif scaling_type == "yarn":
self.rotary_emb = LlamaYarnRotaryEmbedding(
self.head_dim,
max_position_embeddings=self.max_position_embeddings,
original_max_position_embeddings=rope_get(
"original_max_position_embeddings"
),
scaling_factor=scaling_factor,
beta_fast=rope_get("beta_fast"),
beta_slow=rope_get("beta_slow"),
mscale=rope_get("mscale"),
mscale_all_dim=rope_get("mscale_all_dim"),
)
else:
raise ValueError(f"Unknown RoPE scaling type {scaling_type}")
def _shape(self, tensor: torch.Tensor, seq_len: int, bsz: int):
return (
tensor.view(bsz, seq_len, self.num_heads, self.head_dim)
.transpose(1, 2)
.contiguous()
)
def forward(
self,
hidden_states: torch.Tensor,
cache_hidden: Optional[List[torch.Tensor]] = None,
attention_mask: Optional[torch.Tensor] = None,
position_ids: Optional[torch.LongTensor] = None,
past_key_values: Optional[Cache] = None,
output_attentions: bool = False,
use_cache: bool = False,
) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
bsz, q_len, _ = hidden_states.size()
query_states = self.q_proj(hidden_states)
key_states = self.k_proj(hidden_states)
value_states = self.v_proj(hidden_states)
query_states = query_states.view(
bsz, q_len, self.num_heads, self.head_dim
).transpose(1, 2)
key_states = key_states.view(
bsz, q_len, self.num_key_value_heads, self.head_dim
).transpose(1, 2)
value_states = value_states.view(
bsz, q_len, self.num_key_value_heads, self.head_dim
).transpose(1, 2)
if cache_hidden is None:
if isinstance(self.rotary_emb, LlamaMutiRotaryEmbedding):
cos, sin = self.rotary_emb(query_states, position_ids)
cos, sin = cos.to(query_states.device), sin.to(query_states.device)
query_states, key_states = apply_multimodal_rotary_pos_emb(
query_states,
key_states,
cos,
sin,
self.config.rope_scaling["mrope_section"],
)
else:
cos, sin = self.rotary_emb(query_states, seq_len=q_len)
cos, sin = cos.to(query_states.device), sin.to(query_states.device)
query_states, key_states = apply_rotary_pos_emb(
query_states, key_states, cos, sin, position_ids
)
key_states = repeat_kv(key_states, self.num_key_value_groups)
value_states = repeat_kv(value_states, self.num_key_value_groups)
attn_output = torch.nn.functional.scaled_dot_product_attention(
query_states,
key_states,
value_states,
attn_mask=attention_mask,
is_causal=attention_mask is None,
dropout_p=0.0,
)
else:
lck = len(cache_hidden[0])
if isinstance(self.rotary_emb, LlamaMutiRotaryEmbedding):
cos, sin = self.rotary_emb(query_states, position_ids + lck)
cos, sin = cos.to(query_states.device), sin.to(query_states.device)
query_states, key_states = apply_multimodal_rotary_pos_emb(
query_states,
key_states,
cos,
sin,
self.config.rope_scaling["mrope_section"],
)
else:
cos, sin = self.rotary_emb(query_states, seq_len=q_len + lck)
cos, sin = cos.to(query_states.device), sin.to(query_states.device)
query_states, key_states = apply_rotary_pos_emb(
query_states, key_states, cos, sin, position_ids + lck
)
key_states = repeat_kv(key_states, self.num_key_value_groups)
value_states = repeat_kv(value_states, self.num_key_value_groups)
cache_hidden[0] = cache_hidden[0] + [key_states]
cache_hidden[1] = cache_hidden[1] + [value_states]
cache_k = cache_hidden[0]
cache_v = cache_hidden[1]
k0 = cache_k[0]
v0 = cache_v[0]
# causal
attn_weights = torch.matmul(query_states, k0.transpose(2, 3)) / math.sqrt(
self.head_dim
)
lck = len(cache_k)
attn_weights = attn_weights + attention_mask
for i in range(1, lck):
ki = cache_k[i]
qi = query_states
kiq = ki
attn_weightsi = (qi * kiq).sum(-1) / math.sqrt(self.head_dim)
attn_weights = torch.cat(
(attn_weights, attn_weightsi[..., None]), dim=-1
)
# upcast attention to fp32
attn_weights = nn.functional.softmax(
attn_weights, dim=-1, dtype=torch.float32
).to(query_states.dtype)
attn_weights0 = attn_weights[..., :q_len]
attn_output = torch.matmul(attn_weights0, v0)
for i in range(1, lck):
vi = cache_v[i]
attn_weightsi = attn_weights[..., q_len + i - 1]
attn_outputi = attn_weightsi[..., None] * vi
attn_output = attn_output + attn_outputi
attn_output = attn_output.transpose(1, 2).contiguous()
attn_output = attn_output.reshape(bsz, q_len, self.head_dim * self.num_heads)
attn_output = self.o_proj(attn_output)
return attn_output
class LlamaFlexAttention(LlamaAttention):
"""
Attention layer implemented with flex attention. We keep the parameters consistent with LlamaAttention.
The used parameters are:
- hidden_states: input hidden states
- attention_mask: attention mask not expanded, straight from data loader.
- position_ids: position ids
- past_key_values: dynamic cache used for storing past key and value states.
"""
def forward(
self,
hidden_states: torch.Tensor,
cache_hidden: Optional[List[torch.Tensor]] = None,
attention_mask: Optional[torch.Tensor] = None,
position_ids: Optional[torch.LongTensor] = None,
past_key_values: Optional[Cache] = None,
output_attentions: bool = False,
use_cache: bool = False,
) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
bsz, q_len, _ = hidden_states.size()
past_seen_tokens = (
past_key_values.get_seq_length() if past_key_values is not None else 0
)
query_states = self.q_proj(hidden_states)
key_states = self.k_proj(hidden_states)
value_states = self.v_proj(hidden_states)
query_states = query_states.view(
bsz, q_len, self.num_heads, self.head_dim
).transpose(1, 2)
key_states = key_states.view(
bsz, q_len, self.num_key_value_heads, self.head_dim
).transpose(1, 2)
value_states = value_states.view(
bsz, q_len, self.num_key_value_heads, self.head_dim
).transpose(1, 2)
lck = past_seen_tokens // q_len
if isinstance(self.rotary_emb, LlamaMutiRotaryEmbedding):
cos, sin = self.rotary_emb(query_states, position_ids + lck)
cos, sin = cos.to(query_states.device), sin.to(query_states.device)
query_states, key_states = apply_multimodal_rotary_pos_emb(
query_states,
key_states,
cos,
sin,
self.config.rope_scaling["mrope_section"],
)
else:
cos, sin = self.rotary_emb(query_states, seq_len=q_len + lck)
cos, sin = cos.to(query_states.device), sin.to(query_states.device)
# Keep positions ids aligned when padding so the KV cache is unaffected.
query_states, key_states = apply_rotary_pos_emb(
query_states, key_states, cos, sin, position_ids + lck
)
cache_position: torch.Tensor = torch.arange(
past_seen_tokens, past_seen_tokens + q_len, device=hidden_states.device
)
cache_kwargs = {"sin": sin, "cos": cos, "cache_position": cache_position}
key_cache, value_cache = past_key_values.update(
key_states,
value_states,
layer_idx=0, # TODO: support multiple layers
cache_kwargs=cache_kwargs,
)
seq_lengths = attention_mask.sum(dim=-1)
# Shrink the attention mask to align with the padding to the right.
# This is equivalent to the shrinking logic in eagle3.py
seq_lengths -= lck
# TODO: Remove the usage of uncompiled create_block_mask after
# https://github.com/pytorch/pytorch/issues/160018
if q_len <= 128:
create_block_mask_func = create_block_mask
flex_attention_func = flex_attention
else:
create_block_mask_func = compile_friendly_create_block_mask
flex_attention_func = compile_friendly_flex_attention
block_mask = create_block_mask_func(
mask_mod=generate_eagle3_mask(
seq_lengths=seq_lengths,
Q_LEN=q_len,
KV_LEN=key_cache.shape[-2],
lck=lck,
),
B=bsz,
H=1, # Rely on broadcast
Q_LEN=q_len,
KV_LEN=key_cache.shape[-2],
device=query_states.device,
)
attn_output = flex_attention_func(
query=query_states,
key=key_cache.contiguous(),
value=value_cache.contiguous(),
block_mask=block_mask,
enable_gqa=True,
)
attn_output = attn_output.transpose(1, 2).contiguous()
attn_output = attn_output.reshape(bsz, q_len, self.head_dim * self.num_heads)
attn_output = self.o_proj(attn_output)
return attn_output
class LlamaFlashAttention(LlamaAttention):
"""
Attention layer implemented with flash attention. We keep the parameters consistent with LlamaAttention.
The used parameters are:
- hidden_states: input hidden states
- position_ids: position ids
- cache_hidden: manual cache used for storing past key and value states
"""
def forward(
self,
hidden_states: torch.Tensor,
cache_hidden: Optional[List[torch.Tensor]] = None,
attention_mask: Optional[torch.Tensor] = None,
position_ids: Optional[torch.LongTensor] = None,
past_key_values: Optional[Cache] = None,
output_attentions: bool = False,
use_cache: bool = False,
) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
bsz, q_len, _ = hidden_states.size()
query_states = self.q_proj(hidden_states)
key_states = self.k_proj(hidden_states)
value_states = self.v_proj(hidden_states)
query_states = query_states.view(bsz, q_len, self.num_heads, self.head_dim)
key_states = key_states.view(
bsz, q_len, self.num_key_value_heads, self.head_dim
)
value_states = value_states.view(
bsz, q_len, self.num_key_value_heads, self.head_dim
)
lck = 0 if cache_hidden is None else len(cache_hidden[0])
if isinstance(self.rotary_emb, LlamaMutiRotaryEmbedding):
cos, sin = self.rotary_emb(query_states, position_ids + lck)
cos, sin = cos.to(query_states.device), sin.to(query_states.device)
query_states, key_states = apply_multimodal_rotary_pos_emb(
query_states,
key_states,
cos,
sin,
self.config.rope_scaling["mrope_section"],
unsqueeze_dim=2,
)
else:
cos, sin = self.rotary_emb(query_states, seq_len=q_len + lck)
cos, sin = cos.to(query_states.device), sin.to(query_states.device)
query_states, key_states = apply_rotary_pos_emb(
query_states, key_states, cos, sin, position_ids + lck, unsqueeze_dim=2
)
if cache_hidden is not None:
cache_hidden[0] = cache_hidden[0] + [key_states]
cache_hidden[1] = cache_hidden[1] + [value_states]
cache_k = cache_hidden[0]
cache_v = cache_hidden[1]
else:
cache_k = [key_states]
cache_v = [value_states]
k0 = cache_k[0]
v0 = cache_v[0]
assert (
flash_attn_func is not None
), "flash_attn is not installed, please install flash_attn if you want to use the flash attention backend"
attn_output, lse, _ = flash_attn_func(
query_states,
k0,
v0,
dropout_p=0.0,
softmax_scale=1.0 / math.sqrt(self.head_dim),
causal=True,
return_attn_probs=True,
)
lse = lse.transpose(1, 2)
lck = len(cache_k)
if lck > 1:
q_shape_expanded = (
bsz,
q_len,
self.num_key_value_heads,
self.num_key_value_groups,
self.head_dim,
)
attn_outputs = [attn_output.view(q_shape_expanded)]
lses = [lse.view(q_shape_expanded[:-1])]
for i in range(1, lck):
ki = cache_k[i].unsqueeze(-2)
qi = query_states.view(q_shape_expanded)
vi = cache_v[i].unsqueeze(-2)
attn_outputs.append(vi)
lses.append((qi * ki).sum(-1) / math.sqrt(self.head_dim))
lse = torch.logsumexp(torch.stack(lses, dim=-1), dim=-1)
attn_output = sum(
attn_outputi * torch.exp(lsei - lse).unsqueeze(-1)
for attn_outputi, lsei in zip(attn_outputs, lses)
)
# lse is fp32, downcast attn_output back
attn_output = attn_output.to(self.o_proj.weight.dtype)
attn_output = attn_output.reshape(bsz, q_len, self.head_dim * self.num_heads)
attn_output = self.o_proj(attn_output)
return attn_output
class LlamaUSPFlashAttention(LlamaAttention):
"""
LlamaUSPFlashAttention with Trainable Ring Attention & Correct Eagle3 Branch Merging.
"""
def __init__(self, config):
super().__init__(config)
assert (
dist.is_initialized()
), f"LlamaUSPAttention requires torch.distributed; call init_distributed first."
if isinstance(self.rotary_emb, LlamaMutiRotaryEmbedding):
raise NotImplementedError(
f"LlamaMutiRotaryEmbedding is currently not supported for LlamaUSPFlashAttention."
)
self.ring_pg = get_sp_ring_group()
self.ulysses_pg = get_sp_ulysses_group()
self.sp_ring_degree = torch.distributed.get_world_size(self.ring_pg)
self.sp_ulysses_degree = torch.distributed.get_world_size(self.ulysses_pg)
self.ring_rank = torch.distributed.get_rank(self.ring_pg)
self.scatter_idx = 2
self.gather_idx = 1
self.use_sync = False
def forward(
self,
hidden_states: torch.Tensor,
cache_hidden: Optional[List[torch.Tensor]] = None,
attention_mask: Optional[torch.Tensor] = None,
position_ids: Optional[torch.LongTensor] = None,
past_key_values: Optional[Cache] = None,
output_attentions: bool = False,
use_cache: bool = False,
) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
bsz, q_len, _ = hidden_states.size()
local_q_len = q_len
# =============================================================
# 1. Projections & Ulysses Scatter
# =============================================================
query_states = self.q_proj(hidden_states)
query_states = query_states.view(bsz, q_len, self.num_heads, self.head_dim)
query_states = SeqAllToAll4D.apply(
self.ulysses_pg,
query_states,
self.scatter_idx,
self.gather_idx,
self.use_sync,
)
key_states = self.k_proj(hidden_states)
key_states = key_states.view(
bsz, q_len, self.num_key_value_heads, self.head_dim
)
key_states = SeqAllToAll4D.apply(
self.ulysses_pg,
key_states,
self.scatter_idx,
self.gather_idx,
self.use_sync,
)
value_states = self.v_proj(hidden_states)
value_states = value_states.view(
bsz, q_len, self.num_key_value_heads, self.head_dim
)
value_states = SeqAllToAll4D.apply(
self.ulysses_pg,
value_states,
self.scatter_idx,
self.gather_idx,
self.use_sync,
)
current_q_len = query_states.shape[1]
local_num_heads = query_states.shape[2]
# Global length calculation (for RoPE)
global_q_len = q_len * self.sp_ring_degree * self.sp_ulysses_degree
# =============================================================
# 2. RoPE & Cache Management
# =============================================================
lck = 0 if cache_hidden is None else len(cache_hidden[0])
cos, sin = self.rotary_emb(query_states, seq_len=global_q_len + lck)
cos, sin = cos.to(query_states.device), sin.to(query_states.device)
query_states, key_states = apply_rotary_pos_emb(
query_states, key_states, cos, sin, position_ids + lck, unsqueeze_dim=2
)
# Update Cache (Eagle3 Logic: Cache is a list of tensors for tree branches)
if cache_hidden is not None:
cache_hidden[0] = cache_hidden[0] + [key_states]
cache_hidden[1] = cache_hidden[1] + [value_states]
cache_k = cache_hidden[0]
cache_v = cache_hidden[1]
else:
cache_k = [key_states]
cache_v = [value_states]
# =============================================================
# 3. Hybrid Attention Computation
# =============================================================
# 3.1 Main Sequence (Ring Attention)
out_ring, lse_ring, _ = ring_flash_attn_func(
query_states,
cache_k[0],
cache_v[0],
dropout_p=0.0,
softmax_scale=1.0 / math.sqrt(self.head_dim),
causal=True,
window_size=(-1, -1),
alibi_slopes=None,
deterministic=False,
return_attn_probs=True,
group=self.ring_pg,
)
if lse_ring.dim() == 3 and lse_ring.shape[1] == local_num_heads:
acc_lse = lse_ring.transpose(1, 2).contiguous() # -> [B, S, H]
else:
acc_lse = lse_ring
assert (
acc_lse.shape[1] == current_q_len
), f"LSE seq_len {acc_lse.shape[1]} mismatch with Query seq_len {current_q_len}"
acc_out = out_ring
# 3.2 Extras Branches (Eagle3 Point-wise Update)
if len(cache_k) > 1:
num_kv_heads_local = cache_k[0].shape[2]
local_groups = local_num_heads // num_kv_heads_local
q_shape_expanded = (
bsz,
current_q_len,
num_kv_heads_local,
local_groups,
self.head_dim,
)
qi_reshaped = query_states.view(q_shape_expanded) # [B, S, KV, G, D]
for i in range(1, len(cache_k)):
ki = cache_k[i] # [B, S, KV, D]
vi = cache_v[i] # [B, S, KV, D]
ki_expanded = ki.unsqueeze(-2) # [B, S, KV, 1, D]
# Dot Product: [B, S, KV, G]
score_i = (qi_reshaped * ki_expanded).sum(-1) / math.sqrt(self.head_dim)
# Flatten back to [B, S, H_local]
step_lse = score_i.view(bsz, current_q_len, -1)
vi_expanded = vi.unsqueeze(-2)
step_out = vi_expanded.expand(q_shape_expanded).reshape(acc_out.shape)
# Online Softmax Update
new_lse = torch.logaddexp(acc_lse, step_lse)
acc_out = acc_out * torch.exp(acc_lse - new_lse).unsqueeze(
-1
) + step_out * torch.exp(step_lse - new_lse).unsqueeze(-1)
acc_lse = new_lse
attn_output = acc_out.to(query_states.dtype)
# =============================================================
# 4. Ulysses Gather & Output Projection
# =============================================================
attn_output = SeqAllToAll4D.apply(
self.ulysses_pg,
attn_output,
self.gather_idx, # Scatter idx: 1 (Seq)
self.scatter_idx, # Gather idx: 2 (Heads)
self.use_sync,
)
attn_output = attn_output.reshape(
bsz, local_q_len, self.head_dim * self.num_heads
)
attn_output = self.o_proj(attn_output)
return attn_output
class LlamaMLP(nn.Module):
def __init__(self, config):
super().__init__()
self.config = config
self.hidden_size = config.hidden_size
self.intermediate_size = config.intermediate_size
self.gate_proj = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
self.up_proj = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
self.down_proj = nn.Linear(self.intermediate_size, self.hidden_size, bias=False)
self.act_fn = ACT2FN[config.hidden_act]
def forward(self, x):
if self.config.pretraining_tp > 1:
slice = self.intermediate_size // self.config.pretraining_tp
gate_proj_slices = self.gate_proj.weight.split(slice, dim=0)
up_proj_slices = self.up_proj.weight.split(slice, dim=0)
down_proj_slices = self.down_proj.weight.split(slice, dim=1)
gate_proj = torch.cat(
[
F.linear(x, gate_proj_slices[i])
for i in range(self.config.pretraining_tp)
],
dim=-1,
)
up_proj = torch.cat(
[
F.linear(x, up_proj_slices[i])
for i in range(self.config.pretraining_tp)
],
dim=-1,
)
intermediate_states = (self.act_fn(gate_proj) * up_proj).split(slice, dim=2)
down_proj = [
F.linear(intermediate_states[i], down_proj_slices[i])
for i in range(self.config.pretraining_tp)
]
down_proj = sum(down_proj)
else:
down_proj = self.down_proj(self.act_fn(self.gate_proj(x)) * self.up_proj(x))
return down_proj
class LlamaRMSNorm(nn.Module):
def __init__(self, hidden_size, eps=1e-6):
"""
LlamaRMSNorm is equivalent to T5LayerNorm
"""
super().__init__()
self.weight = nn.Parameter(torch.ones(hidden_size))
self.variance_epsilon = eps
@torch.compile(dynamic=True)
def forward(self, hidden_states):
input_dtype = hidden_states.dtype
hidden_states = hidden_states.to(torch.float32)
variance = hidden_states.pow(2).mean(-1, keepdim=True)
hidden_states = hidden_states * torch.rsqrt(variance + self.variance_epsilon)
return self.weight * hidden_states.to(input_dtype)
class LlamaDecoderLayer(nn.Module):
def __init__(self, config, attention_backend: str = "sdpa"):
super().__init__()
self.hidden_size = config.hidden_size
if attention_backend == "sdpa":
self.self_attn = LlamaAttention(config=config)
elif attention_backend == "flex_attention":
print_with_rank("Using flex attention on draft model training!")
self.self_attn = LlamaFlexAttention(config=config)
elif attention_backend == "fa":
self.self_attn = LlamaFlashAttention(config=config)
elif attention_backend == "usp":
self.self_attn = LlamaUSPFlashAttention(config=config)
else:
raise ValueError(f"Unknown attention backend {attention_backend}")
self.attention_backend = attention_backend
self.mlp = LlamaMLP(config)
# self.fc = nn.Linear(config.hidden_size * 2, config.hidden_size)
self.hidden_norm = LlamaRMSNorm(config.hidden_size, eps=config.rms_norm_eps)
self.input_layernorm = LlamaRMSNorm(config.hidden_size, eps=config.rms_norm_eps)
# if self.index!=0:
self.post_attention_layernorm = LlamaRMSNorm(
config.hidden_size, eps=config.rms_norm_eps
)
def forward(
self,
input_emb: torch.Tensor,
hidden_states: torch.Tensor,
cache_hidden: List[List[torch.Tensor]] = None,
attention_mask: Optional[torch.Tensor] = None,
position_ids: Optional[torch.LongTensor] = None,
past_key_values: Optional[Cache] = None,
output_attentions: Optional[bool] = False,
use_cache: Optional[bool] = False,
) -> Tuple[
torch.FloatTensor, Optional[Tuple[torch.FloatTensor, torch.FloatTensor]]
]:
"""
Args:
hidden_states (`torch.FloatTensor`): input to the layer of shape `(batch, seq_len, embed_dim)`
attention_mask (`torch.FloatTensor`, *optional*): attention mask of size
`(batch, 1, tgt_len, src_len)` where padding elements are indicated by very large negative values.
output_attentions (`bool`, *optional*):
Whether or not to return the attentions tensors of all attention layers. See `attentions` under
returned tensors for more detail.
use_cache (`bool`, *optional*):
If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding
(see `past_key_values`).
past_key_values (`Cache`, *optional*): cached past key and value projection states
"""
residual = hidden_states
hidden_states = self.hidden_norm(hidden_states)
input_emb = self.input_layernorm(input_emb)
hidden_states = torch.cat((input_emb, hidden_states), dim=-1)
# Self Attention
hidden_states = self.self_attn(
cache_hidden=cache_hidden,
hidden_states=hidden_states,
attention_mask=attention_mask,
position_ids=position_ids,
past_key_values=past_key_values,
output_attentions=output_attentions,
use_cache=use_cache,
)
hidden_states = residual + hidden_states
# Fully Connected
residual = hidden_states
hidden_states = self.post_attention_layernorm(hidden_states)
hidden_states = self.mlp(hidden_states)
hidden_states = residual + hidden_states
# outputs = (hidden_states, return_hidden)
return hidden_states
class LlamaForCausalLMEagle3(Eagle3DraftModel):
config_class = LlamaConfig
def __init__(self, config, quant_config=None, attention_backend="sdpa") -> None:
super().__init__(config)
self.config = config
self.quant_config = quant_config
self.vocab_size = config.vocab_size
self.draft_vocab_size = config.draft_vocab_size
self.embed_tokens = nn.Embedding(
config.vocab_size, config.hidden_size, config.pad_token_id
)
self.midlayer = LlamaDecoderLayer(config, attention_backend=attention_backend)
if hasattr(config, "target_hidden_size"):
self.fc = torch.nn.Linear(
config.target_hidden_size * 3, config.hidden_size, bias=False
)
else:
self.fc = torch.nn.Linear(
config.hidden_size * 3, config.hidden_size, bias=False
)
self.norm = LlamaRMSNorm(config.hidden_size, eps=config.rms_norm_eps)
self.lm_head = nn.Linear(
config.hidden_size, config.draft_vocab_size, bias=False
)
# create vocab buffers
t2d = torch.ones(self.vocab_size, dtype=torch.bool)
d2t = torch.zeros(self.draft_vocab_size, dtype=torch.int64)
self.register_buffer("t2d", t2d)
self.register_buffer("d2t", d2t)
def forward(
self,
hidden_states: torch.Tensor,
inputs_embeds: torch.Tensor,
attention_mask: Optional[torch.Tensor] = None,
ttt_length: int = 1,
):
"""
Arguments:
hidden_states (`torch.FloatTensor`): input to the layer, cat low, mid high hidden_states of shape `(batch, seq_len, hidden_states * 3)`
input_ids (`torch.LongTensor`): input ids of shape `(batch, seq_len)`
attention_mask (`torch.FloatTensor`): attention mask of size
`(batch, 1, tgt_len, src_len)` where padding elements are indicated by very large negative values.
position_ids (`torch.LongTensor`, *optional*): position ids of shape `(batch, seq_len)`
"""
if ttt_length == 1:
print_with_rank("using ttt_length 1, no need to cache hidden states")
cache_hidden = None
else:
print_with_rank(f"using ttt_length {ttt_length}, caching hidden states")
cache_hidden = [[], []]
batch_size, seq_length, _ = hidden_states.size()
# make position ids
device = hidden_states.device
position_ids = torch.arange(0, seq_length, dtype=torch.long, device=device)
position_ids = position_ids.unsqueeze(0).view(-1, seq_length)
# make attention mask
if attention_mask is None:
attention_mask = torch.ones(
(batch_size, seq_length), dtype=torch.bool, device=hidden_states.device
)
attention_mask = prepare_decoder_attention_mask(
attention_mask, (batch_size, seq_length), hidden_states, 0
)
# fc
hidden_states = self.fc(hidden_states)
hidden_states = self.midlayer(
input_emb=inputs_embeds,
hidden_states=hidden_states,
cache_hidden=cache_hidden,
attention_mask=attention_mask,
position_ids=position_ids,
past_key_values=None,
output_attentions=False,
use_cache=False,
)
# norm
hidden_states = self.norm(hidden_states)
return hidden_states
def embed_input_ids(self, input_ids: torch.Tensor) -> torch.Tensor:
return self.embed_tokens(input_ids)
def project_hidden_states(self, hidden_states: torch.Tensor) -> torch.Tensor:
# eagle 3 requires hidden states from 3 layers
assert hidden_states.size(-1) == self.config.hidden_size * 3
return self.fc(hidden_states)
def compute_logits(self, hidden_states: torch.Tensor) -> torch.Tensor:
norm_hidden_states = self.norm(hidden_states)
return self.lm_head(norm_hidden_states)
def backbone(
self,
input_embeds: torch.Tensor,
hidden_states: torch.Tensor,
cache_hidden: torch.Tensor,
attention_mask: torch.Tensor,
position_ids: torch.Tensor,
past_key_values: Optional[Cache] = None,
use_cache: bool = True,
) -> torch.Tensor:
return self.midlayer(
input_emb=input_embeds,
hidden_states=hidden_states,
cache_hidden=cache_hidden,
attention_mask=attention_mask,
position_ids=position_ids,
past_key_values=past_key_values,
output_attentions=False,
use_cache=False,
)
|