-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathmodeling_llama_te.py
More file actions
531 lines (437 loc) · 24.4 KB
/
modeling_llama_te.py
File metadata and controls
531 lines (437 loc) · 24.4 KB
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
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: LicenseRef-Apache2
#
# 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.
"""TransformerEngine-optimized Llama model."""
import warnings
from collections import OrderedDict
from contextlib import nullcontext
from typing import ClassVar, Unpack
import torch
import torch.nn as nn
import transformer_engine.common.recipe
import transformer_engine.pytorch
import transformers
from transformer_engine.pytorch.attention import InferenceParams
from transformer_engine.pytorch.attention.inference import PagedKVCacheManager
from transformer_engine.pytorch.attention.rope import RotaryPositionEmbedding
from transformers import LlamaConfig, PreTrainedModel
from transformers.modeling_outputs import BaseModelOutputWithPast, CausalLMOutputWithPast
from transformers.models.llama.modeling_llama import LlamaRotaryEmbedding
from transformers.utils.generic import TransformersKwargs
AUTO_MAP = {
"AutoConfig": "modeling_llama_te.NVLlamaConfig",
"AutoModel": "modeling_llama_te.NVLlamaModel",
"AutoModelForCausalLM": "modeling_llama_te.NVLlamaForCausalLM",
"AutoModelForSequenceClassification": "modeling_llama_te.NVLlamaForSequenceClassification",
"AutoModelForQuestionAnswering": "modeling_llama_te.NVLlamaForQuestionAnswering",
"AutoModelForTokenClassification": "modeling_llama_te.NVLlamaForTokenClassification",
}
class NVLlamaConfig(LlamaConfig):
"""NVLlama configuration."""
# Attention input format:
# "bshd" = Batch, Sequence, Head, Dimension (standard padded format)
# "thd" = Total tokens (packed/unpadded), Head, Dimension (sequence packing format)
attn_input_format: str = "thd"
self_attn_mask_type: str = "padding_causal"
layer_precision: list[str | None] | None = None
class NVLlamaPreTrainedModel(PreTrainedModel):
"""Base class for NVLlama models."""
config_class = NVLlamaConfig
base_model_prefix = "model"
_no_split_modules = ("TransformerLayer",)
_skip_keys_device_placement = ("past_key_values",)
def init_empty_weights(self):
"""Handles moving the model from the meta device to the cuda device and initializing the weights."""
# For TE layers, calling `reset_parameters` is sufficient to move them to the cuda device and apply the weight
# initialization we passed them during module creation.
for module in self.modules():
if hasattr(module, "reset_parameters"):
module.reset_parameters()
# The embed_tokens layer is the only non-TE layer in this model we need to deal with. We use
# `model._init_weights` rather than `reset_parameters` to ensure we honor the original config standard
# deviation.
self.model.embed_tokens.to_empty(device="cuda")
self.model.embed_tokens.apply(self._init_weights)
self.model.rotary_emb.inv_freq = LlamaRotaryEmbedding(config=self.model.config).inv_freq.to("cuda")
# Meta-device init seems to break weight tying, so we re-tie the weights here.
self.tie_weights()
def _init_weights(self, module):
"""Initialize module weights.
We only use this method for standard pytorch modules, TE modules handle their own weight initialization through
`init_method` parameters and the `reset_parameters` method.
"""
if module.__module__.startswith("transformer_engine.pytorch"):
# Notably, we need to avoid calling this method for TE modules, since the default _init_weights will assume
# any class with `LayerNorm` in the name should have weights initialized to 1.0; breaking `LayerNormLinear`
# and `LayerNormMLP` modules that use `weight` for the linear layer and `layer_norm_weight` for the layer
# norm.
return
super()._init_weights(module)
def state_dict(self, *args, **kwargs):
"""Override state_dict to filter out TransformerEngine's _extra_state keys.
TransformerEngine layers add _extra_state attributes that are not compatible with
standard PyTorch/HuggingFace model loading. These are filtered out to ensure
checkpoints can be loaded with from_pretrained().
"""
state_dict = super().state_dict(*args, **kwargs)
# Filter out _extra_state keys which are TransformerEngine-specific and not loadable
return {k: v for k, v in state_dict.items() if not k.endswith("_extra_state")}
class NVLlamaModel(NVLlamaPreTrainedModel):
"""Llama3 model implemented in Transformer Engine."""
def __init__(self, config: LlamaConfig):
"""Initialize the NVLlama model."""
super().__init__(config)
self.config = config
self.padding_idx = config.pad_token_id
self.vocab_size = config.vocab_size
self.embed_tokens = nn.Embedding(config.vocab_size, config.hidden_size, self.padding_idx, dtype=config.dtype)
def _init_method(x):
torch.nn.init.normal_(x, mean=0.0, std=config.initializer_range)
self.layers = nn.ModuleList(
[
transformer_engine.pytorch.TransformerLayer(
hidden_size=config.hidden_size,
ffn_hidden_size=config.intermediate_size,
num_attention_heads=config.num_attention_heads,
bias=False,
layernorm_epsilon=config.rms_norm_eps,
hidden_dropout=0,
attention_dropout=0,
fuse_qkv_params=True,
qkv_weight_interleaved=True,
normalization="RMSNorm",
activation="swiglu",
attn_input_format=config.attn_input_format,
self_attn_mask_type=config.self_attn_mask_type,
num_gqa_groups=config.num_key_value_heads,
layer_number=layer_idx + 1,
params_dtype=config.dtype,
device="meta" if torch.get_default_device() == torch.device("meta") else "cuda",
init_method=_init_method,
output_layer_init_method=_init_method,
)
for layer_idx in range(config.num_hidden_layers)
]
)
self.norm = transformer_engine.pytorch.RMSNorm(
config.hidden_size,
eps=config.rms_norm_eps,
dtype=config.dtype,
device="meta" if torch.get_default_device() == torch.device("meta") else "cuda",
)
# We use TE's RotaryPositionEmbedding, but we ensure that we use the same inv_freq as the original
# LlamaRotaryEmbedding.
self.rotary_emb = RotaryPositionEmbedding(config.hidden_size // config.num_attention_heads)
self.rotary_emb.inv_freq = LlamaRotaryEmbedding(config=config).inv_freq
self._fp8_recipe: transformer_engine.common.recipe.Recipe | None = None
self._fp4_recipe: transformer_engine.common.recipe.Recipe | None = None
self.gradient_checkpointing = False
# Initialize weights and apply final processing
self.post_init()
def set_recipes(
self,
fp8_recipe: transformer_engine.common.recipe.Recipe | None = None,
fp4_recipe: transformer_engine.common.recipe.Recipe | None = None,
) -> None:
"""Attach quantization recipe objects for per-layer autocast.
Recipes are not serializable and must be set at runtime after model creation
and sharding (FSDP/DDP) but before training. The per-layer precision
assignments are read from ``self.config.layer_precision``.
Args:
fp8_recipe: The FP8 recipe instance (e.g., MXFP8BlockScaling), or None.
fp4_recipe: The FP4 recipe instance (e.g., NVFP4BlockScaling), or None.
"""
self._fp8_recipe = fp8_recipe
self._fp4_recipe = fp4_recipe
def get_layer_autocast(self, layer_number: int):
"""Return the appropriate TE autocast context manager for a given layer.
The context interacts with the outer FP8 autocast in the training script:
- FP8 layer: nullcontext() -- lets the outer FP8 autocast take effect.
- FP4 layer: te.pytorch.autocast(enabled=True, recipe=fp4_recipe) -- overrides to FP4.
- BF16 layer: te.pytorch.autocast(enabled=False) -- disables quantized compute.
Args:
layer_number: The 0-indexed layer number.
Returns:
A context manager for the layer's quantization mode.
"""
precision = self.config.layer_precision[layer_number] if self.config.layer_precision is not None else None
if precision == "fp8":
return nullcontext()
elif precision == "fp4":
return transformer_engine.pytorch.autocast(enabled=True, recipe=self._fp4_recipe)
else:
return transformer_engine.pytorch.autocast(enabled=False)
def forward(
self,
input_ids: torch.Tensor | None = None,
attention_mask: torch.Tensor | None = None,
position_ids: torch.Tensor | None = None,
past_key_values: InferenceParams | None = None,
inputs_embeds: torch.Tensor | None = None,
use_cache: bool | None = None,
**kwargs: Unpack[TransformersKwargs],
) -> BaseModelOutputWithPast:
"""Forward pass for the NVLlama model.
Args:
input_ids (torch.Tensor): The input ids.
attention_mask (torch.Tensor): The attention mask.
position_ids (torch.Tensor): The position ids.
past_key_values (tuple[tuple[torch.Tensor, ...], ...]): The past key values.
inputs_embeds (torch.Tensor): The inputs embeds.
use_cache (bool): Whether to use cache.
**kwargs: Additional keyword arguments.
Returns:
BaseModelOutputWithPast: The output of the model.
"""
all_hidden_states = []
output_hidden_states = kwargs.get("output_hidden_states", False)
if (input_ids is None) ^ (inputs_embeds is not None):
raise ValueError("You must specify exactly one of input_ids or inputs_embeds")
if inputs_embeds is None:
inputs_embeds: torch.Tensor = self.embed_tokens(input_ids)
hidden_states = inputs_embeds
# TE-specific input handling.
has_thd_input = [x in kwargs for x in ["cu_seq_lens_q", "cu_seq_lens_k", "max_length_q", "max_length_k"]]
should_pack_inputs = not any(has_thd_input) and self.config.attn_input_format == "thd"
if should_pack_inputs:
# Left-side padding is not supported in TE layers, so to make huggingface-style generation work with TE we
# dynamically convert to THD-style inputs in our forward pass, and then convert back to BSHD for the output.
# This lets the entire transformer stack run in THD mode. This might be slower for BSHD + padding with fused
# attention backend, but it should be faster for the flash attention backend.
assert attention_mask is not None, "Attention mask is required when packing BSHD inputs."
batch_size = hidden_states.size(0)
padded_seq_len = input_ids.size(1)
hidden_states, indices, cu_seqlens, max_seqlen, _ = _unpad_input(hidden_states, attention_mask)
kwargs["cu_seq_lens_q"] = kwargs["cu_seq_lens_k"] = cu_seqlens
kwargs["max_length_q"] = kwargs["max_length_k"] = max_seqlen
if self.config.attn_input_format == "thd" and hidden_states.dim() == 3 and hidden_states.size(0) == 1:
# For THD, the embedding output is a 3-dimensional tensor with shape [1, total_tokens, hidden_size], but TE
# expects a 2-dimensional tensor with shape [total_tokens, hidden_size].
hidden_states = hidden_states.squeeze(0)
if self.config.attn_input_format == "bshd" and attention_mask is not None and attention_mask.dim() == 2:
# Convert HF mask (1=attend, 0=pad) to TE boolean mask (True=masked, False=attend)
attention_mask = ~attention_mask[:, None, None, :].bool()
if isinstance(past_key_values, InferenceParams): # InferenceParams is TE's way of managing kv-caching.
# In generation mode, we set the length to 1 for each batch index. Otherwise, we use the attention mask to
# compute the lengths of each sequence in the batch.
lengths = (
attention_mask.sum(dim=1).tolist()
if attention_mask.shape == input_ids.shape
else [1] * input_ids.shape[0]
)
past_key_values.pre_step(OrderedDict(zip(list(range(len(lengths))), lengths)))
# Ensure that rotary embeddings are computed with at a higher precision
with torch.autocast(device_type="cuda", enabled=False):
te_rope_emb = self.rotary_emb(max_seq_len=self.config.max_position_embeddings)
if te_rope_emb.dtype == torch.float32:
warnings.warn("Rotary embeddings should be in float32 for optimal performance.", UserWarning)
# Outer FP8 autocast enables FP8 compute for the decoder stack. Per-layer overrides (FP4, BF16) are handled
# by get_layer_autocast(), which nests inside this context.
with transformer_engine.pytorch.autocast(enabled=self._fp8_recipe is not None, recipe=self._fp8_recipe):
for layer_number, decoder_layer in enumerate(self.layers[: self.config.num_hidden_layers]):
if output_hidden_states:
all_hidden_states = (*all_hidden_states, hidden_states)
with self.get_layer_autocast(layer_number):
hidden_states = decoder_layer(
hidden_states,
attention_mask=None if self.config.attn_input_format == "thd" else attention_mask,
rotary_pos_emb=te_rope_emb,
inference_params=past_key_values,
cu_seqlens_q=kwargs.get("cu_seq_lens_q", None),
cu_seqlens_kv=kwargs.get("cu_seq_lens_k", None),
cu_seqlens_q_padded=kwargs.get("cu_seq_lens_q_padded", None),
cu_seqlens_kv_padded=kwargs.get("cu_seq_lens_k_padded", None),
max_seqlen_q=kwargs.get("max_length_q", None),
max_seqlen_kv=kwargs.get("max_length_k", None),
pad_between_seqs=kwargs.get("pad_between_seqs", None),
)
hidden_states = self.norm(hidden_states)
# add hidden states from the last decoder layer. Note that these will be in THD format; we could possibly pad
# these with the same _pad_input call as below if we wanted them returned in BSHD format.
if output_hidden_states:
all_hidden_states = (*all_hidden_states, hidden_states)
if should_pack_inputs:
# If we've converted BSHD to THD for our TE layers, we need to convert back to BSHD for the output.
hidden_states = _pad_input(hidden_states, indices, batch_size, padded_seq_len)
return BaseModelOutputWithPast(
last_hidden_state=hidden_states,
past_key_values=past_key_values,
hidden_states=all_hidden_states if output_hidden_states else None,
)
class NVLlamaForCausalLM(NVLlamaPreTrainedModel, transformers.GenerationMixin):
"""Llama3 model with causal language head."""
_tied_weights_keys: ClassVar[dict[str, str]] = {"lm_head.weight": "model.embed_tokens.weight"}
def __init__(self, config):
"""Initialize the NVLlamaForCausalLM model."""
super().__init__(config)
self.model = NVLlamaModel(config)
self.vocab_size = config.vocab_size
with transformer_engine.pytorch.quantized_model_init(enabled=False):
self.lm_head = transformer_engine.pytorch.Linear(
config.hidden_size,
config.vocab_size,
bias=False,
params_dtype=config.dtype,
device="meta" if torch.get_default_device() == torch.device("meta") else "cuda",
init_method=lambda x: torch.nn.init.normal_(x, mean=0.0, std=config.initializer_range),
)
# Initialize weights and apply final processing
self.post_init()
def forward(
self,
input_ids: torch.Tensor | None = None,
attention_mask: torch.Tensor | None = None,
position_ids: torch.Tensor | None = None,
past_key_values: tuple[tuple[torch.Tensor, ...], ...] | None = None,
inputs_embeds: torch.Tensor | None = None,
labels: torch.Tensor | None = None,
shift_labels: torch.Tensor | None = None,
use_cache: bool | None = None,
cache_position: torch.Tensor | None = None,
logits_to_keep: int | torch.Tensor = 0,
**kwargs: Unpack[TransformersKwargs],
) -> CausalLMOutputWithPast:
"""Forward pass for the NVLlamaForCausalLM model.
Args:
input_ids (torch.Tensor): The input ids.
attention_mask (torch.Tensor): The attention mask.
position_ids (torch.Tensor): The position ids.
past_key_values (tuple[tuple[torch.Tensor, ...], ...]): The past key values.
inputs_embeds (torch.Tensor): The inputs embeds.
labels (torch.Tensor): The labels.
shift_labels (torch.Tensor): Labels that have already been shifted by the dataloader, to be used instead of
labels for the loss function. For context parallelism, it is more reliable to shift the labels before
splitting the batch into shards.
use_cache (bool): Whether to use cache.
cache_position (torch.Tensor): The cache position.
logits_to_keep (int | torch.Tensor): Whether to keep only the last logits to reduce the memory footprint of
the model during generation.
**kwargs: Additional keyword arguments.
Returns:
CausalLMOutputWithPast: The output of the model.
"""
outputs: BaseModelOutputWithPast = self.model(
input_ids=input_ids,
attention_mask=attention_mask,
position_ids=position_ids,
past_key_values=past_key_values,
inputs_embeds=inputs_embeds,
use_cache=use_cache,
cache_position=cache_position,
**kwargs,
)
hidden_states = outputs.last_hidden_state
# Only compute necessary logits, and do not upcast them to float if we are not computing the loss
slice_indices = slice(-logits_to_keep, None) if isinstance(logits_to_keep, int) else logits_to_keep
with transformer_engine.pytorch.autocast(enabled=False):
if hidden_states.ndim == 3:
logits = self.lm_head(hidden_states[:, slice_indices, :])
else: # With THD inputs, batch and sequence dimensions are collapsed in the first dimension.
logits = self.lm_head(hidden_states[slice_indices, :])
loss = None
if labels is not None or shift_labels is not None:
loss = self.loss_function(
logits=logits, labels=labels, shift_labels=shift_labels, vocab_size=self.config.vocab_size, **kwargs
)
return CausalLMOutputWithPast(
loss=loss,
logits=logits,
past_key_values=outputs.past_key_values,
hidden_states=outputs.hidden_states,
attentions=outputs.attentions,
)
class NVLlamaForSequenceClassification(
transformers.modeling_layers.GenericForSequenceClassification, NVLlamaPreTrainedModel
):
"""Llama3 model with sequence classification head."""
class NVLlamaForQuestionAnswering(transformers.modeling_layers.GenericForQuestionAnswering, NVLlamaPreTrainedModel):
"""Llama3 model with question answering head."""
base_model_prefix = "transformer" # For BC, where `transformer` was used instead of `model`
class NVLlamaForTokenClassification(
transformers.modeling_layers.GenericForTokenClassification, NVLlamaPreTrainedModel
):
"""Llama3 model with token classification head."""
torch._dynamo.config.capture_scalar_outputs = True
@torch.compile
def _pad_input(hidden_states, indices, batch, seqlen):
"""Convert a THD tensor to a BSHD equivalent tensor.
Adapted from huggingface/transformers/modeling_flash_attention_utils.py
Arguments:
hidden_states: (total_nnz, ...), where total_nnz = number of tokens in selected in attention_mask.
indices: (total_nnz), the indices that represent the non-masked tokens of the original padded input sequence.
batch: int, batch size for the padded sequence.
seqlen: int, maximum sequence length for the padded sequence.
Return:
hidden_states: (batch, seqlen, ...)
"""
dim = hidden_states.shape[1:]
output = torch.zeros((batch * seqlen), *dim, device=hidden_states.device, dtype=hidden_states.dtype)
output[indices] = hidden_states
return output.view(batch, seqlen, *dim)
@torch.compile
def _unpad_input(hidden_states, attention_mask, unused_mask=None):
"""Convert a BSHD tensor to a THD equivalent tensor.
Adapted from huggingface/transformers/modeling_flash_attention_utils.py
Arguments:
hidden_states: (batch, seqlen, ...)
attention_mask: (batch, seqlen), bool / int, 1 means valid and 0 means not valid.
unused_mask: (batch, seqlen), bool / int, 1 means the element is allocated but unused.
Return:
hidden_states: (total_nnz, ...), where total_nnz = number of tokens selected in attention_mask + unused_mask.
indices: (total_nnz), the indices of masked tokens from the flattened input sequence.
cu_seqlens: (batch + 1), the cumulative sequence lengths, used to index into hidden_states.
max_seqlen_in_batch: int
seqused: (batch), returns the number of tokens selected in attention_mask + unused_mask.
"""
batch_size = hidden_states.size(0)
seq_length = hidden_states.size(1)
if attention_mask.shape[1] != seq_length: # Likely in generation mode with kv-caching
return (
hidden_states.squeeze(1), # hidden_states
torch.arange(batch_size, dtype=torch.int64, device=hidden_states.device), # indices
torch.arange(batch_size + 1, dtype=torch.int32, device=hidden_states.device), # cu_seqlens
1, # max_seqlen
1, # seqused
)
all_masks = (attention_mask + unused_mask) if unused_mask is not None else attention_mask
seqlens_in_batch = all_masks.sum(dim=-1, dtype=torch.int32)
used_seqlens_in_batch = attention_mask.sum(dim=-1, dtype=torch.int32)
indices = torch.nonzero(all_masks.flatten(), as_tuple=False).flatten()
max_seqlen_in_batch = seqlens_in_batch.max().item()
cu_seqlens = torch.nn.functional.pad(torch.cumsum(seqlens_in_batch, dim=0, dtype=torch.int32), (1, 0))
return (
hidden_states.reshape(-1, *hidden_states.shape[2:])[indices],
indices,
cu_seqlens,
max_seqlen_in_batch,
used_seqlens_in_batch,
)
class HFInferenceParams(InferenceParams):
"""Extension of the InferenceParams class to support HF generate() and beam search."""
def get_seq_length(self, layer_idx: int = 0) -> int:
"""Return the current cached sequence length.
Required by HuggingFace transformers generate() to determine how many
tokens have already been cached.
"""
if not self.sequences:
return 0
return max(self.sequences.values())
def reorder_cache(self, beam_idx: torch.LongTensor):
"""Reorder the cache based on the beam indices."""
if isinstance(self.cache_manager, PagedKVCacheManager):
raise NotImplementedError("Beam search is not supported for paged cache manager.")
for layer_number, (key_cache, value_cache) in self.cache_manager.cache.items():
updated_key_cache = key_cache.index_select(0, beam_idx)
updated_value_cache = value_cache.index_select(0, beam_idx)
self.cache_manager.cache[layer_number] = (updated_key_cache, updated_value_cache)