File size: 12,061 Bytes
fb11af9 | 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 | # Copyright 2025 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 os
from abc import ABC, abstractmethod
from typing import Any, Dict
import torch
import torch.distributed as dist
from torch.distributed.checkpoint.default_planner import DefaultLoadPlanner
from ..utils.import_utils import is_torch_version_greater_than
from ..utils.logging import get_logger
from pathlib import Path
if is_torch_version_greater_than("2.4"):
import torch.distributed.checkpoint as dcp
from torch.distributed.checkpoint import (
FileSystemReader,
FileSystemWriter,
)
from torch.distributed.checkpoint.state_dict import (
get_model_state_dict,
get_optimizer_state_dict,
set_model_state_dict,
set_optimizer_state_dict,
)
from torch.distributed.checkpoint.stateful import Stateful
else:
Stateful = ABC
logger = get_logger(__name__)
_EXTRA_STATE_FORMAT = "extra_state_rank_{}.pt"
_MODEL_DIR = "model"
_EMA_DIR = "ema"
_OPTIMIZER_DIR = "optimizer"
_EXTRA_STATE_DIR = "extra_state"
class ModelState(Stateful):
"""
A wrapper around a model to make it stateful.
Args:
model (Model): model to wrap.
"""
def __init__(self, model):
self.model = model
def state_dict(self):
model_state_dict = get_model_state_dict(model=self.model)
return {"model": model_state_dict}
def load_state_dict(self, state_dict):
set_model_state_dict(model=self.model, model_state_dict=state_dict["model"])
class OptimizerState(Stateful):
"""
A wrapper around an optimizer to make it stateful.
Args:
model (Model): model to wrap.
optimizer (Optimizer): optimizer to wrap.
"""
def __init__(self, model, optimizer):
self.model = model
self.optimizer = optimizer
def state_dict(self):
optimizer_state_dict = get_optimizer_state_dict(model=self.model, optimizers=self.optimizer)
return {"optim": optimizer_state_dict}
def load_state_dict(self, state_dict):
set_optimizer_state_dict(model=self.model, optimizers=self.optimizer, optim_state_dict=state_dict["optim"])
def build_checkpointer(
dist_backend: str = "fsdp1",
ckpt_manager: str = "bytecheckpoint",
):
"""
create a checkpointer manager with given mode.
Args:
dist_backend (str, optional): checkpoint mode. Defaults to "fsdp1".
fsdp1: FSDP1 checkpoint from bytecheckpoint
fsdp2-vescale: FSDP2 checkpoint from bytecheckpoint
fsdp2: FSDP2 checkpoint from bytecheckpoint
ddp: DDP checkpoint from bytecheckpoint
dcp: DCP checkpoint from torch.distributed.checkpoint
ckpt_manager (str, optional): checkpoint manager. Defaults to "bytecheckpoint".
bytecheckpoint: bytecheckpoint checkpoint manager
dcp: torch dcp checkpoint manager
Raises:
ValueError: if ckpt_manager is not supported
Returns:
Checkpointer: checkpointer with given mode.
"""
if ckpt_manager == "bytecheckpoint":
if dist_backend == "ddp":
from bytecheckpoint import DDPCheckpointer as Checkpointer
elif dist_backend == "fsdp1":
from bytecheckpoint import FSDPCheckpointer as Checkpointer
elif dist_backend == "fsdp2-vescale":
from bytecheckpoint import VeScaleCheckpointer as Checkpointer
elif dist_backend == "fsdp2":
from bytecheckpoint import FSDP2Checkpointer as Checkpointer
elif ckpt_manager == "dcp":
if not is_torch_version_greater_than("2.4"):
raise ValueError("DCP checkpoint manager requires torch version >= 2.4")
if dist_backend not in ["ddp", "fsdp1", "fsdp2"]:
raise ValueError(
f"Unsupported distributed backend: {dist_backend} for DCP checkpoint manager, supported modes are: ddp, fsdp1, fsdp2"
)
Checkpointer = DistributedCheckpointer
else:
raise ValueError(
f"Unknown checkpoint manager: {ckpt_manager}, supported modes are: bytecheckpoint, dcp, native"
)
return Checkpointer
class CheckpointerBase(ABC):
"""Base class for checkpointer"""
@abstractmethod
def save(
cls,
path: str,
state: Dict[str, Any],
):
return
@abstractmethod
def load(
cls,
path: str,
state: Dict[str, Any],
):
return
class DistributedCheckpointer(CheckpointerBase):
"""
Distributed checkpointer for torch.distributed.checkpoint
"""
@classmethod
def save(
cls,
path: str,
state: Dict[str, Any],
global_steps: int = None,
save_async=False,
) -> None:
"""
save training state to distributed checkpoint
args:
path: path to save checkpoint
state: state to save
global_steps: global steps
save_async: whether to save asynchronously
return:
None
"""
checkpoint_dir = f"{path}/global_step_{global_steps}" if global_steps else path
os.makedirs(checkpoint_dir, exist_ok=True)
if "model" not in state:
raise ValueError("Model must be provided to save a distributed checkpoint.")
if save_async:
model_dir = os.path.join(checkpoint_dir, _MODEL_DIR)
dcp.async_save(
state_dict={"state": ModelState(state["model"])},
storage_writer=FileSystemWriter(
model_dir,
thread_count=16,
single_file_per_rank=True,
sync_files=False,
),
)
if "ema" in state and state["ema"] is not None:
ema_dir = os.path.join(checkpoint_dir, _EMA_DIR)
dcp.async_save(
state_dict={"state": ModelState(state["ema"])},
storage_writer=FileSystemWriter(
ema_dir,
thread_count=16,
single_file_per_rank=True,
sync_files=False,
),
)
if "optimizer" in state:
optimizer_dir = os.path.join(checkpoint_dir, _OPTIMIZER_DIR)
dcp.async_save(
state_dict={"state": OptimizerState(model=state["model"], optimizer=state["optimizer"])},
storage_writer=FileSystemWriter(
optimizer_dir,
thread_count=16,
single_file_per_rank=True,
sync_files=False,
),
)
else:
def safe_create_writer(output_dir):
tmp_path = Path(output_dir) / ".metadata.tmp"
if tmp_path.exists():
print(f"Warning: removing existing tmp file: {tmp_path}")
tmp_path.unlink() # remove .metadata.tmp
return FileSystemWriter(
output_dir,
thread_count=16,
single_file_per_rank=True,
sync_files=False,
)
model_dir = os.path.join(checkpoint_dir, _MODEL_DIR)
storage_writer = safe_create_writer(model_dir)
dcp.save(
state_dict={"state": ModelState(state["model"])},
storage_writer=storage_writer,
)
if "ema" in state and state["ema"] is not None:
ema_dir = os.path.join(checkpoint_dir, _EMA_DIR)
storage_writer = safe_create_writer(ema_dir)
dcp.save(
state_dict={"state": ModelState(state["ema"])},
storage_writer=storage_writer,
)
if "optimizer" in state:
optimizer_dir = os.path.join(checkpoint_dir, _OPTIMIZER_DIR)
dcp.save(
state_dict={"state": OptimizerState(model=state["model"], optimizer=state["optimizer"])},
storage_writer=FileSystemWriter(
optimizer_dir,
thread_count=16,
single_file_per_rank=True,
sync_files=False,
),
)
# dist.barrier()
if "extra_state" in state:
extra_state_dir = os.path.join(checkpoint_dir, _EXTRA_STATE_DIR)
os.makedirs(extra_state_dir, exist_ok=True)
extra_state_path = os.path.join(extra_state_dir, _EXTRA_STATE_FORMAT.format(dist.get_rank()))
torch.save(
state["extra_state"],
extra_state_path,
)
logger.info_rank0(f"Saved checkpoint to {checkpoint_dir}")
@classmethod
def load(
cls,
path: str,
state: Dict[str, Any],
process_group=None,
) -> Dict[str, Any]:
"""
load training state from distributed checkpoint
args:
path: path to load checkpoint
state: state to load, "model" are required, "optimizer" and "extra_state" are optional
return:
state: state loaded
"""
checkpoint_dir = path
if state is None:
raise ValueError("State dict must be provided to load a distributed checkpoint.")
if "model" not in state:
raise ValueError("Model must be provided to load a distributed checkpoint.")
if "ema" in state and state["ema"] is not None:
ema_dir = os.path.join(checkpoint_dir, _EMA_DIR)
dcp.load(
state_dict={"state": ModelState(state["ema"])},
storage_reader=FileSystemReader(ema_dir),
process_group=process_group,
)
if "optimizer" in state:
model_dir = os.path.join(checkpoint_dir, _MODEL_DIR)
dcp.load(
state_dict={"state": ModelState(state["model"])},
storage_reader=FileSystemReader(model_dir),
process_group=process_group,
)
optimizer_dir = os.path.join(checkpoint_dir, _OPTIMIZER_DIR)
try:
dcp.load(
state_dict={"state": OptimizerState(model=state["model"], optimizer=state["optimizer"])}, # 1043
storage_reader=FileSystemReader(optimizer_dir), # 1027
planner = DefaultLoadPlanner(allow_partial_load=True),
process_group=process_group,
)
except:
logger.info_rank0(f"Skip loading Optimizer from {checkpoint_dir}")
else:
model_dir = os.path.join(checkpoint_dir, _MODEL_DIR)
dcp.load(
state_dict={"state": ModelState(state["model"])},
storage_reader=FileSystemReader(model_dir),
process_group=process_group,
)
if "extra_state" in state:
extra_state_dir = os.path.join(checkpoint_dir, _EXTRA_STATE_DIR)
os.makedirs(extra_state_dir, exist_ok=True)
extra_state_path = os.path.join(extra_state_dir, _EXTRA_STATE_FORMAT.format(dist.get_rank()))
state["extra_state"] = torch.load(
extra_state_path,
)
logger.info_rank0(f"Loaded checkpoint from {checkpoint_dir}")
return state
|