mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
Pull Request resolved: https://github.com/pytorch/pytorch/pull/103334 Approved by: https://github.com/kumpera
417 lines
15 KiB
Python
417 lines
15 KiB
Python
# Copyright (c) Meta Platforms, Inc. and affiliates
|
|
# Owner(s): ["oncall: distributed"]
|
|
|
|
import torch
|
|
import torch.distributed as dist
|
|
import torch.nn as nn
|
|
from torch.distributed._tensor import DeviceMesh, DTensor, Replicate
|
|
from torch.distributed.algorithms._checkpoint.checkpoint_wrapper import (
|
|
checkpoint_wrapper,
|
|
CheckpointImpl,
|
|
)
|
|
from torch.distributed.tensor.parallel import (
|
|
PairwiseParallel,
|
|
parallelize_module,
|
|
SequenceParallel,
|
|
TensorParallelMultiheadAttention,
|
|
)
|
|
from torch.distributed.tensor.parallel.input_reshard import input_reshard
|
|
from torch.testing._internal.common_utils import (
|
|
instantiate_parametrized_tests,
|
|
parametrize,
|
|
run_tests,
|
|
)
|
|
from torch.testing._internal.distributed._tensor.common_dtensor import (
|
|
DTensorTestBase,
|
|
MLPModule,
|
|
NUM_DEVICES,
|
|
skip_unless_torch_gpu,
|
|
with_comms,
|
|
)
|
|
|
|
|
|
class MultiheadAttnWrap(nn.Module):
|
|
def __init__(self, embed_dim, num_heads, add_bias_kv=False, device=None):
|
|
super().__init__()
|
|
self.attn = nn.MultiheadAttention(
|
|
embed_dim, num_heads, add_bias_kv=add_bias_kv, device=device
|
|
)
|
|
|
|
def forward(self, query, key, value):
|
|
return self.attn(query, key, value)
|
|
|
|
|
|
class DistTensorParallelExampleTest(DTensorTestBase):
|
|
def _check_module(self, m1, m2, check_grad=False, rank0_only_params=None):
|
|
rank0_only_params = [] if rank0_only_params is None else rank0_only_params
|
|
named_parameters = dict(m1.named_parameters())
|
|
for name, param_m2 in m2.named_parameters():
|
|
if self.rank != 0 and name in rank0_only_params:
|
|
continue
|
|
self.assertTrue(name in named_parameters)
|
|
param_m1 = named_parameters[name]
|
|
if check_grad:
|
|
param_m2 = param_m2.grad
|
|
param_m1 = param_m1.grad
|
|
if isinstance(param_m2, DTensor):
|
|
replicate = [Replicate()]
|
|
param_m2 = param_m2.redistribute(
|
|
device_mesh=param_m2.device_mesh, placements=replicate
|
|
).to_local()
|
|
self.assertEqual(param_m2, param_m1)
|
|
|
|
def _test_mlp_magatron_e2e(self, is_seq_parallel=False, recompute_activation=False):
|
|
inp_size = [8, 10]
|
|
# Ensure all tp ranks have same input.
|
|
rng_seed = self.rank if is_seq_parallel else 0
|
|
torch.manual_seed(rng_seed)
|
|
inp = torch.rand(*inp_size, device=self.device_type)
|
|
model = MLPModule(self.device_type)
|
|
model_tp = MLPModule(self.device_type)
|
|
|
|
# Ensure model are initialized the same way.
|
|
self._check_module(model, model_tp)
|
|
|
|
# Shard module and initialize optimizer.
|
|
LR = 0.25
|
|
device_mesh = DeviceMesh(
|
|
self.device_type,
|
|
torch.arange(0, NUM_DEVICES),
|
|
)
|
|
parallel_style = SequenceParallel() if is_seq_parallel else PairwiseParallel()
|
|
model_tp = parallelize_module(model_tp, device_mesh, parallel_style)
|
|
if recompute_activation:
|
|
model_tp = input_reshard(
|
|
checkpoint_wrapper(
|
|
model_tp, checkpoint_impl=CheckpointImpl.NO_REENTRANT
|
|
),
|
|
device_mesh,
|
|
None if is_seq_parallel else 0,
|
|
)
|
|
optim = torch.optim.SGD(model.parameters(), lr=LR)
|
|
optim_tp = torch.optim.SGD(model_tp.parameters(), lr=LR)
|
|
|
|
output = model(inp)
|
|
output_tp = model_tp(inp)
|
|
self.assertEqual(output, output_tp)
|
|
|
|
output.sum().backward()
|
|
output_tp.sum().backward()
|
|
|
|
if is_seq_parallel:
|
|
# Sum gradients from different ranks, since input
|
|
# are different across ranks for sequence parallel.
|
|
dist.all_reduce(model.net1.weight.grad)
|
|
dist.all_reduce(model.net1.bias.grad)
|
|
dist.all_reduce(model.net2.weight.grad)
|
|
dist.all_reduce(model.net2.bias.grad)
|
|
|
|
# Ensure gradients are same.
|
|
self._check_module(model, model_tp, check_grad=True)
|
|
|
|
optim.step()
|
|
optim_tp.step()
|
|
|
|
# Ensure model weights are still same after update.
|
|
# Due to the trick we use for Partial aggregation, we only check the weight when local_rank = 0.
|
|
self._check_module(model, model_tp, rank0_only_params=["net2.bias"])
|
|
|
|
inp = torch.rand(*inp_size, device=self.device_type)
|
|
output = model(inp)
|
|
output_tp = model_tp(inp)
|
|
self.assertEqual(output, output_tp)
|
|
|
|
@with_comms
|
|
@parametrize("is_seq_parallel", [True, False])
|
|
@parametrize("recompute_activation", [True, False])
|
|
def test_mlp_megatron_e2e(self, is_seq_parallel, recompute_activation):
|
|
self._test_mlp_magatron_e2e(is_seq_parallel=is_seq_parallel, recompute_activation=recompute_activation)
|
|
|
|
# TensorParallelMultiheadAttention == dist_module(TensorParallelMultiheadAttention)
|
|
# baddbmm introduces nan occasionally on CPU: https://github.com/pytorch/pytorch/issues/80588
|
|
@with_comms
|
|
@skip_unless_torch_gpu
|
|
def test_self_attn_megatron_e2e(self):
|
|
inp_size = [8, 12, 16]
|
|
# Ensure all tp ranks have same input.
|
|
torch.manual_seed(0)
|
|
inp = torch.rand(*inp_size, device=self.device_type)
|
|
|
|
# Initialize model using same seed.
|
|
torch.manual_seed(5)
|
|
model = TensorParallelMultiheadAttention(
|
|
16,
|
|
8,
|
|
tp_size=NUM_DEVICES,
|
|
add_bias_kv=True,
|
|
device=self.device_type,
|
|
)
|
|
torch.manual_seed(5)
|
|
model_tp = TensorParallelMultiheadAttention(
|
|
16,
|
|
8,
|
|
tp_size=NUM_DEVICES,
|
|
add_bias_kv=True,
|
|
device=self.device_type,
|
|
)
|
|
|
|
# Ensure model are initialized the same way.
|
|
self.assertEqual(model.qkv.weight, model_tp.qkv.weight)
|
|
self.assertEqual(model.qkv.bias, model_tp.qkv.bias)
|
|
self.assertEqual(model.proj.weight, model_tp.proj.weight)
|
|
self.assertEqual(model.proj.bias, model_tp.proj.bias)
|
|
|
|
# Shard module and initialize optimizer.
|
|
device_mesh = DeviceMesh(self.device_type, list(range(NUM_DEVICES)))
|
|
parallelize_module(model_tp, device_mesh, PairwiseParallel())
|
|
|
|
device_mesh = model_tp.qkv.weight.device_mesh
|
|
replicate = [Replicate()] * device_mesh.ndim
|
|
# Ensure model are initialized the same way.
|
|
self.assertEqual(
|
|
model.qkv.weight,
|
|
model_tp.qkv.weight.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.qkv.bias,
|
|
model_tp.qkv.bias.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.proj.weight,
|
|
model_tp.proj.weight.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.proj.bias,
|
|
model_tp.proj.bias.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
|
|
LR = 0.25
|
|
optim = torch.optim.SGD(model.parameters(), lr=LR)
|
|
optim_tp = torch.optim.SGD(model_tp.parameters(), lr=LR)
|
|
|
|
output = model(inp, inp, inp)
|
|
output_tp = model_tp(inp, inp, inp)
|
|
self.assertEqual(output, output_tp)
|
|
|
|
output.sum().backward()
|
|
output_tp.sum().backward()
|
|
|
|
device_mesh = model_tp.qkv.weight.device_mesh
|
|
# Ensure gradients are same.
|
|
self.assertEqual(
|
|
model.qkv.weight.grad,
|
|
model_tp.qkv.weight.grad.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.qkv.bias.grad,
|
|
model_tp.qkv.bias.grad.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.proj.weight.grad,
|
|
model_tp.proj.weight.grad.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.proj.bias.grad,
|
|
model_tp.proj.bias.grad.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
|
|
optim.step()
|
|
optim_tp.step()
|
|
|
|
# Ensure model weights are still same after update.
|
|
self.assertEqual(
|
|
model.qkv.weight,
|
|
model_tp.qkv.weight.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.qkv.bias,
|
|
model_tp.qkv.bias.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.proj.weight,
|
|
model_tp.proj.weight.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.proj.bias,
|
|
model_tp.proj.bias.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
|
|
inp = torch.rand(*inp_size, device=self.device_type)
|
|
output = model(inp, inp, inp)
|
|
output_tp = model_tp(inp, inp, inp)
|
|
self.assertEqual(output, output_tp)
|
|
|
|
# TensorParallelMultiheadAttention == dist_module(torch.nn.MultiheadAttention)
|
|
# baddbmm introduces nan occasionally on CPU: https://github.com/pytorch/pytorch/issues/80588
|
|
@with_comms
|
|
@skip_unless_torch_gpu
|
|
def test_self_attn_replacement_megatron_e2e(self):
|
|
inp_size = [8, 12, 16]
|
|
# Ensure all tp ranks have same input.
|
|
torch.manual_seed(0)
|
|
inp = torch.rand(*inp_size, device=self.device_type)
|
|
|
|
# TODO: our sharding function cannot shard the root node
|
|
torch.manual_seed(5)
|
|
model = TensorParallelMultiheadAttention(
|
|
16,
|
|
8,
|
|
tp_size=NUM_DEVICES,
|
|
add_bias_kv=True,
|
|
device=self.device_type,
|
|
)
|
|
model_tp = MultiheadAttnWrap(16, 8, add_bias_kv=True, device=self.device_type)
|
|
|
|
# TODO: somehow using torch.nn.MultiheadAttention's initial params does not work
|
|
# Use TensorParallelMultiheadAttention parameters instead
|
|
x = model.qkv.weight.clone().detach().requires_grad_()
|
|
model_tp.attn.register_parameter("in_proj_weight", torch.nn.Parameter(x))
|
|
|
|
x = model.qkv.bias.clone().detach().requires_grad_()
|
|
model_tp.attn.register_parameter("in_proj_bias", torch.nn.Parameter(x))
|
|
|
|
x = model.proj.weight.clone().detach().requires_grad_()
|
|
model_tp.attn.out_proj.register_parameter("weight", torch.nn.Parameter(x))
|
|
|
|
x = model.proj.bias.clone().detach().requires_grad_()
|
|
model_tp.attn.out_proj.register_parameter("bias", torch.nn.Parameter(x))
|
|
|
|
# check if parameters are same
|
|
self.assertEqual(model.qkv.weight, model_tp.attn.in_proj_weight)
|
|
self.assertEqual(model.qkv.bias, model_tp.attn.in_proj_bias)
|
|
self.assertEqual(model.proj.weight, model_tp.attn.out_proj.weight)
|
|
self.assertEqual(model.proj.bias, model_tp.attn.out_proj.bias)
|
|
|
|
# Shard module and initialize optimizer.
|
|
device_mesh = DeviceMesh(self.device_type, list(range(NUM_DEVICES)))
|
|
parallelize_module(model_tp, device_mesh, PairwiseParallel())
|
|
|
|
device_mesh = model_tp.attn.qkv.weight.device_mesh
|
|
replicate = [Replicate()] * device_mesh.ndim
|
|
# Ensure model are initialized the same way.
|
|
self.assertEqual(
|
|
model.qkv.weight,
|
|
model_tp.attn.qkv.weight.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.qkv.bias,
|
|
model_tp.attn.qkv.bias.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.proj.weight,
|
|
model_tp.attn.proj.weight.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.proj.bias,
|
|
model_tp.attn.proj.bias.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
|
|
LR = 0.25
|
|
optim = torch.optim.SGD(model.parameters(), lr=LR)
|
|
optim_tp = torch.optim.SGD(model_tp.parameters(), lr=LR)
|
|
|
|
output = model(inp, inp, inp)
|
|
output_tp = model_tp(inp, inp, inp)
|
|
self.assertEqual(output, output_tp)
|
|
|
|
output.sum().backward()
|
|
output_tp.sum().backward()
|
|
|
|
device_mesh = model_tp.attn.qkv.weight.device_mesh
|
|
# Ensure gradients are same.
|
|
self.assertEqual(
|
|
model.qkv.weight.grad,
|
|
model_tp.attn.qkv.weight.grad.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.qkv.bias.grad,
|
|
model_tp.attn.qkv.bias.grad.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.proj.weight.grad,
|
|
model_tp.attn.proj.weight.grad.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.proj.bias.grad,
|
|
model_tp.attn.proj.bias.grad.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
|
|
optim.step()
|
|
optim_tp.step()
|
|
|
|
# Ensure model weights are still same after update.
|
|
self.assertEqual(
|
|
model.qkv.weight,
|
|
model_tp.attn.qkv.weight.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.qkv.bias,
|
|
model_tp.attn.qkv.bias.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.proj.weight,
|
|
model_tp.attn.proj.weight.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
self.assertEqual(
|
|
model.proj.bias,
|
|
model_tp.attn.proj.bias.redistribute(
|
|
device_mesh=device_mesh, placements=replicate
|
|
).to_local(),
|
|
)
|
|
|
|
inp = torch.rand(*inp_size, device=self.device_type)
|
|
output = model(inp, inp, inp)
|
|
output_tp = model_tp(inp, inp, inp)
|
|
self.assertEqual(output, output_tp)
|
|
|
|
|
|
instantiate_parametrized_tests(DistTensorParallelExampleTest)
|
|
|
|
if __name__ == "__main__":
|
|
run_tests()
|