File size: 1,469 Bytes
b66f552 | 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 | # Copyright (c) 2023-2025, Songlin Yang, Yu Zhang
import torch.nn as nn
try:
from torch.distributed import DeviceMesh
except ImportError:
DeviceMesh = None
try:
from torch.distributed.tensor import distribute_module
except ImportError:
distribute_module = None
try:
from torch.distributed.tensor.parallel import ParallelStyle
except ImportError:
class ParallelStyle:
pass
try:
from torch.distributed.tensor.placement_types import Placement
except ImportError:
Placement = None
try:
from torch.distributed.tensor import DTensor
except (ImportError, AttributeError):
DTensor = None
class PrepareModuleWeight(ParallelStyle):
def __init__(self, *, layouts: Placement | None = None):
super().__init__()
self.layouts = layouts
def _replicate_module_fn(
self,
name: str,
module: nn.Module,
device_mesh: DeviceMesh,
):
for p_name, param in module.named_parameters():
replicated_param = nn.Parameter(
DTensor.from_local(param, device_mesh, [self.layouts], run_check=False),
)
module.register_parameter(p_name, replicated_param)
def _apply(self, module: nn.Module, device_mesh: DeviceMesh) -> nn.Module:
return distribute_module(
module,
device_mesh,
partition_fn=self._replicate_module_fn,
input_fn=None,
output_fn=None,
)
|