File size: 14,217 Bytes
2d67aa6 | 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 | import json
import logging
import os
import re
from contextlib import contextmanager
import torch
import torch.distributed as dist
from torch.distributed._tensor import DTensor, Shard, distribute_tensor
from transformers import AutoConfig, PretrainedConfig
logger = logging.getLogger(__name__)
@contextmanager
def rank_0_priority():
rank = dist.get_rank()
if rank == 0:
yield
dist.barrier()
else:
dist.barrier()
yield
@contextmanager
def default_torch_dtype(dtype: torch.dtype):
current_dtype = torch.get_default_dtype()
torch.set_default_dtype(dtype)
yield
torch.set_default_dtype(current_dtype)
@torch.no_grad()
def padding(tensor, left=True):
zeropadding = torch.zeros_like(tensor[:, -1:])
if left:
tensor = torch.cat((zeropadding, tensor[:, :-1]), dim=1)
else:
tensor = torch.cat((tensor[:, 1:], zeropadding), dim=1)
return tensor
def load_config_from_file(config_path: str):
with open(config_path, "r") as f:
config = json.load(f)
return PretrainedConfig.from_dict(config)
def print_with_rank(message):
if dist.is_available() and dist.is_initialized():
logger.info(f"rank {dist.get_rank()}: {message}")
else:
logger.info(f"non-distributed: {message}")
def print_args_with_dots(args):
if dist.get_rank() == 0:
args_dict = vars(args)
max_key_length = max(len(key) for key in args_dict.keys())
total_width = 50
print("\n -----------【args】-----------")
for key, value in args_dict.items():
key_str = f"{key:<{max_key_length}}"
value_str = str(value)
dot_count = total_width - len(key_str) - len(value_str)
dot_fill = "·" * dot_count
print(f"{key_str} {dot_fill} {value_str}")
def print_on_rank0(message):
if dist.get_rank() == 0:
logger.info(message)
def get_last_checkpoint(folder, prefix="epoch"):
"""
Get the latest checkpoint directory along with its epoch and step information.
Args:
folder: The folder path containing checkpoints.
prefix: The prefix for checkpoint directories, default is "epoch".
Returns:
tuple: (checkpoint_path, epoch, step)
- Returns (None, None, None) if no checkpoint is found.
- step is 0 if not present in the directory name.
"""
content = os.listdir(folder)
# Match: epoch_X or epoch_X_step_Y
_re_checkpoint = re.compile(rf"^{re.escape(prefix)}_(\d+)(?:_step_(\d+))?$")
checkpoints = [
path
for path in content
if _re_checkpoint.search(path) is not None
and os.path.isdir(os.path.join(folder, path))
]
if len(checkpoints) == 0:
return None, (0, 0)
# Sort key: (epoch, step), step=0 when not present
def sort_key(x):
match = _re_checkpoint.search(x)
epoch = int(match.group(1))
step = int(match.group(2)) if match.group(2) else 0
return (epoch, step)
last_checkpoint = max(checkpoints, key=sort_key)
match = _re_checkpoint.search(last_checkpoint)
epoch = int(match.group(1))
step = int(match.group(2)) if match.group(2) else 0
return os.path.join(folder, last_checkpoint), (epoch, step)
def generate_draft_model_config(
target_model_path: str, template_config_path: str = None, cache_dir: str = None
):
"""
Auto-generate draft model config based on target model parameters aligned with template config
Args:
target_model_path (str): Path to the target model
template_config_path (str, optional): Template config file path, defaults to llama3-8B-eagle3.json
cache_dir (str, optional): Cache directory
Returns:
dict: Generated draft model config dictionary
"""
# Get target model config
target_config = AutoConfig.from_pretrained(target_model_path, cache_dir=cache_dir)
# If no template specified, use default llama3-8B-eagle3.json
if template_config_path is None:
# Use the script execution directory as base
import sys
script_dir = os.path.dirname(os.path.abspath(sys.argv[0]))
project_root = os.path.dirname(script_dir) # Go up one level from scripts/
template_config_path = os.path.join(
project_root, "configs", "llama3-8B-eagle3.json"
)
# Read template config
with open(template_config_path, "r") as f:
draft_config = json.load(f)
# Adjust architecture config based on target model type
if hasattr(target_config, "model_type"):
# Default to llama architecture
draft_config["model_type"] = "llama"
# Align key parameters
param_mappings = {
"vocab_size": "vocab_size",
"hidden_size": "hidden_size",
"num_attention_heads": "num_attention_heads",
"num_key_value_heads": "num_key_value_heads",
"intermediate_size": "intermediate_size",
"max_position_embeddings": "max_position_embeddings",
"rms_norm_eps": "rms_norm_eps",
"hidden_act": "hidden_act",
"bos_token_id": "bos_token_id",
"eos_token_id": "eos_token_id",
"torch_dtype": "torch_dtype",
}
# Copy parameters from target model to draft config
for target_param, draft_param in param_mappings.items():
if hasattr(target_config, target_param):
value = getattr(target_config, target_param)
# Special handling for torch_dtype to make it JSON serializable
if target_param == "torch_dtype" and isinstance(value, torch.dtype):
value = str(value).replace("torch.", "")
draft_config[draft_param] = value
# Special handling for some parameters
# Ensure num_hidden_layers is always 1 (EAGLE3 feature)
draft_config["num_hidden_layers"] = 1
# Keep some fixed draft model specific parameters
draft_config["tie_word_embeddings"] = False
draft_config["use_cache"] = True
# If template doesn't have draft_vocab_size, set default
if "draft_vocab_size" not in draft_config:
draft_config["draft_vocab_size"] = 32000 # Default value
return draft_config
def save_draft_model_config(config_dict: dict, output_path: str):
"""
Save draft model config to file
Args:
config_dict (dict): Config dictionary
output_path (str): Output file path
"""
os.makedirs(os.path.dirname(output_path), exist_ok=True)
with open(output_path, "w", encoding="utf-8") as f:
json.dump(config_dict, f, indent=2, ensure_ascii=False)
print(f"Draft model config saved to: {output_path}")
def create_draft_config_from_target(
target_model_path: str,
output_dir: str = None,
template_config_path: str = None,
cache_dir: str = None,
):
"""
Convenient function to create draft model config file from target model
Args:
target_model_path (str): Target model path
output_dir (str, optional): Output directory, defaults to configs folder in current directory
template_config_path (str, optional): Template config path
cache_dir (str, optional): Cache directory
Returns:
str: Generated config file path
"""
# Generate config
rank = dist.get_rank()
if rank == 0:
print_with_rank(
"No draft model config provided, auto-generating from target model..."
)
config_dict = generate_draft_model_config(
target_model_path, template_config_path, cache_dir
)
dist.barrier()
# Determine output path
if output_dir is None:
# Use the script execution directory as base
import sys
script_dir = os.path.dirname(os.path.abspath(sys.argv[0]))
project_root = os.path.dirname(script_dir) # Go up one level from scripts/
output_dir = os.path.join(project_root, "configs")
# Extract model name from model path
model_name = target_model_path.split("/")[-1].lower()
output_filename = f"{model_name}-eagle3-auto.json"
output_path = os.path.join(output_dir, output_filename)
# Save config
if rank == 0:
save_draft_model_config(config_dict, output_path)
print_with_rank(f"Auto-generated draft model config saved to: {output_path}")
dist.barrier()
return output_path
def get_full_optimizer_state(optimizer_state_dict: dict):
"""
Convert optimizer state dict with DTensor to full tensors for saving
Args:
optimizer_state_dict (dict): Optimizer state dict possibly containing DTensors
Returns:
dict: Optimizer state dict with full tensors
"""
full_optimizer_state_dict = {
k: v for k, v in optimizer_state_dict.items() if k != "state"
}
if "state" in optimizer_state_dict:
full_optimizer_state_dict["state"] = {
param_id: {
state_key: (
state_tensor.full_tensor()
if isinstance(state_tensor, torch.distributed.tensor.DTensor)
else state_tensor
)
for state_key, state_tensor in param_state.items()
}
for param_id, param_state in optimizer_state_dict["state"].items()
}
return full_optimizer_state_dict
def shard_optimizer_state_with_dtensor(bf16_optimizer, device_mesh):
"""
Shards the optimizer state tensors of a BF16Optimizer instance using DTensor.
Args:
bf16_optimizer (BF16Optimizer): An instance of BF16Optimizer, which contains
the actual optimizer (e.g., torch.optim.Adam) as its `.optimizer` attribute.
"""
optim = bf16_optimizer.optimizer
for group in optim.param_groups:
for p in group["params"]:
if not isinstance(p, DTensor):
continue
state = optim.state.get(p, None)
if state is None:
continue
mesh = device_mesh
placements = (Shard(dim=0),)
for k, v in list(state.items()):
if k == "step":
continue
if isinstance(v, DTensor):
continue
if not isinstance(v, torch.Tensor):
continue
state[k] = distribute_tensor(
v.to(p.device), device_mesh=mesh, placements=placements
)
def safe_conversations_generator(file_path):
"""
Generator that:
1. Extracts the 'conversations' field.
2. Preserves all original fields within each message.
3. [Key step] Converts all list/dict-type field values to strings to resolve mixed-type conflicts (e.g., for Arrow compatibility).
"""
with open(file_path, "r", encoding="utf-8") as f:
for i, line in enumerate(f):
line = line.strip()
if not line:
continue
try:
row = json.loads(line)
raw_convs = row.get("conversations", [])
# 1. Ensure 'conversations' is a list
if not isinstance(raw_convs, list):
# If it's None or some unexpected type, treat as empty or skip
if raw_convs is None:
raw_convs = []
else:
# Edge case: 'conversations' is a plain string or non-iterable—skip this line
logger.warning(
f"Line {i + 1}: 'conversations' is not a list. Please check!"
)
continue
cleaned_convs = []
for msg in raw_convs:
# 2. Ensure each item in the list is a dictionary
if not isinstance(msg, dict):
# Skip if an element is not a dict (e.g., malformed like ["user", "hi"])
continue
# 3. [Core logic] Iterate over all fields in the message (role, content, tools, etc.)
new_msg = {}
for k, v in msg.items():
# If the value is a list or dict, serialize it to a JSON string
# This ensures Arrow treats the column as string type instead of list/struct
if isinstance(v, (list, dict)):
new_msg[k] = json.dumps(v, ensure_ascii=False)
else:
# Keep primitive types (str, int, float, bool, None) unchanged
new_msg[k] = v
cleaned_convs.append(new_msg)
# Build result with conversations
result = {"conversations": cleaned_convs}
# Preserve 'tools' field if present
if "tools" in row:
tools = row["tools"]
if tools is not None:
# If tools is a JSON string, parse it first
if isinstance(tools, str):
try:
tools = json.loads(tools)
except json.JSONDecodeError:
logger.warning(
f"Line {i + 1}: 'tools' is a string but not valid JSON, keeping as-is"
)
result["tools"] = tools
yield result
continue
# Serialize tools to JSON string for Arrow compatibility
# (same treatment as list/dict fields in conversations)
if isinstance(tools, (list, dict)):
result["tools"] = json.dumps(tools, ensure_ascii=False)
else:
# Primitive type, keep as-is
result["tools"] = tools
else:
result["tools"] = []
yield result
except Exception as e:
logger.warning(f"Skipping line {i + 1}: {e}")
continue
|