File size: 15,110 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 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 | # 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 asyncio
import concurrent.futures
import logging
import os
import time
import types
from collections import defaultdict
from dataclasses import dataclass
from typing import AsyncGenerator, Generator
import checkpoint_engine.distributed as dist
import ray
import torch
from checkpoint_engine.ps import H2DBucket, ParameterMeta, ParameterServer, _gen_h2d_buckets, _to_named_tensor
from verl.checkpoint_engine.base import CheckpointEngine, CheckpointEngineRegistry
from verl.utils.device import get_nccl_backend, get_torch_device
from verl.utils.net_utils import get_free_port
logger = logging.getLogger(__name__)
logger.setLevel(os.getenv("VERL_LOGGING_LEVEL", "WARN"))
def ckpt_get_named_tensor_buckets(
iterable: Generator[tuple[str, torch.Tensor], None, None],
bucket_bytes: int,
world_size: int,
rank_id: int,
rollout_dtype: torch.dtype = torch.bfloat16,
) -> dict[str, torch.Tensor]:
if bucket_bytes <= 0:
raise ValueError(f"bucket_bytes must be greater than 0, got {bucket_bytes}")
current_bucket = {}
current_size = 0
for tensor_idx, (name, tensor) in enumerate(iterable):
tensor = tensor.to(rollout_dtype)
if tensor_idx % world_size == rank_id:
tensor_size = tensor.element_size() * tensor.numel()
if current_size + tensor_size > bucket_bytes:
if current_bucket:
yield current_bucket
current_bucket = {}
current_size = 0
current_bucket[name] = tensor
current_size += tensor_size
if current_bucket:
yield current_bucket
async def receive_tensor(
self,
checkpoint_name: str,
ranks_group: int,
ranks: list[int] | None = None,
bucket_size: int = 2 << 30,
disable_h2d_buffer: bool = False,
) -> AsyncGenerator[tuple[str, torch.Tensor], None]:
assert len(self._current_global_parameter_metas) != 0, "parameter metas is empty"
assert dist.is_initialized(), "process group is not initialized"
assert self._p2p_store is not None, "p2p store is not initialized"
assert ranks, "ranks should be set"
# first execute a barrier to avoid subsequent device oom
dist.barrier(group=ranks_group)
buckets = _gen_h2d_buckets(
self._current_global_parameter_metas,
bucket_size,
self._local_rdma_devices,
self._remote_rdma_devices,
ranks,
)
h2d_buffer: torch.Tensor | None = (
None
if disable_h2d_buffer
else torch.empty(bucket_size, dtype=torch.uint8, device=self.device_manager.device_type)
)
# p2p store need to register h2d_buffer to let other ranks read
if ranks:
h2d_buffer_name = "__h2d_buffer__"
if h2d_buffer is not None and self._p2p_store is not None:
self._p2p_store.register_named_tensors({h2d_buffer_name: h2d_buffer})
receiver_rank_buckets: list[tuple[int, H2DBucket]] = []
for receiver_rank, owner_rank, bucket in buckets:
if receiver_rank != self._rank:
continue
receiver_rank_buckets.append((owner_rank, bucket))
buffer = torch.empty(bucket_size * 2, dtype=torch.uint8, device=self.device_manager.device_type)
buckets_by_receiver_rank: dict[int, list[H2DBucket]] = defaultdict(list)
max_len = 0
for receiver_rank, _, bucket in buckets:
buckets_by_receiver_rank[receiver_rank].append(bucket)
if len(buckets_by_receiver_rank[receiver_rank]) > max_len:
max_len = len(buckets_by_receiver_rank[receiver_rank])
gidx = 0
metadata: list[ParameterMeta]
try:
for i in range(max_len):
if i < len(receiver_rank_buckets) and not disable_h2d_buffer:
self._copy_to_buffer(
checkpoint_name,
receiver_rank_buckets[i][1],
h2d_buffer,
receiver_rank_buckets[i][0] if ranks else None,
)
for receiver_rank, _buckets in buckets_by_receiver_rank.items():
if i >= len(_buckets):
continue
bucket = _buckets[i]
start = gidx % 2 * bucket_size
buffer_b: torch.Tensor = buffer[start : start + bucket.size]
if receiver_rank == self._rank:
if disable_h2d_buffer:
self._copy_to_buffer(checkpoint_name, bucket, buffer_b)
else:
buffer_b.data.copy_(h2d_buffer[: bucket.size])
broadcast_op = BroadcastOperation(
rank=receiver_rank,
ranks_group=ranks_group,
bucket=buffer_b,
metadata=bucket.items,
)
if gidx == 0:
metadata = await broadcast_op.wait_for_complete()
gidx += 1
continue
meta_list = _to_named_tensor(metadata, (gidx - 1) % 2 * bucket_size)
for item in meta_list:
shape = item["shape"]
if isinstance(shape, list | tuple):
shape = torch.Size(shape)
assert isinstance(shape, torch.Size)
dtype, offset = item["dtype"], item["offset"]
size = dtype.itemsize * shape.numel()
tensor = buffer[offset : offset + size].view(dtype=dtype).view(shape)
yield item["name"], tensor
metadata = await broadcast_op.wait_for_complete()
self.device_manager.device_module.synchronize()
gidx += 1
meta_list = _to_named_tensor(metadata, (gidx - 1) % 2 * bucket_size)
for item in meta_list:
shape = item["shape"]
if isinstance(shape, list | tuple):
shape = torch.Size(shape)
assert isinstance(shape, torch.Size)
dtype, offset = item["dtype"], item["offset"]
size = dtype.itemsize * shape.numel()
tensor = buffer[offset : offset + size].view(dtype=dtype).view(shape)
yield item["name"], tensor
finally:
dist.barrier(group=ranks_group)
if ranks and h2d_buffer is not None:
self._p2p_store.unregister_named_tensors([h2d_buffer_name])
self.device_manager.device_module.empty_cache()
@dataclass
class MasterMetadata:
zmq_ip: str
zmq_port: int
dist_ip: str
dist_port: int
class BroadcastOperation:
"""Async broadcast operation in separate thread.
Args:
rank (int): The rank of the current process.
ranks_group (int): The process group's value.
bucket (torch.Tensor): The tensor to broadcast.
metadata (list[ParameterMeta]): The metadata of the tensor.
"""
def __init__(
self,
rank: int,
ranks_group: int,
bucket: torch.Tensor,
metadata: list[ParameterMeta],
) -> None:
self.rank = rank
self.ranks_group = ranks_group
self.bucket = bucket
self.metadata = metadata
loop = asyncio.get_running_loop()
self._task = loop.run_in_executor(None, self._run)
def _run(self):
# broadcast tensor
dist.broadcast(self.bucket, src=self.rank, group=self.ranks_group)
async def wait_for_complete(self) -> list[ParameterMeta]:
"""Wait for the broadcast operation to complete.
Returns:
list[ParameterMeta]: The bucket meta after broadcast.
"""
await self._task
return self.metadata
@CheckpointEngineRegistry.register("kimi_ckpt_engine")
class KIMICheckpointEngine(CheckpointEngine):
"""kimi checkpoint engine with collective communication.
Args:
bucket_size (int): Bucket size in bytes to transfer multiple weights at one time. Note that we use
two buffer to send and recv weights at same time, so the device memory overhead is 2 * bucket_size.
rebuild_group (bool): Whether to rebuild the process group in each update. Defaults to False.
is_master (bool): Whether the current process is the master process. Defaults to False.
rollout_dtype (torch.dtype): The dtype of the weights received from rollout workers. Defaults to torch.bfloat16.
"""
def __init__(
self,
bucket_size: int,
rebuild_group: bool = False,
is_master: bool = False,
rollout_dtype: torch.dtype = torch.bfloat16,
) -> None:
self.bucket_size = bucket_size
self.rebuild_group = rebuild_group
self.rollout_dtype = rollout_dtype
self.is_master = is_master
self.initialized = False
self.checkpoint_name = "kimi_checkpoint_engine"
def prepare(self) -> MasterMetadata:
if self.is_master:
self.ip = ray.util.get_node_ip_address().strip("[]")
self.listen_port, _ = get_free_port(self.ip)
return (
MasterMetadata(zmq_ip=None, zmq_port=None, dist_ip=self.ip, dist_port=self.listen_port)
if self.is_master
else None
)
def finalize(self):
"""Destroy the ckpt engine process group if rebuild_group is True."""
if self.rebuild_group:
dist.destroy_process_group()
self.rank = None
self.world_size = None
self.initialized = False
@classmethod
def build_topology(cls, trainer_world_size: int, rollout_world_size: int, metadata: list[dict]):
trainer_kwargs = {
"method": ["init_process_group"] * trainer_world_size,
"rank": list(range(0, trainer_world_size)),
"trainer_world_size": [trainer_world_size] * trainer_world_size,
"rollout_world_size": [rollout_world_size] * trainer_world_size,
"master_metadata": [metadata[0]] * trainer_world_size,
}
rollout_kwargs = {
"method": ["init_process_group"] * rollout_world_size,
"rank": list(range(trainer_world_size, trainer_world_size + rollout_world_size)),
"trainer_world_size": [trainer_world_size] * rollout_world_size,
"rollout_world_size": [rollout_world_size] * rollout_world_size,
"master_metadata": [metadata[0]] * rollout_world_size,
}
return trainer_kwargs, rollout_kwargs
def init_process_group(
self,
rank: int,
trainer_world_size: int,
rollout_world_size: int,
master_metadata: MasterMetadata,
):
"""Initialize the ckpt engine process group.
Args:
rank (int): The rank of the current process.
world_size (int): The total number of processes.
"""
self.rank = rank
self.trainer_world_size = trainer_world_size
self.rollout_world_size = rollout_world_size
self.world_size = trainer_world_size + rollout_world_size
if not self.initialized:
self.parameter_server = ParameterServer(
rank=rank,
world_size=self.world_size,
auto_pg=False,
master_addr=master_metadata.dist_ip,
master_port=master_metadata.dist_port,
)
self.parameter_server.receive_tensor = types.MethodType(receive_tensor, self.parameter_server)
dist.use_backend(f"vllm_{get_nccl_backend()}")
self.parameter_server.init_process_group()
self.rollout_ranks = list(range(self.trainer_world_size, self.world_size))
self.rollout_group = dist.new_group(self.rollout_ranks)
self.initialized = True
@torch.no_grad()
async def send_weights(self, weights: Generator[tuple[str, torch.Tensor], None, None]):
"""Send the weights of the model.
Args:
weights: A generator that yields the name of the weight tensor and the tensor itself.
"""
def offload_cpu(name: str, tensor: torch.Tensor) -> tuple[str, torch.Tensor]:
return name, tensor.to("cpu", non_blocking=True)
start_time = time.time()
named_tensors = {}
for named_tensors_gpu in ckpt_get_named_tensor_buckets(
weights, self.bucket_size, self.trainer_world_size, self.rank, self.rollout_dtype
):
with concurrent.futures.ThreadPoolExecutor(max_workers=32) as executor:
futures = [
executor.submit(
offload_cpu,
name,
tensor,
)
for name, tensor in named_tensors_gpu.items()
]
for future in concurrent.futures.as_completed(futures):
name, tensor_cpu = future.result()
named_tensors[name] = tensor_cpu
get_torch_device().synchronize()
self.parameter_server.register_checkpoint(self.checkpoint_name, named_tensors=named_tensors)
named_tensors = {}
get_torch_device().empty_cache()
logger.info(f"Rank {self.rank} offload and register, time cost: {time.time() - start_time:.2f}s")
self.parameter_server.gather_metas(self.checkpoint_name)
dist.barrier()
self.parameter_server.unregister_checkpoint(self.checkpoint_name)
logger.info(f"Rank {self.rank} send weights done, time cost: {time.time() - start_time:.2f}s")
@torch.no_grad()
async def receive_weights(self) -> AsyncGenerator[tuple[str, torch.Tensor], None]:
"""Receive the weights of the model.
Yields:
A tuple of the name of the weight tensor and the tensor itself.
"""
self.parameter_server.gather_metas(self.checkpoint_name)
start_time = time.time()
total_bytes, total_params = 0, 0
async for name, tensor in self.parameter_server.receive_tensor(
self.checkpoint_name, self.rollout_group, self.rollout_ranks, self.bucket_size
):
total_bytes += tensor.element_size() * tensor.nelement()
total_params += 1
yield name, tensor
dist.barrier()
time_cost = time.time() - start_time
bandwidth = total_bytes / time_cost / (1024 * 1024 * 1024)
logger.info(
f"Rank {self.rank} receive weights done, total_params: {total_params}, "
f"time cost: {time_cost:.2f}s, bandwidth: {bandwidth:.2f} GB/s"
)
|