Spaces:
Running on Zero
Running on Zero
File size: 14,396 Bytes
fed6c68 | 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 | # 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.
from typing import Any, Optional, Tuple
import torch
import torch.distributed as dist
from torch import Tensor
from torch.distributed import ProcessGroup
from ...utils.device import get_device_id
from .comm import (
get_ulysses_sequence_parallel_group,
get_ulysses_sequence_parallel_world_size,
)
from .utils import (
pad_tensor,
unpad_tensor,
)
def _all_gather(
x: Tensor,
group: dist.ProcessGroup,
):
device = x.device
dtype = x.dtype
group = get_ulysses_sequence_parallel_group() if group is None else group
sp_world_size = dist.get_world_size(group)
x_size = torch.tensor(x.size()).to(device)
size_list = [torch.zeros(x_size.size(), dtype=torch.int64, device=device) for i in range(sp_world_size)]
dist.all_gather(size_list, x_size, group=group)
tensor_list = [torch.zeros(torch.Size(size_list[i]), dtype=dtype, device=device) for i in range(sp_world_size)]
dist.all_gather(tensor_list, x, group=group)
return tensor_list, size_list
def _all_gather_into_tensor(
x: Tensor,
group: dist.ProcessGroup,
):
dim_size = list(x.size())
group = get_ulysses_sequence_parallel_group() if group is None else group
sp_world_size = dist.get_world_size(group)
dim_size[0] = dim_size[0] * sp_world_size
output = torch.empty(dim_size, dtype=x.dtype, device=get_device_id())
dist.all_gather_into_tensor(output, x, group=group)
return output
def _all_to_all(
local_input: Tensor,
scatter_dim: int,
gather_dim: int,
group: Optional[dist.ProcessGroup] = None,
async_op: bool = False,
):
group = get_ulysses_sequence_parallel_group() if group is None else group
seq_world_size = dist.get_world_size(group)
input_list = [t.contiguous() for t in torch.tensor_split(local_input, seq_world_size, scatter_dim)]
output_list = [torch.empty_like(input_list[0]) for _ in range(seq_world_size)]
comm = dist.all_to_all(output_list, input_list, group=group, async_op=async_op)
if async_op:
def wait():
comm.wait()
return torch.cat(output_list, dim=gather_dim).contiguous()
return wait
return torch.cat(output_list, dim=gather_dim).contiguous()
def _all_to_all_single(
x: Tensor, scatter_dim: int, gather_dim: int, group: Optional[dist.ProcessGroup] = None, async_op: bool = False
):
"""
A function to do all-to-all on the first two dim
"""
group = get_ulysses_sequence_parallel_group() if group is None else group
sp_world_size = dist.get_world_size(group)
assert scatter_dim <= 1, "scatter_dim must be 0 or 1 when using all_to_all_single!"
assert gather_dim <= 1, "gather_dim must be 0 or 1 when using all_to_all_single!"
if scatter_dim != 0:
gather_dim_bef = x.shape[gather_dim]
scatter_dim_bef = x.shape[scatter_dim]
x = (
x.reshape([gather_dim_bef, sp_world_size, scatter_dim_bef // sp_world_size] + list(x.shape[2:]))
.transpose(0, 1)
.reshape([gather_dim_bef * sp_world_size, scatter_dim_bef // sp_world_size] + list(x.shape[2:]))
.contiguous()
)
output = torch.empty_like(x)
comm = dist.all_to_all_single(output, x.contiguous(), group=group, async_op=async_op)
if async_op:
def wait():
comm.wait()
if scatter_dim == 0:
return torch.cat(output.split(x.size(0) // sp_world_size), dim=gather_dim)
else:
return output
return wait
if scatter_dim == 0:
output = torch.cat(output.split(x.size(0) // sp_world_size), dim=gather_dim)
return output
def all_to_all_tensor(
x: Tensor,
scatter_dim: int,
gather_dim: int,
group: dist.ProcessGroup,
async_op: bool = False,
):
if scatter_dim <= 1 and gather_dim <= 1:
return _all_to_all_single(x, scatter_dim, gather_dim, group, async_op)
else:
return _all_to_all(x, scatter_dim, gather_dim, group, async_op)
class _SeqAllToAll(torch.autograd.Function):
@staticmethod
def forward(
ctx: Any,
group: dist.ProcessGroup,
local_input: Tensor,
scatter_dim: int,
gather_dim: int,
) -> Tensor:
ctx.group = group
ctx.scatter_dim = scatter_dim
ctx.gather_dim = gather_dim
return all_to_all_tensor(local_input, scatter_dim, gather_dim, group)
@staticmethod
def backward(ctx: Any, *grad_output: Tensor) -> Tuple[None, Tensor, None, None]:
input_t = grad_output[0]
return (
None,
all_to_all_tensor(input_t, ctx.gather_dim, ctx.scatter_dim, ctx.group, False),
None,
None,
)
class _Slice(torch.autograd.Function):
@staticmethod
def forward(ctx: Any, group: dist.ProcessGroup, local_input: Tensor, dim: int, scale_grad: bool) -> Tensor:
ctx.group = group
ctx.rank = dist.get_rank(group)
seq_world_size = dist.get_world_size(group)
ctx.seq_world_size = seq_world_size
ctx.dim = dim
ctx.scale_grad = scale_grad
dim_size = local_input.shape[dim]
return local_input.split(dim_size // seq_world_size, dim=dim)[ctx.rank].contiguous()
@staticmethod
def backward(ctx: Any, grad_output: Tensor) -> Tuple[None, Tensor, None]:
dim_size = list(grad_output.size())
split_size = dim_size[0]
output = _all_gather_into_tensor(grad_output, group=ctx.group)
if ctx.scale_grad:
output = output / ctx.seq_world_size
return (None, torch.cat(output.split(split_size), dim=ctx.dim), None, None)
class _Gather(torch.autograd.Function):
@staticmethod
def forward(
ctx: Any,
group: dist.ProcessGroup,
local_input: Tensor,
dim: int,
grad_scale: Optional[bool] = False,
) -> Tensor:
ctx.group = group
ctx.rank = dist.get_rank(group)
ctx.dim = dim
ctx.grad_scale = grad_scale
seq_world_size = dist.get_world_size(group)
ctx.seq_world_size = seq_world_size
output, size_list = _all_gather(local_input.contiguous(), group=ctx.group)
dim_size_list = [size_list[i][dim].item() for i in range(seq_world_size)]
ctx.dim_size_list = dim_size_list
return torch.cat(output, dim=dim)
@staticmethod
def backward(ctx: Any, grad_output: Tensor) -> Tuple[None, Tensor]:
if ctx.grad_scale:
grad_output = grad_output * ctx.seq_world_size
dist.all_reduce(grad_output, op=dist.ReduceOp.SUM, group=ctx.group)
return (
None,
grad_output.split(ctx.dim_size_list, dim=ctx.dim)[ctx.rank].contiguous(),
None,
None,
)
def gather_heads_scatter_seq(x: Tensor, head_dim: int, seq_dim: int, group: ProcessGroup = None) -> Tensor:
"""
A func to sync attention result with alltoall in sequence parallel
"""
group = get_ulysses_sequence_parallel_group() if group is None else group
if not group:
return x
dim_size = x.size(seq_dim)
sp_world = get_ulysses_sequence_parallel_world_size(group)
if dim_size % sp_world != 0:
padding_size = sp_world - (dim_size % sp_world)
x = pad_tensor(x, seq_dim, padding_size)
return _SeqAllToAll.apply(group, x, seq_dim, head_dim)
def gather_seq_scatter_heads(
x: Tensor,
seq_dim: int,
head_dim: int,
unpadded_dim_size: int = 0,
group: ProcessGroup = None,
) -> Tensor:
"""
A func to sync embedding input with alltoall in sequence parallel
"""
group = get_ulysses_sequence_parallel_group() if group is None else group
if not group:
return x
sp_world = get_ulysses_sequence_parallel_world_size(group)
x = _SeqAllToAll.apply(group, x, head_dim, seq_dim)
if unpadded_dim_size and unpadded_dim_size % sp_world != 0:
padding_size = x.size(seq_dim) - unpadded_dim_size
x = unpad_tensor(x, seq_dim, padding_size)
return x
def gather_seq_scatter_heads_qkv(
qkv_tensor: Tensor,
seq_dim: int,
unpadded_dim_size: Optional[int] = None,
restore_shape: bool = True,
group: ProcessGroup = None,
) -> Tensor:
"""
A func to sync splited qkv tensor
qkv_tensor: the tensor we want to do alltoall with. The last dim must
be the projection_idx, which we will split into 3 part. After
spliting, the gather idx will be projecttion_idx + 1
seq_dim: gather_dim for all2all comm
restore_shape: if True, output will has the same shape length as input
"""
group = get_ulysses_sequence_parallel_group() if group is None else group
if not group:
return qkv_tensor
sp_world = get_ulysses_sequence_parallel_world_size(group)
orig_shape = qkv_tensor.shape
scatter_dim = qkv_tensor.dim()
bef_all2all_shape = list(orig_shape)
qkv_proj_dim = bef_all2all_shape[-1]
bef_all2all_shape = bef_all2all_shape[:-1] + [3, qkv_proj_dim // 3]
qkv_tensor = qkv_tensor.view(bef_all2all_shape)
qkv_tensor = _SeqAllToAll.apply(group, qkv_tensor, scatter_dim, seq_dim)
if restore_shape:
out_shape = list(orig_shape)
out_shape[seq_dim] *= sp_world
out_shape[-1] = qkv_proj_dim // sp_world
qkv_tensor = qkv_tensor.view(out_shape)
# remove padding
if unpadded_dim_size and unpadded_dim_size % sp_world != 0:
padding_size = qkv_tensor.size(seq_dim) - unpadded_dim_size
qkv_tensor = unpad_tensor(qkv_tensor, seq_dim, padding_size)
return qkv_tensor
class _AlltoAllRegion(torch.autograd.Function):
"""balance the intermediate tensors in the sequence parallel region"""
@staticmethod
def forward(ctx, group, x, input_splits, output_splits):
ctx.group = group
ctx.input_splits = input_splits
ctx.output_splits = output_splits
input_tensor_list = list(x.split(input_splits, dim=0))
input_tensor_list = [t.contiguous() for t in input_tensor_list]
output_tensor_list = [torch.empty([o, *x.shape[1:]], dtype=x.dtype, device=x.device) for o in output_splits]
dist.all_to_all(output_tensor_list, input_tensor_list, group=group)
return torch.cat(output_tensor_list, dim=0)
def backward(ctx, dy):
dx_list = [torch.empty([i, *dy.shape[1:]], dtype=dy.dtype, device=dy.device) for i in ctx.input_splits]
dy_list = list(dy.split(ctx.output_splits, dim=0))
dist.all_to_all(dx_list, dy_list, group=ctx.group)
return None, torch.cat(dx_list, dim=0), None, None
def all_to_all_images(image_embeds, in_splits, out_splits):
if not in_splits:
return image_embeds
image_embeds = image_embeds[: sum(in_splits)]
group = get_ulysses_sequence_parallel_group()
return _AlltoAllRegion.apply(group, image_embeds, in_splits, out_splits)
class _Roll(torch.autograd.Function):
"""
Distributed implementation of `torch.roll` using batched isend / irecv
"""
@staticmethod
def _impl(input: torch.Tensor, shifts: int, dims: int, group: dist.ProcessGroup):
world_size = dist.get_world_size(group)
rank = dist.get_rank(group)
dimlen = input.size(dims)
assert abs(shifts) <= dimlen
if shifts > 0: # roll afterwards
splits = [dimlen - shifts, shifts]
body, chunk = torch.split(input, splits, dims)
dst = (rank + 1 + world_size) % world_size
src = (rank - 1 + world_size) % world_size
else:
splits = [-shifts, dimlen + shifts]
chunk, body = torch.split(input, splits, dims)
dst = (rank - 1 + world_size) % world_size
src = (rank + 1 + world_size) % world_size
chunk = chunk.contiguous()
recv_chunk = torch.empty_like(chunk)
ops = [
dist.P2POp(dist.irecv, recv_chunk, dist.get_global_rank(group, src), group),
dist.P2POp(dist.isend, chunk, dist.get_global_rank(group, dst), group),
]
works = dist.batch_isend_irecv(ops)
for work in works:
work.wait()
if shifts > 0:
output = torch.cat([recv_chunk, body], dims)
else:
output = torch.cat([body, recv_chunk], dims)
return output.contiguous()
@staticmethod
def forward(ctx, input: torch.Tensor, shifts: int, dims: int, group: dist.ProcessGroup):
ctx.group = group
ctx.shifts = shifts
ctx.dims = dims
assert isinstance(shifts, int), "shifts must be an integer"
assert isinstance(dims, int), "dims must be an integer"
if group is None or shifts == 0:
return torch.roll(input, shifts, dims)
return _Roll._impl(input, shifts, dims, group)
@staticmethod
def backward(ctx, grad_output):
group = ctx.group
shifts = ctx.shifts
dims = ctx.dims
if group is None or shifts == 0:
return torch.roll(grad_output, -shifts, dims), None, None, None
return _Roll._impl(grad_output, -shifts, dims, group), None, None, None
def roll_with_sequence_parallel(
input: torch.Tensor, shifts: int, dims: int, group: dist.ProcessGroup = None
) -> torch.Tensor:
"""
Roll the tensor within sequence parallel region. This is the
distributed implementation version of `torch.roll`
args:
input: input tensor of shape (sliced_tokens, num_head, head_dim)
shifts: number of positions to shift
dims: dimension to shift
returns:
rolled_tensor: rolled tensor of shape (sliced_tokens, num_head, head_dim)
"""
group = get_ulysses_sequence_parallel_group() if group is None else group
return _Roll.apply(input, shifts, dims, group)
|