mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Merges startswith, endswith calls to into a single call that feeds in a tuple. Not only are these calls more readable, but it will be more efficient as it iterates through each string only once. Pull Request resolved: https://github.com/pytorch/pytorch/pull/96754 Approved by: https://github.com/ezyang
217 lines
8.5 KiB
Python
217 lines
8.5 KiB
Python
# Copyright (c) Meta Platforms, Inc. and affiliates
|
|
# Owner(s): ["oncall: distributed"]
|
|
|
|
import torch
|
|
import torch.nn as nn
|
|
from torch.distributed._tensor import (
|
|
DeviceMesh,
|
|
distribute_module,
|
|
distribute_tensor,
|
|
DTensor,
|
|
Replicate,
|
|
Shard,
|
|
)
|
|
from torch.testing._internal.common_utils import run_tests
|
|
from torch.testing._internal.distributed._tensor.common_dtensor import (
|
|
DTensorTestBase,
|
|
with_comms,
|
|
)
|
|
|
|
|
|
class MyModel(nn.Module):
|
|
def __init__(self, n_features, n_layers, device):
|
|
super().__init__()
|
|
self.seq = nn.Sequential(
|
|
*[nn.Linear(n_features, n_features, device=device) for _ in range(n_layers)]
|
|
)
|
|
|
|
def forward(self, x):
|
|
return self.seq(x)
|
|
|
|
def reset_parameters(self):
|
|
for m in self.seq:
|
|
m.reset_parameters()
|
|
|
|
|
|
class DTensorAPITest(DTensorTestBase):
|
|
@property
|
|
def world_size(self) -> int:
|
|
# hard code world size to 4 as we need to test
|
|
# at least with 2d mesh
|
|
return 4
|
|
|
|
@with_comms
|
|
def test_distribute_tensor(self):
|
|
device_mesh = DeviceMesh(self.device_type, list(range(self.world_size)))
|
|
shard_spec = [Shard(0)]
|
|
|
|
for requires_grad in [True, False]:
|
|
|
|
tensor_to_shard = torch.randn(
|
|
3 * self.world_size, 3, requires_grad=requires_grad
|
|
)
|
|
dist_tensor = distribute_tensor(tensor_to_shard, device_mesh, shard_spec)
|
|
self.assertEqual(dist_tensor.size(), torch.Size([3 * self.world_size, 3]))
|
|
local_tensor = dist_tensor.to_local()
|
|
self.assertEqual(local_tensor.size(), torch.Size([3, 3]))
|
|
if requires_grad:
|
|
self.assertTrue(dist_tensor.requires_grad)
|
|
self.assertTrue(dist_tensor.is_leaf)
|
|
|
|
@with_comms
|
|
def test_distribute_tensor_errors(self):
|
|
device_mesh = DeviceMesh(
|
|
self.device_type, torch.arange(self.world_size).reshape(2, 2)
|
|
)
|
|
tensor_shape = [3 * self.world_size, 3 * self.world_size]
|
|
tensor_to_distribute = torch.randn(*tensor_shape)
|
|
|
|
with self.assertRaisesRegex(ValueError, "must have the same length"):
|
|
shard_spec = [Shard(0)]
|
|
distribute_tensor(tensor_to_distribute, device_mesh, shard_spec)
|
|
|
|
spec = [Shard(0), Shard(1)]
|
|
dtensor = distribute_tensor(tensor_to_distribute, device_mesh, spec)
|
|
|
|
with self.assertRaisesRegex(ValueError, "to a different device mesh"):
|
|
new_mesh = DeviceMesh(self.device_type, torch.arange(self.world_size))
|
|
distribute_tensor(dtensor, new_mesh, [Shard(0)])
|
|
|
|
with self.assertRaisesRegex(ValueError, "to a different placements"):
|
|
new_spec = [Shard(0), Replicate()]
|
|
distribute_tensor(dtensor, device_mesh, new_spec)
|
|
|
|
@with_comms
|
|
def test_distribute_tensor_uneven_sharding(self):
|
|
device_mesh = DeviceMesh(self.device_type, list(range(self.world_size)))
|
|
input_sizes_and_shard_dims = [
|
|
((self.world_size * 3 + 1, 3, 3), 0),
|
|
((self.world_size * 3 + 2, 3, 3), 0),
|
|
((3, self.world_size * 3 + 1, 3), 1),
|
|
((3, self.world_size * 3 + 2, 3), 1),
|
|
((3, 3, self.world_size * 3 + 1), 2),
|
|
((3, 3, self.world_size * 3 + 2), 2),
|
|
]
|
|
for input_size, shard_dim in input_sizes_and_shard_dims:
|
|
shard_spec = [Shard(shard_dim)]
|
|
tensor_to_shard = torch.randn(input_size)
|
|
splitted_tensor_list = tensor_to_shard.tensor_split(
|
|
self.world_size, dim=shard_dim
|
|
)
|
|
dist_tensor = distribute_tensor(tensor_to_shard, device_mesh, shard_spec)
|
|
self.assertEqual(dist_tensor.size(), torch.Size(input_size))
|
|
local_tensor = dist_tensor.to_local()
|
|
self.assertEqual(local_tensor, splitted_tensor_list[self.rank])
|
|
|
|
@with_comms
|
|
def test_distribute_module(self):
|
|
device_mesh = DeviceMesh(self.device_type, list(range(self.world_size)))
|
|
# fully shard all linear modules on dim 0
|
|
module_to_shard = MyModel(5 * self.world_size, 20, device=self.device_type)
|
|
shard_spec = [Shard(0)]
|
|
|
|
def shard_fn(name, module, device_mesh):
|
|
if isinstance(module, nn.Linear):
|
|
for name, param in module.named_parameters():
|
|
dist_param = torch.nn.Parameter(
|
|
distribute_tensor(param, device_mesh, shard_spec)
|
|
)
|
|
module.register_parameter(name, dist_param)
|
|
|
|
sharded_module = distribute_module(module_to_shard, device_mesh, shard_fn)
|
|
for param in sharded_module.parameters():
|
|
self.assertIsInstance(param, DTensor)
|
|
self.assertEqual(param.placements, shard_spec)
|
|
|
|
replica_spec = [Replicate()]
|
|
# fully replicate all modules without passing in partition_fn
|
|
module_to_replicate = MyModel(5, 20, device=self.device_type)
|
|
replica_module = distribute_module(module_to_replicate, device_mesh)
|
|
for param in replica_module.parameters():
|
|
self.assertIsInstance(param, DTensor)
|
|
self.assertEqual(param.placements, replica_spec)
|
|
|
|
# fully replicate all modules by passing in partition_fn
|
|
def replicate_fn(name, module, device_mesh):
|
|
if isinstance(module, nn.Linear):
|
|
for name, param in module.named_parameters():
|
|
dist_param = torch.nn.Parameter(
|
|
distribute_tensor(param, device_mesh, replica_spec)
|
|
)
|
|
module.register_parameter(name, dist_param)
|
|
|
|
module_to_replicate = MyModel(5, 20, device=self.device_type)
|
|
replica_module = distribute_module(
|
|
module_to_replicate, device_mesh, replicate_fn
|
|
)
|
|
for param in replica_module.parameters():
|
|
self.assertIsInstance(param, DTensor)
|
|
self.assertEqual(param.placements, replica_spec)
|
|
|
|
# only shard part of module, and rest of module should be replicate
|
|
def shard_fn(name, module, device_mesh):
|
|
if isinstance(module, nn.Linear) and (name == "seq.0" or name == "seq.8"):
|
|
for name, param in module.named_parameters():
|
|
dist_param = torch.nn.Parameter(
|
|
distribute_tensor(param, device_mesh, shard_spec)
|
|
)
|
|
module.register_parameter(name, dist_param)
|
|
|
|
module_to_distribute = MyModel(5 * self.world_size, 20, device=self.device_type)
|
|
dist_module = distribute_module(module_to_distribute, device_mesh, shard_fn)
|
|
for name, param in dist_module.named_parameters():
|
|
self.assertIsInstance(param, DTensor)
|
|
if name.startswith(("seq.0", "seq.8")):
|
|
self.assertEqual(param.placements, shard_spec)
|
|
else:
|
|
self.assertEqual(param.placements, replica_spec)
|
|
|
|
@with_comms
|
|
def test_distribute_module_input_fn_output_fn(self):
|
|
device_mesh = DeviceMesh(self.device_type, list(range(self.world_size)))
|
|
|
|
# fully replicate all linear modules
|
|
module_to_replicate = MyModel(20, 1, device=self.device_type)
|
|
|
|
# mark input sharding on dim 0
|
|
def input_fn(inputs, device_mesh):
|
|
return DTensor.from_local(inputs[0], device_mesh, [Shard(0)])
|
|
|
|
def output_fn(outputs, device_mesh):
|
|
assert isinstance(outputs, DTensor)
|
|
return outputs.to_local()
|
|
|
|
replica_module = distribute_module(
|
|
module_to_replicate,
|
|
device_mesh,
|
|
input_fn=input_fn,
|
|
output_fn=output_fn,
|
|
)
|
|
|
|
input_tensor = torch.randn(5, 20, device=self.device_type)
|
|
local_out = replica_module(input_tensor)
|
|
self.assertIsInstance(local_out, torch.Tensor)
|
|
self.assertNotIsInstance(local_out, DTensor)
|
|
|
|
# full replicate (even on inputs)
|
|
model = MyModel(10, 10, device=self.device_type)
|
|
|
|
def replicate_input_fn(inputs, device_mesh):
|
|
return DTensor.from_local(inputs[0], device_mesh, [Replicate()])
|
|
|
|
replica_model = distribute_module(
|
|
model,
|
|
device_mesh,
|
|
input_fn=replicate_input_fn,
|
|
)
|
|
input = torch.randn(10, 10, requires_grad=True)
|
|
output = replica_model(input)
|
|
output.sum().backward()
|
|
param_grad = list(replica_model.parameters())[0].grad
|
|
self.assertTrue(isinstance(param_grad, DTensor))
|
|
self.assertTrue(isinstance(param_grad.placements[0], Replicate))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run_tests()
|