Shortcuts

DeepSpeedPlugin

class pytorch_lightning.plugins.training_type.DeepSpeedPlugin(zero_optimization=True, stage=2, remote_device='cpu', offload_optimizer=False, offload_parameters=False, offload_params_device='cpu', nvme_path='/local_nvme', params_buffer_count=5, params_buffer_size=100000000.0, max_in_cpu=1000000000.0, offload_optimizer_device='cpu', optimizer_buffer_count=4, block_size=1048576, queue_depth=8, single_submit=False, overlap_events=True, thread_count=1, pin_memory=False, sub_group_size=1000000000000.0, contiguous_gradients=True, overlap_comm=True, allgather_partitions=True, reduce_scatter=True, allgather_bucket_size=200000000.0, reduce_bucket_size=200000000.0, zero_allow_untested_optimizer=True, logging_batch_size_per_gpu='auto', config=None, logging_level=30, num_nodes=None, parallel_devices=None, cluster_environment=None, loss_scale=0, initial_scale_power=16, loss_scale_window=1000, hysteresis=2, min_loss_scale=1, partition_activations=False, cpu_checkpointing=False, contiguous_memory_optimization=False, synchronize_checkpoint_boundary=False, save_full_weights=True, cpu_offload=False, cpu_offload_params=False, cpu_offload_use_pin_memory=False, partition_module=True)[source]

Bases: pytorch_lightning.plugins.training_type.ddp.DDPPlugin

Provides capabilities to run training using the DeepSpeed library, with training optimizations for large billion parameter models. For more information: https://pytorch-lightning.readthedocs.io/en/latest/advanced/multi_gpu.html#deepspeed.

Warning

DeepSpeedPlugin is in beta and subject to change.

Defaults have been set to enable ZeRO-Offload and some have been taken from the link below. These defaults have been set generally, but may require tuning for optimum performance based on your model size. For more information: https://www.deepspeed.ai/docs/config-json/#zero-optimizations-for-fp16-training.

