File size: 12,820 Bytes
1faccd4 | 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 | # 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.
import importlib
import logging
import re
from collections import defaultdict
from collections.abc import Generator, Iterator
from dataclasses import dataclass
from typing import Any
import torch
import torch.distributed
import torch.nn as nn
from torch.distributed._composable.fsdp import FSDPModule
from torch.distributed.tensor import DTensor
from torch.nn.attention.flex_attention import _mask_mod_signature, and_masks
from torchtitan.components.dataloader import BaseDataLoader
from torchtitan.models.common.attention import (
AttentionMasksType,
VarlenMetadata,
create_attention_mask,
get_causal_mask_mod,
)
logger = logging.getLogger(__name__)
class NoOpDataLoader(BaseDataLoader):
"""A no-op dataloader for use when verl manages its own data loading.
Satisfies the BaseDataLoader interface required by torchtitan's Trainer
but does nothing. Its __iter__ yields nothing, and state_dict /
load_state_dict are no-ops.
"""
@dataclass(kw_only=True, slots=True)
class Config(BaseDataLoader.Config):
pass
def __init__(self, **kwargs):
pass
def __iter__(self) -> Iterator[tuple[dict[str, torch.Tensor], torch.Tensor]]:
return iter([])
def state_dict(self):
return {}
def load_state_dict(self, state_dict):
pass
# Mapping from HuggingFace model_type to torchtitan model name.
# Torchtitan models not mapped here:
# - flux: diffusion model, not applicable to verl's RL/SFT workflows
# - llama3_ft: fault-tolerant variant of llama3, same HF models (mapped via "llama")
_HF_MODEL_TYPE_TO_TORCHTITAN_NAME = {
"qwen2": "qwen3",
"qwen3": "qwen3",
"qwen2_moe": "qwen3",
"qwen3_moe": "qwen3",
"llama": "llama3",
"llama4": "llama4",
"deepseek_v3": "deepseek_v3",
"gpt_oss": "gpt_oss",
}
def derive_torchtitan_name_and_flavor(hf_config) -> tuple[str, str]:
"""Derive torchtitan model name and flavor from a HuggingFace config.
The name is mapped from ``hf_config.model_type``. The flavor is found by
matching architecture parameters (dim, n_layers, vocab_size) against the
known flavors registered in the torchtitan model package.
Args:
hf_config: A HuggingFace AutoConfig object.
Returns:
A ``(name, flavor)`` tuple.
Raises:
ValueError: If model_type is unsupported or no matching flavor is found.
"""
model_type = getattr(hf_config, "model_type", None)
if model_type is None:
raise ValueError("HuggingFace config does not have 'model_type' field")
name = _HF_MODEL_TYPE_TO_TORCHTITAN_NAME.get(model_type)
if name is None:
raise ValueError(
f"Cannot derive torchtitan model name from HF model_type '{model_type}'. "
f"Supported types: {list(_HF_MODEL_TYPE_TO_TORCHTITAN_NAME.keys())}."
)
# Import the model package and find the configs dict
model_module = importlib.import_module(f"torchtitan.models.{name}")
model_configs = None
for attr in dir(model_module):
obj = getattr(model_module, attr)
if isinstance(obj, dict) and attr.endswith("_configs"):
model_configs = obj
break
if model_configs is None:
raise ValueError(
f"Could not find model configs dict in torchtitan.models.{name}. "
f"Expected a dict attribute ending with '_configs'."
)
hidden_size = hf_config.hidden_size
num_layers = hf_config.num_hidden_layers
vocab_size = hf_config.vocab_size
for flavor_name, model_cfg in model_configs.items():
if (
getattr(model_cfg, "dim", None) == hidden_size
and getattr(model_cfg, "n_layers", None) == num_layers
and getattr(model_cfg, "vocab_size", None) == vocab_size
):
logger.info(
f"Auto-derived torchtitan name='{name}', flavor='{flavor_name}' from HF model_type='{model_type}'"
)
return name, flavor_name
raise ValueError(
f"No matching torchtitan flavor found for model_type='{model_type}' "
f"(hidden_size={hidden_size}, num_hidden_layers={num_layers}, "
f"vocab_size={vocab_size}). "
f"Available flavors for '{name}': {list(model_configs.keys())}."
)
def enable_fsdp_gradient_division(model: nn.Module, dp_size: int) -> None:
"""
Re-enable FSDP's automatic gradient division.
TorchTitan calls disable_fsdp_gradient_division() which sets gradient_divide_factor=1.0.
This re-enables it by setting the factor to the specified dp_size, so gradients are
averaged across FSDP ranks. This is needed for verl's loss scaling (loss * dp_size)
to work correctly.
Args:
model: The model (or model part) to enable gradient division on.
dp_size: The data parallel size to use as the gradient divide factor.
"""
for module in model.modules():
if isinstance(module, FSDPModule):
module.set_gradient_divide_factor(float(dp_size))
def get_attention_masks(
input_batch: torch.Tensor,
positions: torch.Tensor,
attn_type: str,
) -> AttentionMasksType:
match attn_type:
case "flex":
return _get_flex_attention_masks(
input_batch,
positions,
)
case "varlen":
return _create_varlen_metadata_for_document(
input_batch,
positions,
)
case _:
raise TypeError("Only varlen and flex attn masks are supported")
def _get_document_mask_mod(positions: torch.Tensor) -> _mask_mod_signature:
# Detect boundaries from position resets
first_dummy_value = positions[:, :1] - 1
position_diff = torch.diff(positions, prepend=first_dummy_value, dim=-1)
sequence_indices = (position_diff != 1).cumsum(-1) # [batch, seq]
def document_mask(b: torch.Tensor, h: torch.Tensor, q_idx: torch.Tensor, kv_idx: torch.Tensor) -> torch.Tensor:
return sequence_indices[b, q_idx] == sequence_indices[b, kv_idx]
return document_mask
def _get_flex_attention_masks(
input_batch: torch.Tensor,
positions: torch.Tensor,
) -> AttentionMasksType:
mask_mods = [get_causal_mask_mod()]
B = input_batch.shape[0]
mask_mods.append(_get_document_mask_mod(positions=positions))
return create_attention_mask(and_masks(*mask_mods), B, None, input_batch.shape[1], input_batch.shape[1])
def _create_varlen_metadata_for_document(input_batch: torch.Tensor, positions: torch.Tensor) -> VarlenMetadata:
"""
Creates cumulative sequence length indices needed for variable length attention
Args:
input_batch: Input token IDs with shape [batch, seq].
positions: Position IDs with shape [batch, seq]. Boundaries detected where
position diff != 1 (i.e., position resets).
Returns:
VarlenMetadata containing cumulative sequence length indices for q, k, and max_seq_len
"""
batch_size, seq_len = input_batch.shape
device = input_batch.device
# Detect boundaries from position resets (where diff != 1)
first_dummy_value = positions[:, :1] - 1
position_diff = torch.diff(positions, prepend=first_dummy_value, dim=-1)
# boundary_mask[b, i] is True if position i starts a new document
boundary_mask = position_diff != 1 # [batch, seq]
boundary_mask[:, 0] = True
cu_seqlens_list, all_seq_lengths = [], []
offset = 0
for b in range(batch_size):
# Find positions where new documents start
boundary_positions = boundary_mask[b].nonzero(as_tuple=True)[0].to(torch.int32)
sample_cu_seqlens = torch.cat(
[
boundary_positions,
torch.tensor([seq_len], dtype=torch.int32, device=device),
]
)
sample_cu_seqlens = torch.unique_consecutive(sample_cu_seqlens)
seq_lengths = torch.diff(sample_cu_seqlens)
all_seq_lengths.append(seq_lengths)
cu_seqlens_adjusted = sample_cu_seqlens[:-1] + offset
cu_seqlens_list.append(cu_seqlens_adjusted)
offset += seq_len
packed_cu_seqlens = torch.cat(cu_seqlens_list + [torch.tensor([offset], dtype=torch.int32, device=device)])
max_seqlen = 0
if len(all_seq_lengths) > 0:
all_seq_lengths = torch.cat(all_seq_lengths)
# device to host sync but only done once per model forward
max_seqlen = all_seq_lengths.max().item()
return VarlenMetadata(
cu_seq_q=packed_cu_seqlens,
cu_seq_k=packed_cu_seqlens,
max_q=max_seqlen,
max_k=max_seqlen,
)
# Regex to parse: model.layers.{L}.mlp.experts.{E}.{weight_suffix}
_EXPERT_PATTERN = re.compile(r"\.layers\.(\d+)\..*\.experts\.(\d+)\.(.*)")
def _parse_expert_name(name: str) -> tuple[int, int, str] | None:
"""Parse layer_id, expert_id, weight_suffix from expert param name."""
match = _EXPERT_PATTERN.search(name)
if match:
return int(match.group(1)), int(match.group(2)), match.group(3)
return None
def _make_expert_name_template(name: str) -> str:
"""Convert 'model.layers.0.mlp.experts.3.w1' -> 'model.layers.0.mlp.experts.{}.w1'"""
return _EXPERT_PATTERN.sub(lambda m: f".layers.{m.group(1)}.mlp.experts.{{}}.{m.group(3)}", name)
def iter_per_tensor_params_ep(
params: dict[str, Any],
device: int,
ep_group: torch.distributed.ProcessGroup,
ep_size: int,
) -> Generator[tuple[str, torch.Tensor], None, None]:
"""Yield (name, tensor) pairs for weight sync with Expert Parallel.
Gathers expert weights across EP ranks one (layer, weight_type) group
at a time to avoid OOM from materializing all experts simultaneously.
Non-expert params are yielded first (with FSDP full_tensor() if needed),
then expert params are all-gathered per group and yielded individually.
Args:
params: HF-format state dict with per-expert keys. Expert keys must
follow the pattern ``model.layers.{L}.mlp.experts.{E}.{suffix}``.
device: device ID to place tensors on.
ep_group: The EP process group for all-gather.
ep_size: Number of EP ranks.
"""
expert_params: dict[tuple[int, str], dict[int, tuple[str, Any]]] = defaultdict(dict)
non_expert_params: list[tuple[str, Any]] = []
for name, param in params.items():
parsed = _parse_expert_name(name) if "mlp.experts." in name else None
if parsed is None:
non_expert_params.append((name, param))
else:
layer_id, expert_id, weight_suffix = parsed
expert_params[(layer_id, weight_suffix)][expert_id] = (name, param)
params.clear()
# Yield non-expert params
for name, param in non_expert_params:
if isinstance(param, DTensor):
yield name, param.to(device, non_blocking=True).full_tensor().to(torch.bfloat16, non_blocking=True)
else:
yield name, param
del non_expert_params
# Yield expert params with all-gather
for (layer_id, weight_suffix), experts_dict in sorted(expert_params.items()):
sorted_expert_ids = sorted(experts_dict.keys())
# Stack local expert weights
local_weights = []
for eid in sorted_expert_ids:
_, param = experts_dict[eid]
if isinstance(param, DTensor):
param = param.to(device, non_blocking=True).full_tensor()
else:
param = param.to(device, non_blocking=True)
local_weights.append(param)
name_template = _make_expert_name_template(experts_dict[sorted_expert_ids[0]][0])
local_stacked = torch.stack(local_weights, dim=0)
# All-gather across EP ranks
gathered_list = [torch.empty_like(local_stacked) for _ in range(ep_size)]
torch.distributed.all_gather(gathered_list, local_stacked, group=ep_group)
all_experts = torch.cat(gathered_list, dim=0)
for expert_id in range(all_experts.shape[0]):
yield name_template.format(expert_id), all_experts[expert_id].to(torch.bfloat16).clone()
del local_weights, local_stacked, gathered_list, all_experts
torch.cuda.empty_cache()
|