Shortcuts

Source code for lightning_fabric.strategies.strategy

# Copyright The Lightning AI team.
#
# 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 logging
from abc import ABC, abstractmethod
from contextlib import contextmanager
from typing import Any, Dict, Generator, Iterable, List, Mapping, Optional, Tuple, TypeVar, Union

import torch
from torch import Tensor
from torch.nn import Module
from torch.optim import Optimizer
from torch.utils.data import DataLoader

from lightning_fabric.accelerators import Accelerator
from lightning_fabric.plugins.io.checkpoint_io import CheckpointIO
from lightning_fabric.plugins.io.torch_io import TorchCheckpointIO
from lightning_fabric.plugins.precision import Precision
from lightning_fabric.strategies.launchers.base import _Launcher
from lightning_fabric.utilities.apply_func import move_data_to_device
from lightning_fabric.utilities.optimizer import _optimizer_to_device
from lightning_fabric.utilities.types import _PATH, Optimizable, ReduceOp

TBroadcast = TypeVar("TBroadcast")
TReduce = TypeVar("TReduce")

log = logging.getLogger(__name__)


[docs]class Strategy(ABC): """Base class for all strategies that change the behaviour of the training, validation and test- loop.""" def __init__( self, accelerator: Optional[Accelerator] = None, checkpoint_io: Optional[CheckpointIO] = None, precision: Optional[Precision] = None, ) -> None: self._accelerator: Optional[Accelerator] = accelerator self._checkpoint_io: Optional[CheckpointIO] = checkpoint_io self._precision: Optional[Precision] = precision self._launcher: Optional[_Launcher] = None self._backward_sync_control: Optional[_BackwardSyncControl] = None @property @abstractmethod def root_device(self) -> torch.device: """Returns the root device.""" @property @abstractmethod def is_global_zero(self) -> bool: """Whether the current process is the rank zero process not only on the local node, but for all nodes.""" @property def launcher(self) -> Optional[_Launcher]: return self._launcher @property def accelerator(self) -> Optional[Accelerator]: return self._accelerator @accelerator.setter def accelerator(self, accelerator: Accelerator) -> None: self._accelerator = accelerator @property def checkpoint_io(self) -> CheckpointIO: if self._checkpoint_io is None: self._checkpoint_io = TorchCheckpointIO() return self._checkpoint_io @checkpoint_io.setter def checkpoint_io(self, io: Optional[CheckpointIO]) -> None: self._checkpoint_io = io @property def precision(self) -> Precision: return self._precision if self._precision is not None else Precision() @precision.setter def precision(self, precision: Optional[Precision]) -> None: self._precision = precision def _configure_launcher(self) -> None: """Attach the launcher based on Strategy."""
[docs] def setup_environment(self) -> None: """Setup any processes or distributed connections. This must be called by the framework at the beginning of every process, before any distributed communication takes place. """ assert self.accelerator is not None self.accelerator.setup_device(self.root_device)
[docs] def process_dataloader(self, dataloader: DataLoader) -> DataLoader: """Wraps the dataloader if necessary. Args: dataloader: iterable. Ideally of type: :class:`torch.utils.data.DataLoader` """ return dataloader
[docs] def setup_module_and_optimizers( self, module: Module, optimizers: List[Optimizer] ) -> Tuple[Module, List[Optimizer]]: """Set up a model and multiple optimizers together. The returned objects are expected to be in the same order they were passed in. The default implementation will call :meth:`setup_module` and :meth:`setup_optimizer` on the inputs. """ module = self.setup_module(module) optimizers = [self.setup_optimizer(optimizer) for optimizer in optimizers] return module, optimizers
[docs] def setup_module(self, module: Module) -> Module: """Performs setup for the model, e.g., by wrapping it by another class.""" return module
[docs] def setup_optimizer(self, optimizer: Optimizer) -> Optimizer: """Performs setup for the optimizer, e.g., by wrapping it by another class.""" return optimizer
[docs] @abstractmethod def module_to_device(self, module: Module) -> None: """Moves the model to the correct device."""
[docs] def batch_to_device(self, batch: Any, device: Optional[torch.device] = None) -> Any: """Moves the batch to the correct device. The returned batch is of the same type as the input batch, just having all tensors on the correct device. Args: batch: The batch of samples to move to the correct device device: The target device """ device = device or self.root_device return move_data_to_device(batch, device)
[docs] def backward(self, tensor: Tensor, module: Optional[Module], *args: Any, **kwargs: Any) -> None: r"""Forwards backward-calls to the precision plugin.""" self.precision.pre_backward(tensor, module) self.precision.backward(tensor, module, *args, **kwargs) self.precision.post_backward(tensor, module)
[docs] def optimizer_step( self, optimizer: Optimizable, **kwargs: Any, ) -> Any: """Performs the actual optimizer step. Args: optimizer: the optimizer performing the step **kwargs: Any extra arguments to ``optimizer.step`` """ return self.precision.optimizer_step(optimizer, **kwargs)
[docs] @abstractmethod def all_gather(self, tensor: Tensor, group: Optional[Any] = None, sync_grads: bool = False) -> Tensor: """Perform an all_gather on all processes. Args: tensor: the tensor to all_gather group: the process group to gather results from sync_grads: flag that allows users to synchronize gradients for all_gather op """
[docs] @abstractmethod def all_reduce( self, tensor: Union[Tensor, Any], group: Optional[Any] = None, reduce_op: Optional[Union[ReduceOp, str]] = "mean", ) -> Union[Tensor, Any]: """Reduces the given tensor (e.g. across GPUs/processes). Args: tensor: the tensor to sync and reduce group: the process group to reduce reduce_op: the reduction operation. Defaults to 'mean'. Can also be a string 'sum' or ReduceOp. """
[docs] @abstractmethod def barrier(self, name: Optional[str] = None) -> None: """Synchronizes all processes which blocks processes until the whole group enters this function. Args: name: an optional name to pass into barrier. """
[docs] @abstractmethod def broadcast(self, obj: TBroadcast, src: int = 0) -> TBroadcast: """Broadcasts an object to all processes. Args: obj: the object to broadcast src: source rank """
[docs] def reduce_boolean_decision(self, decision: bool, all: bool = True) -> bool: """Reduce a boolean decision across all processes.""" return decision
[docs] def save_checkpoint( self, checkpoint: Dict[str, Any], filepath: _PATH, storage_options: Optional[Any] = None ) -> None: """Save model/training states as a checkpoint file through state-dump and file-write. Args: checkpoint: dict containing model and trainer state filepath: write-target file's path storage_options: parameter for how to save to storage, passed to ``CheckpointIO`` plugin """ if self.is_global_zero: self.checkpoint_io.save_checkpoint(checkpoint, filepath, storage_options=storage_options)
[docs] def get_module_state_dict(self, module: Module) -> Dict[str, Union[Any, Tensor]]: """Returns model state.""" # TODO(fabric): Integrate this into Lightning Fabric return module.state_dict()
[docs] def get_optimizer_state(self, optimizer: Optimizer) -> Dict[str, Tensor]: """Returns state of an optimizer. Allows for syncing/collating optimizer state from processes in custom plugins. """ if hasattr(optimizer, "consolidate_state_dict"): # there are optimizers like PyTorch's ZeroRedundancyOptimizer that shard their # states, and to avoid OOM we consolidate the full state on rank 0 only optimizer.consolidate_state_dict() return optimizer.state_dict() if self.is_global_zero else {} # for optimizers that are not sharded, we return the state dict on all ranks return optimizer.state_dict()
def load_checkpoint(self, checkpoint_path: _PATH) -> Dict[str, Any]: torch.cuda.empty_cache() return self.checkpoint_io.load_checkpoint(checkpoint_path) def load_module_state_dict(self, module: Module, checkpoint: Mapping[str, Any]) -> None: # TODO(fabric): Integrate this into Lightning Fabric module.load_state_dict(checkpoint["state_dict"]) def load_optimizer_state_dict( self, optimizers: Union[Optimizer, Iterable[Optimizer]], checkpoint: Mapping[str, Any] ) -> None: if not isinstance(optimizers, Iterable): optimizers = [optimizers] optimizer_states = checkpoint["optimizer_states"] for optimizer, opt_state in zip(optimizers, optimizer_states): optimizer.load_state_dict(opt_state) _optimizer_to_device(optimizer, self.root_device)
[docs] def remove_checkpoint(self, filepath: _PATH) -> None: """Remove checkpoint filepath from the filesystem. Args: filepath: Path to checkpoint """ if self.is_global_zero: self.checkpoint_io.remove_checkpoint(filepath)
[docs] def teardown(self) -> None: """This method is called to teardown the training process. It is the right place to release memory and free other resources. """ self.precision.teardown() assert self.accelerator is not None self.accelerator.teardown() self.checkpoint_io.teardown()
@classmethod def register_strategies(cls, strategy_registry: Dict[str, Any]) -> None: pass def _err_msg_joint_setup_required(self) -> str: return ( f"The `{type(self).__name__}` does not support setting up the module and optimizer(s) independently." " Please call `setup_module_and_optimizers(model, [optimizer, ...])` to jointly set them up." )
class _BackwardSyncControl(ABC): """Interface for any :class:`Strategy` that wants to offer a functionality to enable or disable gradient synchronization during/after back-propagation. The most common use-case is gradient accumulation. If a :class:`Strategy` implements this interface, the user can implement their gradient accumulation loop very efficiently by disabling redundant gradient synchronization. """ @contextmanager @abstractmethod def no_backward_sync(self, module: Module) -> Generator: """Blocks the synchronization of gradients during the backward pass. This is a context manager. It is only effective if it wraps a call to `.backward()`. """ class _Sharded(ABC): """Mixin-interface for any :class:`Strategy` that wants to expose functionality for sharding model parameters.""" @abstractmethod @contextmanager def module_sharded_context(self) -> Generator: """A context manager that goes over the instantiation of an :class:`torch.nn.Module` and handles sharding of parameters on creation. By sharding layers directly on instantiation, one can reduce peak memory usage and initialization time. """ yield

© Copyright Copyright (c) 2018-2023, Lightning AI et al...

Built with Sphinx using a theme provided by Read the Docs.