Parameters
  • zero_optimization (bool) – Enable ZeRO optimization. This is only compatible with precision=16.

  • stage (int) – Different stages of the ZeRO Optimizer. 0 is disabled, 1 is optimizer state partitioning, 2 is optimizer+gradient state partitioning, 3 is optimizer+gradient_parameter partitioning using the infinity engine.

  • remote_device (str) – Device to instantiate the model on initially (cpu or nvme).

  • offload_optimizer (bool) – Enable offloading optimizer memory and computation to CPU or NVMe based on offload_optimizer_device.

  • offload_parameters (bool) – When using ZeRO Stage 3, Enable offloading parameter memory and computation to CPU or NVMe based on offload_params_device.

  • offload_params_device (str) – When offloading parameters choose the device to offload to, cpu or nvme.

  • offload_optimizer_device (str) – When offloading optimizer state choose the device to offload to, cpu or nvme.

  • params_buffer_count (int) – Number of buffers in buffer pool for parameter offloading when offload_params_device is nvme.

  • params_buffer_size (int) – Size of buffers in buffer pool for parameter offloading when offload_params_device is nvme.

  • max_in_cpu (int) – Number of parameter elements to maintain in CPU memory when offloading to NVMe is enabled.

  • nvme_path (str) – Filesystem path for NVMe device for optimizer/parameter state offloading.

  • optimizer_buffer_count (int) – Number of buffers in buffer pool for optimizer state offloading when offload_optimizer_device is set to to nvme. This should be at least the number of states maintained per parameter by the optimizer. For example, Adam optimizer has 4 states (parameter, gradient, momentum, and variance).

  • block_size (int) – When using NVMe Offloading, the I/O block size in bytes.

  • queue_depth (int) – When using NVMe Offloading, the I/O queue depth.

  • single_submit (bool) – When using NVMe Offloading, submit requests to storage device as multiple individual requests, as opposed to one block of requests.

  • overlap_events (bool) – When using NVMe Offloading, submit requests to storage device in an overlapped fashion without waiting for completion of earlier requests.

  • thread_count (int) – When using NVMe Offloading, Intra-request parallelism for each read/write submitted by a user thread.

  • pin_memory (bool) – When using ZeRO stage 3, pin optimizer state memory on CPU. This could boost throughput at the cost of extra memory overhead.

  • sub_group_size (int) – When using ZeRO stage 3, defines the number of parameters within a sub group to offload at a time. Smaller numbers require more communication, but improve memory efficiency.

  • contiguous_gradients (bool) – Copies gradients to a continuous buffer as they are produced. Avoids memory fragmentation during backwards. Useful when training large models.

  • overlap_comm (bool) – Overlap the reduction (synchronization) of gradients with the backwards computation. This is a speed optimization when training across multiple GPUs/machines.

  • allgather_partitions (bool) – All gather updated parameters at the end of training step, instead of using a series of broadcast collectives.

  • reduce_scatter (bool) – Use reduce/scatter instead of allreduce to average gradients.

  • allgather_bucket_size (int) – Number of elements to allgather at once. Used to limit the memory required for larger model sizes, with a tradeoff with speed.

  • reduce_bucket_size (int) – Number of elements to reduce at once. Used to limit the memory required for larger model sizes, with a tradeoff with speed.

  • zero_allow_untested_optimizer (bool) – Allow untested optimizers to be used with ZeRO. Currently only Adam is a DeepSpeed supported optimizer when using ZeRO.

  • logging_batch_size_per_gpu (Union[str, int]) – Config used in DeepSpeed to calculate verbose timing for logging on a per sample per second basis (only displayed if logging=logging.INFO). If set to “auto”, the plugin tries to infer this from the train DataLoader’s BatchSampler, else defaults to 1. To obtain accurate logs when using datasets that do not support batch samplers, set this to the actual per gpu batch size (trainer.batch_size).

  • config (Union[Path, str, dict, None]) – Pass in a deepspeed formatted config dict, or path to a deepspeed config: https://www.deepspeed.ai/docs/config-json. All defaults will be ignored if a config is passed in.

  • logging_level (int) – Set logging level for deepspeed.

  • loss_scale (float) – Loss scaling value for FP16 training. 0.0 results in dynamic loss scaling, otherwise static.

  • initial_scale_power (int) – Power of the initial dynamic loss scale value. Loss scale is computed by 2^initial_scale_power.

  • loss_scale_window (int) – Window in which to raise/lower the dynamic FP16 loss scaling value.

  • hysteresis (int) – FP16 Delay shift in Dynamic Loss scaling.

  • min_loss_scale (int) – The minimum FP16 dynamic loss scaling value.

  • partition_activations (bool) – Enables partition activation when used with ZeRO stage 3 and model parallelism. Still requires you to wrap your forward functions in deepspeed.checkpointing.checkpoint. See deepspeed tutorial.

  • cpu_checkpointing (bool) – Offloads partitioned activations to CPU if partition_activations is enabled.

  • contiguous_memory_optimization (bool) – Copies partitioned activations so that they are contiguous in memory. Not supported by all models.

  • synchronize_checkpoint_boundary (bool) – Insert torch.cuda.synchronize() at each checkpoint boundary.

  • save_full_weights (bool) – Gathers weights across all processes before saving to disk when using ZeRO Stage 3. This allows a single weight file to contain the entire model, rather than individual sharded weight files. Disable to save sharded states individually.

  • partition_module (bool) – When True, partitions the LightningModule across devices when using ZeRO Stage 3. This is the default behaviour to ensure that the entire module is appropriately initialized for DeepSpeed. When False we do not explicitly convert the model, which is fine if NO layers or ALL layers are defined in configure_sharded_model. This is useful for layers such as torch.nn.RNN which do internal logic when moving to device.

model_sharded_context()[source]

Provide hook to create modules in a distributed aware context. This is useful for when we’d like to shard the model instantly, which is useful for extremely large models which can save memory and initialization time.

Returns: Model parallel context.

Return type

Generator[None, None, None]

pre_dispatch()[source]

Hook to do something before the training/evaluation/prediction starts.

save_checkpoint(checkpoint, filepath)[source]

Save model/training states as a checkpoint file through state-dump and file-write.

Parameters
  • checkpoint (Dict) – The checkpoint state dictionary

  • filepath (str) – write-target file’s path

Return type

None

update_global_step(total_batch_idx, current_global_step)[source]

Provide a hook to count optimizer step calls.

Parameters
  • total_batch_idx (int) – Total number of batches seen for training

  • current_global_step (int) – Current number of optimizer step calls

Returns: New optimizer step calls

Return type

int

property lightning_module

Returns the pure LightningModule without potential wrappers