Source code for nemo_rl.models.policy.dtensor_policy_worker

# Copyright (c) 2025, NVIDIA CORPORATION.  All rights reserved.
#
# 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 contextlib
import gc
import itertools
import os
from collections import defaultdict
from contextlib import AbstractContextManager, contextmanager, nullcontext
from typing import Any, Generator, Iterable, Optional, Set, Union, cast

import ray
import torch
from accelerate import init_empty_weights
from torch import nn
from torch.distributed.checkpoint.state_dict import (
    StateDictOptions,
    set_model_state_dict,
)
from torch.distributed.fsdp import (
    FSDPModule,
)
from torch.distributed.tensor import DTensor, Shard
from torch.distributed.tensor.experimental import context_parallel
from torch.distributed.tensor.experimental._attention import (
    set_rotate_method,
)
from transformers import AutoConfig, AutoModelForCausalLM, AutoTokenizer
from transformers.integrations.accelerate import find_tied_parameters
from transformers.models.gemma3.modeling_gemma3 import Gemma3ForCausalLM

from nemo_rl.algorithms.interfaces import LossFunction, LossType
from nemo_rl.algorithms.loss_functions import SequencePackingLossWrapper
from nemo_rl.distributed.batched_data_dict import BatchedDataDict
from nemo_rl.models.dtensor.parallelize import (
    _parallelize_model,
    clip_grad_by_total_norm_,
    get_grad_norm,
    get_logprobs_from_vocab_parallel_logits,
    to_local_if_dtensor,
)
from nemo_rl.models.huggingface.common import (
    ModelFlag,
    get_flash_attention_kwargs,
    pack_sequences,
)
from nemo_rl.models.policy import PolicyConfig
from nemo_rl.models.policy.interfaces import (
    LogprobOutputSpec,
    ReferenceLogprobOutputSpec,
)
from nemo_rl.models.policy.utils import (
    configure_expandable_segments,
    get_gpu_info,
    get_runtime_env_for_policy_worker,
    import_class_from_path,
    is_vllm_v1_engine_enabled,
    sliding_window_overwrite,
)
from nemo_rl.utils.native_checkpoint import (
    load_checkpoint,
    save_checkpoint,
)


[docs] @contextmanager def unshard_fsdp2_model(model: nn.Module) -> Generator[None, None, None]: """Explicitly unshard and then reshard the FSDP2 modules. Useful for logprob inference.""" try: for module in model.modules(): if isinstance(module, FSDPModule): module.unshard() yield finally: for module in model.modules(): if isinstance(module, FSDPModule): module.reshard()
[docs] @torch.no_grad() def get_cpu_state_dict( state_generator: Iterable[tuple[str, Union[torch.Tensor, DTensor]]], pin_memory: bool = False, ) -> dict[str, torch.Tensor]: """Copy the state dict generator to CPU memory. Args: state_generator (Iterable[tuple[str, Union[torch.Tensor, DTensor]]]): An iterable that yields (key, tensor) pairs from a model state. pin_memory (bool, optional): Whether to allocate the CPU tensors in pinned memory for faster GPU transfer. Defaults to False. Returns: dict[str, torch.Tensor]: A dictionary mapping parameter names to CPU tensors. """ new_state_dict = {} for k, v in state_generator: val = to_local_if_dtensor(v) if len(val.shape) == 0: new_state_dict[k] = val.cpu() else: cpu_tensor = torch.empty( *val.shape, device="cpu", pin_memory=pin_memory, dtype=val.dtype ) cpu_tensor.copy_(val, non_blocking=True) new_state_dict[k] = cpu_tensor torch.cuda.synchronize() return new_state_dict
[docs] @ray.remote( runtime_env=get_runtime_env_for_policy_worker("dtensor_policy_worker") ) # pragma: no cover class DTensorPolicyWorker:
[docs] def __repr__(self) -> str: """Customizes the actor's prefix in the Ray logs. This makes it easier to identify which worker is producing specific log messages. """ if torch.distributed.is_initialized(): return f"{self.__class__.__qualname__}[rank={torch.distributed.get_rank()}]" else: return f"{self.__class__.__qualname__}"
def __init__( self, config: PolicyConfig, tokenizer: AutoTokenizer, weights_path: Optional[str] = None, optimizer_path: Optional[str] = None, init_optimizer: bool = True, init_reference_model: bool = True, **kwargs: Any, ): self.is_generation_colocated = None if "generation" in config and config["generation"] is not None: self.is_generation_colocated = config["generation"]["colocated"]["enabled"] # Explicitly set NCCL_CUMEM_ENABLE to 1 to avoid the P2P initialization error for PyNCCLCommunicator. # See https://github.com/NVIDIA-NeMo/RL/issues/564 for more details. if not self.is_generation_colocated: os.environ["NCCL_CUMEM_ENABLE"] = "1" # Only enable expandable_segments on Hopper and newer architectures (compute capability 9.x+) configure_expandable_segments() self.cfg = config # torch distributed init. Envars for rank, world_size, and master_addr and master_port are set from the ray remote call torch.distributed.init_process_group(backend="nccl") self.rank = torch.distributed.get_rank() world_size = torch.distributed.get_world_size() model_name = self.cfg["model_name"] self.cpu_offload = self.cfg["dtensor_cfg"]["cpu_offload"] self.max_grad_norm = self.cfg["max_grad_norm"] if self.cfg["precision"] == "float32": self.dtype = torch.float32 elif self.cfg["precision"] == "bfloat16": self.dtype = torch.bfloat16 elif self.cfg["precision"] == "float16": self.dtype = torch.float16 else: raise ValueError(f"Unknown precision: {self.cfg['precision']}") print(f"[Rank {self.rank}] Loading model {model_name} on CPU...") self.enable_seq_packing = self.cfg["sequence_packing"]["enabled"] if self.enable_seq_packing: print( f"[Rank {self.rank}] Sequence packing is enabled for model {model_name}" ) print(f"[Rank {self.rank}] Using FlashAttention2 for sequence packing") model_config = AutoConfig.from_pretrained( model_name, # Always load the model in float32 to keep master weights in float32. # Keeping the master weights in lower precision has shown to cause issues with convergence. torch_dtype=torch.float32, trust_remote_code=True, **sliding_window_overwrite( model_name ), # due to https://github.com/huggingface/transformers/issues/38002 attn_implementation="flash_attention_2" if self.enable_seq_packing else None, ) full_state_dict = None if self.rank == 0: print(f"[Rank {self.rank}] Loading model {model_name} on CPU...") model = AutoModelForCausalLM.from_pretrained( model_name, device_map="cpu", # load weights onto CPU initially trust_remote_code=True, config=model_config, ) full_state_dict = model.state_dict() del model print(f"[Rank {self.rank}] Initializing empty model for FSDP...") # All ranks initialize model on meta device, so FSDP can shard it. # The actual weights will be broadcast from rank 0. with init_empty_weights(): self.model = AutoModelForCausalLM.from_config( model_config, ) # caching since this property is not always preserved after FSDP self.num_tied_weights = len(find_tied_parameters(self.model)) self.skip_tie_check = os.environ.get( "NRL_SKIP_TIED_WEIGHT_CHECK" ) or ModelFlag.SKIP_DTENSOR_TIED_WEIGHTS_CHECK.matches(model_name) self.tokenizer = tokenizer # ------------------------------------------------ # 3) Move to GPU + Composable FSDP # (Initialize device mesh, shard submodules, then shard entire model) # ------------------------------------------------ tp_size = self.cfg["dtensor_cfg"]["tensor_parallel_size"] cp_size = self.cfg["dtensor_cfg"]["context_parallel_size"] if cp_size > 1 and self.enable_seq_packing: raise ValueError( "Context parallel is not supported for sequence packing. Refer to https://github.com/NVIDIA/NeMo-RL/blob/main/docs/model-quirks.md#context-parallel-with-fsdp2 for more details." ) dp_size = world_size // tp_size // cp_size sequence_parallel_enabled = self.cfg["dtensor_cfg"]["sequence_parallel"] assert world_size == dp_size * tp_size * cp_size, ( f"World size({world_size}) must equal to dp_size({dp_size}) * tp_size({tp_size}) * cp_size({cp_size}) to use DTensor" ) if sequence_parallel_enabled and tp_size == 1: print( "[WARNING]: sequence_parallel=True, but tp_size=1 which has no effect. Enable tp_size > 1 to use sequence parallelism." ) if cp_size > 1: assert not isinstance(self.model, Gemma3ForCausalLM), ( "Context parallel is not supported for Gemma3ForCausalLM. Torch context parallel has many limitations. " "Please refer to https://github.com/NVIDIA/NeMo-RL/blob/main/docs/model-quirks.md#context-parallel-with-fsdp2 for more details." ) assert not (tp_size > 1 and sequence_parallel_enabled), ( "It's a known issue that context parallel can't be used together with sequence parallel in DTensor worker. " "Please either set cp_size = 1 or disable sequence parallel. " "See https://github.com/NVIDIA-NeMo/RL/issues/659 for more details." ) device_mesh = torch.distributed.device_mesh.init_device_mesh( "cuda", (dp_size, cp_size, tp_size), mesh_dim_names=("dp", "cp", "tp") ) self.dp_cp_mesh = device_mesh[("dp", "cp")]._flatten(mesh_dim_name="dp_cp") self.dp_mesh, self.tp_mesh, self.cp_mesh = ( device_mesh["dp"], device_mesh["tp"], device_mesh["cp"], ) self.dp_size = dp_size self.tp_size = tp_size self.cp_size = cp_size self.device_mesh = device_mesh self.model = _parallelize_model( self.model, self.dp_cp_mesh, self.tp_mesh, param_dtype=self.dtype, sequence_parallel=sequence_parallel_enabled, cpu_offload=self.cpu_offload, activation_checkpointing=self.cfg["dtensor_cfg"][ "activation_checkpointing" ], custom_parallel_plan=self.cfg["dtensor_cfg"]["custom_parallel_plan"], ) print(f"[Rank {self.rank}] Loading state dict from rank 0...") # This will broadcast the state dict from rank 0 to all other ranks # and load it into the FSDP model. set_model_state_dict( self.model, model_state_dict=full_state_dict, options=StateDictOptions( full_state_dict=True, broadcast_from_rank0=True, ), ) # Handle tied word embeddings after loading the state dict # We need to actually tie the parameters at the model level is_tied_lm_head = getattr( getattr(self.model, "config", {}), "tie_word_embeddings", False ) if is_tied_lm_head: embed_tokens_weight = None for name, param in self.model.named_parameters(): if "embed_tokens" in name and name.endswith(".weight"): embed_tokens_weight = param break if embed_tokens_weight is not None: self.model.lm_head.weight = embed_tokens_weight # Manually broadcast buffers for _, buf in self.model.named_buffers(): torch.distributed.broadcast(to_local_if_dtensor(buf), src=0) if self.cpu_offload: self.model = self.move_to_device(self.model, "cpu") if init_reference_model: self.reference_model_state_dict = get_cpu_state_dict( self.model.state_dict().items(), pin_memory=True ) if init_optimizer: optimizer_cls = import_class_from_path(self.cfg["optimizer"]["name"]) self.optimizer = optimizer_cls( self.model.parameters(), **self.cfg["optimizer"]["kwargs"] ) else: self.optimizer = None if "scheduler" in self.cfg and self.optimizer is not None: if isinstance(self.cfg["scheduler"], dict): scheduler_cls = import_class_from_path( cast(str, self.cfg["scheduler"]["name"]) ) self.scheduler = scheduler_cls( self.optimizer, **self.cfg["scheduler"]["kwargs"] ) else: schedulers = [] for scheduler_cfg in self.cfg["scheduler"]: if "name" in scheduler_cfg: schedulers.append( import_class_from_path(scheduler_cfg["name"])( self.optimizer, **scheduler_cfg["kwargs"] ) ) else: assert "milestones" in scheduler_cfg, ( "unknown scheduler config: ", scheduler_cfg, ) milestones: list[int] = scheduler_cfg["milestones"] self.scheduler = torch.optim.lr_scheduler.SequentialLR( self.optimizer, schedulers, milestones ) elif self.optimizer is not None: ## default to a passthrough LR schedule self.scheduler = torch.optim.lr_scheduler.LambdaLR( self.optimizer, lr_lambda=lambda epoch: 1 ) # restore if weights_path: self.load_checkpoint(weights_path, optimizer_path) else: print( "No weights path provided. Starting from scratch (default policy init)" ) # vars used for refit ## will be initialized in prepare_refit_info self.refit_param_info = None ## used for streaming update inference engine weights self._held_sharded_state_dict_reference: Optional[dict[str, torch.Tensor]] = ( None ) self._held_streamed_param_reference: Optional[dict[str, torch.Tensor]] = None # Refer to nemo impl. Below is original comment. # based on https://github.com/pytorch/torchtitan/blob/main/torchtitan/distributed/utils.py#L113
[docs] @staticmethod def create_context_parallel_ctx( cp_mesh: torch.distributed.device_mesh.DeviceMesh, cp_buffers: list[torch.Tensor], cp_seq_dims: list[int], cp_no_restore_buffers: Set[torch.Tensor], cp_rotate_method: Optional[str] = None, ): """Create a context parallel context. Args: cp_mesh (DeviceMesh): The device mesh for context parallel. cp_buffers (list[torch.Tensor]): The buffers for context parallel. cp_seq_dims (list[int]): The sequence dimensions for context parallel. cp_no_restore_buffers (Set[torch.Tensor]): The no restore buffers for context parallel. cp_rotate_method (str): The rotation method for context parallel, such as "allgather" or "addtoall". """ if cp_rotate_method is not None: set_rotate_method(cp_rotate_method) return context_parallel( cp_mesh, buffers=cp_buffers, buffer_seq_dims=cp_seq_dims, no_restore_buffers=cp_no_restore_buffers, )
# Refer to nemo impl. Below is original comment. # based on https://github.com/pytorch/torchtitan/blob/cddd7dc809f36fe0ed51cdaaea0671c084d75442/torchtitan/distributed/utils.py#L178
[docs] def _apply_temperature_scaling(self, logits: torch.Tensor) -> torch.Tensor: # Apply temperature scaling to logits if configured and not using V1 engine. if "generation" in self.cfg and self.cfg["generation"] is not None: # The V1 engine returns raw logits before temperature scaling. # The V0 engine returns scaled logits. # Therefore, we only divide if we are not using the V1 engine. if not is_vllm_v1_engine_enabled(): logits.div_(self.cfg["generation"]["temperature"]) return logits
[docs] @staticmethod @contextlib.contextmanager def train_context(cp_context: Optional[Generator[None, None, None]] = None): with contextlib.ExitStack() as stack: if cp_context is not None: from torch.nn.attention import SDPBackend, sdpa_kernel # TODO (xilunwu): support cuDNN backend stack.enter_context( sdpa_kernel( [ SDPBackend.FLASH_ATTENTION, SDPBackend.EFFICIENT_ATTENTION, ] ) ) stack.enter_context(cp_context) yield
[docs] def init_collective(self, ip: str, port: int, world_size: int) -> None: """Initialize the collective communication.""" from vllm.distributed.device_communicators.pynccl import PyNcclCommunicator from vllm.distributed.utils import StatelessProcessGroup if self.rank == 0: pg = StatelessProcessGroup.create( host=ip, port=port, rank=0, world_size=world_size ) device = torch.cuda.current_device() self.model_update_group = PyNcclCommunicator(pg, device=device)
[docs] def is_alive(self) -> bool: return True
[docs] def reset_peak_memory_stats(self) -> None: torch.cuda.reset_peak_memory_stats()
[docs] def get_gpu_info(self) -> dict[str, Any]: """Return information about the GPU being used by this worker.""" return get_gpu_info(self.model)
[docs] def train( self, data: BatchedDataDict[Any], loss_fn: LossFunction, eval_mode: bool = False, gbs: Optional[int] = None, mbs: Optional[int] = None, ) -> dict[str, Any]: """Train the policy on a batch of data with a given loss function.""" # Check if the model has tied weights if ( self.num_tied_weights != 0 and self.cfg["dtensor_cfg"]["tensor_parallel_size"] > 1 and not self.skip_tie_check ): raise ValueError( f"Using dtensor policy with tp size {self.cfg['dtensor_cfg']['tensor_parallel_size']} for model ({self.cfg['model_name']}) that has tied weights (num_tied_weights={self.num_tied_weights}) is not supported (https://github.com/NVIDIA-NeMo/RL/issues/227). Please use dtensor policy with tensor parallel == 1 instead." ) if gbs is None: gbs = self.cfg["train_global_batch_size"] if mbs is None: mbs = self.cfg["train_micro_batch_size"] local_gbs = gbs // self.dp_size total_dataset_size = torch.tensor(data.size, device="cuda") torch.distributed.all_reduce( total_dataset_size, op=torch.distributed.ReduceOp.SUM, group=self.dp_mesh.get_group(), ) num_global_batches = int(total_dataset_size.item()) // gbs # dim 1 is always assumed to be the sequence dim, sanity check this here sequence_dim = 1 seq_dim_size = data.get("input_ids").shape[sequence_dim] for k, v in data.items(): if torch.is_tensor(v) and len(v.shape) > 1: assert v.shape[sequence_dim] == seq_dim_size, ( f"Dim 1 must be the sequence dim, expected dim 1={seq_dim_size} but got shape {v.shape}" ) if eval_mode: ctx: AbstractContextManager[Any] = torch.no_grad() self.model.eval() else: ctx = nullcontext() # Ensure model is in training mode self.model.train() with ctx: # Get data from batch and move to device data.to("cuda") losses = [] all_mb_metrics = [] for gb_idx in range(num_global_batches): global_batch = data.get_batch(batch_idx=gb_idx, batch_size=local_gbs) assert "sample_mask" in global_batch, ( "sample_mask must be present in the data!" ) ## get the normalization factor for the loss local_valid_seqs = torch.sum(global_batch["sample_mask"]) if not "token_mask" in global_batch: local_valid_toks = ( local_valid_seqs * global_batch["input_ids"].shape[1] ) else: local_valid_toks = torch.sum( global_batch["token_mask"][:, 1:] * global_batch["sample_mask"].unsqueeze(-1) ) to_reduce = torch.tensor([local_valid_seqs, local_valid_toks]).cuda() torch.distributed.all_reduce(to_reduce, group=self.dp_mesh.get_group()) global_valid_seqs, global_valid_toks = to_reduce[0], to_reduce[1] if ( hasattr(loss_fn, "loss_type") and loss_fn.loss_type == LossType.TOKEN_LEVEL ): assert "token_mask" in global_batch, ( "token_mask must be present in the data when using token-level loss" ) self.optimizer.zero_grad() mb_losses = [] batch = data.get_batch(batch_idx=gb_idx, batch_size=local_gbs) # Calculate number of microbatches to process # make_microbatch_iterator assumes that the batch size is a multiple of the microbatch size # so its safe to not check for the case where the last data slice is smaller than mbs dummy_iterator = iter([]) if self.cfg["dynamic_batching"]["enabled"]: mb_iterator = batch.make_microbatch_iterator_with_dynamic_shapes() iterator_len = batch.get_microbatch_iterator_dynamic_shapes_len() elif self.enable_seq_packing: mb_iterator = ( batch.make_microbatch_iterator_for_packable_sequences() ) iterator_len, max_seqlen = ( batch.get_microbatch_iterator_for_packable_sequences_len() ) max_batch_ct = torch.tensor([iterator_len], device="cuda") torch.distributed.all_reduce( max_batch_ct, op=torch.distributed.ReduceOp.MAX ) # Sequence packing can end up with unevenly distributed batch counts across DP ranks. # We add dummy batches to the end of the iterator to make the batch counts equal. dummy_batch_ct = int(max_batch_ct.item() - iterator_len) dummy_iterator = ( batch.make_microbatch_iterator_for_packable_sequences() ) dummy_iterator = itertools.islice( itertools.cycle(dummy_iterator), dummy_batch_ct ) else: mb_iterator = batch.make_microbatch_iterator(mbs) iterator_len = batch.size // mbs for mb_idx, mb in enumerate( itertools.chain(mb_iterator, dummy_iterator) ): with torch.autocast(device_type="cuda", dtype=self.dtype): if self.enable_seq_packing: input_ids = mb.get("input_ids").cuda() input_ids, position_ids, _ = pack_sequences( input_ids=input_ids, input_lengths=mb["input_lengths"], packed_sequence_size=[ len(mb["input_lengths"]) ], # flash attention 2 expects flattened input padding_value=self.tokenizer.eos_token_id, return_attention_mask=False, min_seq_len=self.cfg["sequence_packing"][ "train_mb_tokens" ], # TODO: this is a WAR for sequence packing, we should fix this. Without this, backward will fail when TP is enabled. ) seq_len = input_ids.shape[1] attention_mask = None flash_attn_kwargs = get_flash_attention_kwargs( input_lengths=mb["input_lengths"], ) else: input_ids = mb.get("input_ids").cuda() batch_size, seq_len = input_ids.shape attention_mask = torch.ones( (batch_size, seq_len), dtype=torch.long, device=input_ids.device, ) position_ids = torch.arange( seq_len, device=input_ids.device ).repeat(batch_size, 1) flash_attn_kwargs = {} context_parallel_ctx = None if self.cp_size > 1: seq_index = torch.arange( seq_len, device=input_ids.device ).repeat(1, 1) cp_buffers = ( [input_ids, position_ids, seq_index] if self.cp_size > 1 else [] ) # Create context parallel context context_parallel_ctx = self.create_context_parallel_ctx( cp_mesh=self.cp_mesh, cp_buffers=cp_buffers, cp_seq_dims=[sequence_dim] * len(cp_buffers), cp_no_restore_buffers=set(cp_buffers), ) with DTensorPolicyWorker.train_context(context_parallel_ctx): with torch.autocast(device_type="cuda", dtype=self.dtype): outputs = self.model( input_ids=input_ids, attention_mask=attention_mask, position_ids=position_ids, use_cache=False, flash_attn_kwargs=flash_attn_kwargs, ) # Get logprobs if not hasattr(outputs, "logits"): logits = self.model.lm_head(outputs.last_hidden_state) else: logits = outputs.logits # Apply temperature scaling logits = self._apply_temperature_scaling(logits) if self.cp_size > 1: seq_index_dtensor = ( DTensor.from_local( seq_index, device_mesh=self.cp_mesh, placements=[Shard(1)], ) .full_tensor() .squeeze(0) ) mb["seq_index"] = seq_index_dtensor for tensor_name in mb: current_tensor = mb[tensor_name] for buffer in cp_buffers: if current_tensor is buffer: assert type(current_tensor) == torch.Tensor, ( f"tensor {tensor_name} is not a tensor" ) mb[tensor_name] = DTensor.from_local( current_tensor, device_mesh=self.cp_mesh, placements=[Shard(sequence_dim)], ) break if isinstance(logits, DTensor): # Must be tp sharded assert ( logits.device_mesh.ndim == 1 and logits.device_mesh.mesh_dim_names[0] == "tp" ), "logits must be tp sharded" # CP is implicitly sharded on the seq dim, so we need to redistribute to the tp dim logits = DTensor.from_local( logits.to_local(), device_mesh=self.device_mesh[("cp", "tp")], placements=[Shard(sequence_dim), Shard(-1)], ) else: logits = DTensor.from_local( logits, device_mesh=self.device_mesh[("cp", "tp")], placements=[Shard(sequence_dim), Shard(-1)], ) if self.enable_seq_packing: loss_fn_ = SequencePackingLossWrapper( loss_fn=loss_fn, cu_seqlens_q=flash_attn_kwargs.cu_seqlens_q, cu_seqlens_q_padded=flash_attn_kwargs.cu_seqlens_q, ) else: loss_fn_ = loss_fn loss, loss_metrics = loss_fn_( logits, mb, global_valid_seqs, global_valid_toks, ) # skip the update for dummy batches if mb_idx < iterator_len: ## scale by the number of global batches so we get the correct ## value when summing metrics across all microbatches for k in loss_metrics.keys(): loss_metrics[k] /= num_global_batches num_valid_samples = loss_metrics["num_valid_samples"] loss_metrics["lr"] = self.optimizer.param_groups[0]["lr"] loss_metrics["global_valid_seqs"] = global_valid_seqs.item() loss_metrics["global_valid_toks"] = global_valid_toks.item() else: loss *= 0 # Backward pass if not eval_mode: ## NOTE: invalid samples should be multiplied ## by zero in the loss function to prevent them ## from affecting the gradient calculation # when FSDP reduces the gradients over the DP dim, they're automatically averaged # but we want to sum them so we cancel out the average here loss *= self.dp_size * self.cp_size loss.backward() if num_valid_samples > 0: mb_losses.append(loss.item()) all_mb_metrics.append(loss_metrics) grad_norm: Optional[float | torch.Tensor] = None if not eval_mode: with torch.no_grad(): grad_norm = get_grad_norm( self.model.parameters(), dp_cp_group=self.dp_cp_mesh.get_group(), tp_group=self.tp_mesh.get_group(), dtype=torch.float32, ) if self.max_grad_norm is not None: clip_grad_by_total_norm_( self.model.parameters(), max_grad_norm=self.max_grad_norm, total_norm=grad_norm, dtype=torch.float32, ) grad_norm = torch.tensor([grad_norm]) # Update parameters self.optimizer.step() losses.append(torch.tensor(mb_losses).sum().item()) # increment scheduler after all batches in rollout are processed if not eval_mode: self.scheduler.step() # dynamic batch and sequence dims causes alot of fragmentation, so clear # the memory allocator before moving on torch.cuda.empty_cache() # Compute global loss across all ranks with torch.no_grad(): global_loss = torch.tensor(losses, device="cuda") torch.distributed.all_reduce( global_loss, group=self.dp_mesh.get_group() ) # Aggregate metrics across all microbatches mb_metrics = defaultdict(list) for m in all_mb_metrics: for k, v in m.items(): mb_metrics[k].append(v) metrics = { "global_loss": global_loss.cpu(), "grad_norm": grad_norm, "rank": torch.distributed.get_rank(), "all_mb_metrics": dict(mb_metrics), } return metrics
[docs] def get_logprobs( self, data: BatchedDataDict[Any], micro_batch_size: Optional[int] = None ) -> BatchedDataDict[LogprobOutputSpec]: """Get the logprobs of the model for a batch of data. Uses the configured logprob_batch_size to do microbatching. Input data is assumed to be right-padded. The method internally converts to left-padded format for computation, and returns outputs in right-padded format. Returns: a BatchedDataDict with key "logprobs" and shape [batch_size, sequence_length]. We use the convention that the logprob of the first token is 0 so that the sequence length is maintained. The logprob of input token i is specified at position i in the output logprobs tensor. """ logprob_batch_size = ( micro_batch_size if micro_batch_size is not None else self.cfg["logprob_batch_size"] ) # dim 1 is always assumed to be the sequence dim, sanity check this here sequence_dim = 1 seq_dim_size = data.get("input_ids").shape[sequence_dim] for k, v in data.items(): if torch.is_tensor(v) and len(v.shape) > 1: assert v.shape[sequence_dim] == seq_dim_size, ( f"Dim 1 must be the sequence dim, expected dim 1={seq_dim_size} but got shape {v.shape}" ) all_log_probs = [] self.model.eval() with unshard_fsdp2_model(self.model), torch.no_grad(): data.to("cuda") dummy_iterator = iter([]) if self.cfg["dynamic_batching"]["enabled"]: mb_iterator = data.make_microbatch_iterator_with_dynamic_shapes() iterator_len = data.get_microbatch_iterator_dynamic_shapes_len() elif self.enable_seq_packing: mb_iterator = data.make_microbatch_iterator_for_packable_sequences() iterator_len, max_seqlen = ( data.get_microbatch_iterator_for_packable_sequences_len() ) max_batch_ct = torch.tensor([iterator_len], device="cuda") torch.distributed.all_reduce( max_batch_ct, op=torch.distributed.ReduceOp.MAX ) # Sequence packing can end up with unevenly distributed batch counts across DP ranks. # We add dummy batches to the end of the iterator to make the batch counts equal. dummy_batch_ct = int(max_batch_ct.item() - iterator_len) dummy_iterator = data.make_microbatch_iterator_for_packable_sequences() dummy_iterator = itertools.islice( itertools.cycle(dummy_iterator), dummy_batch_ct ) else: mb_iterator = data.make_microbatch_iterator(logprob_batch_size) iterator_len = data.size // logprob_batch_size step = 0 for batch_idx, lp_batch in enumerate( itertools.chain(mb_iterator, dummy_iterator) ): step += 1 input_ids = lp_batch.get("input_ids").cuda() input_lengths = lp_batch.get("input_lengths") batch_size, seq_len = input_ids.shape if self.enable_seq_packing: input_ids, position_ids, _ = pack_sequences( input_ids=input_ids, input_lengths=input_lengths, packed_sequence_size=[ batch_size ], # flash attention 2 expects flattened input padding_value=self.tokenizer.eos_token_id, return_attention_mask=False, ) seq_len = input_ids.shape[1] attention_mask = None flash_attn_kwargs = get_flash_attention_kwargs( input_lengths=input_lengths, ) else: # Create attention mask for right-padded data attention_mask = torch.zeros( (batch_size, seq_len), dtype=torch.long, device=input_ids.device ) for i, length in enumerate(input_lengths): # For right-padded sequence, set 1s at the beginning of the sequence attention_mask[i, :length] = 1 # explicitly create position ids for the input, otherwise the sharding # for DTensor will be incorrect position_ids = torch.arange( seq_len, device=input_ids.device ).repeat(batch_size, 1) flash_attn_kwargs = {} with torch.autocast(device_type="cuda", dtype=self.dtype): # DTensor requires the casual attention kernel to hit, # yet our attention mask above is not always all 1s # this is fine because we mask with the actual attention mask # later, but for input it has to be all 1s attention_mask_input_all_ones = torch.ones( (batch_size, seq_len), dtype=torch.long, device=input_ids.device ) context_parallel_ctx = None if self.cp_size > 1: seq_index = torch.arange(seq_len, device=input_ids.device).repeat( 1, 1 ) cp_buffers = [input_ids, position_ids, seq_index] # Create context parallel context context_parallel_ctx = self.create_context_parallel_ctx( cp_mesh=self.cp_mesh, cp_buffers=cp_buffers, cp_seq_dims=[sequence_dim] * len(cp_buffers), cp_no_restore_buffers=set(cp_buffers), ) with DTensorPolicyWorker.train_context(context_parallel_ctx): with torch.autocast(device_type="cuda", dtype=self.dtype): outputs = self.model( input_ids=input_ids, attention_mask=attention_mask_input_all_ones, position_ids=position_ids, use_cache=False, flash_attn_kwargs=flash_attn_kwargs, ) logits = outputs.logits # Apply temperature scaling logits = self._apply_temperature_scaling(logits) if self.cp_size > 1: seq_index_tensor = ( DTensor.from_local( seq_index, device_mesh=self.cp_mesh, placements=[Shard(1)], ) .full_tensor() .squeeze(0) ) input_ids_dtensor = DTensor.from_local( input_ids, device_mesh=self.cp_mesh, placements=[Shard(sequence_dim)], ) if isinstance(logits, DTensor): # Must be tp sharded assert ( logits.device_mesh.ndim == 1 and logits.device_mesh.mesh_dim_names[0] == "tp" ), "logits must be tp sharded" # CP is implicitly sharded on the seq dim, so we need to redistribute to the tp dim logits = DTensor.from_local( logits.to_local(), device_mesh=self.device_mesh[("cp", "tp")], placements=[Shard(sequence_dim), Shard(-1)], ) else: logits = DTensor.from_local( logits, device_mesh=self.device_mesh[("cp", "tp")], placements=[Shard(sequence_dim), Shard(-1)], ) token_logprobs = get_logprobs_from_vocab_parallel_logits( logits.to(torch.float32), input_ids_dtensor, seq_index_tensor, ) assert token_logprobs.shape[1] == seq_len - 1 else: if isinstance(logits, DTensor): token_logprobs = get_logprobs_from_vocab_parallel_logits( logits.to(torch.float32), input_ids ) else: # Extract logprobs for each token in the sequence by gathering the logprob # corresponding to the next token at each position # Input shapes: # log_probs: [batch_size, sequence_length, vocab_size] - logits for each position # token_ids: [batch_size, sequence_length] - actual tokens # Output shape: [batch_size, sequence_length] - logprob of each token given previous # We get logprob of token[t+1] from logits[t], prepending 0 to maintain sequence length log_probs = torch.nn.functional.log_softmax( outputs.logits.to(torch.float32), dim=-1 ) next_tokens = input_ids[:, 1:] log_probs = log_probs[:, :-1] token_logprobs = log_probs.gather( dim=-1, index=next_tokens.unsqueeze(-1) ).squeeze(-1) token_logprobs = torch.cat( [torch.zeros_like(token_logprobs[:, :1]), token_logprobs], dim=1 ) # skip keeping the logprobs for the dummy batches if batch_idx >= iterator_len: continue if not self.enable_seq_packing: # Apply mask to zero out padding tokens logprobs token_logprobs = token_logprobs * attention_mask else: # For packed sequences, unpack logprobs unpacked_logprobs = torch.zeros( (batch_size, seq_dim_size), dtype=token_logprobs.dtype, device=token_logprobs.device, ) cu_seqlens = flash_attn_kwargs.cu_seqlens_q for i in range(batch_size): start = cu_seqlens[i].item() + 1 end = cu_seqlens[i + 1].item() seq_len_actual = input_lengths[i].item() unpacked_logprobs[i, 1:seq_len_actual] = token_logprobs[ 0, start:end ] token_logprobs = unpacked_logprobs all_log_probs.append(token_logprobs) # Concatenate all batches return_data = BatchedDataDict[LogprobOutputSpec]() all_log_probs_padded = [] for lp in all_log_probs: padding_needed = seq_dim_size - lp.shape[1] if padding_needed > 0: lp = torch.nn.functional.pad( lp, (0, padding_needed), mode="constant", value=0.0 ) all_log_probs_padded.append(lp) return_data["logprobs"] = torch.cat(all_log_probs_padded, dim=0).cpu() return return_data
[docs] @contextmanager def use_reference_model(self) -> Generator[None, None, None]: """Context manager that temporarily swaps the reference model and active model. On entry: Moves model to CPU, moves reference_model to CUDA. Swaps the references On exit: Restores original references and re-flips cuda/cpu """ with torch.no_grad(): try: # Save train model state_dict curr_state_dict = get_cpu_state_dict( self.model.state_dict().items(), pin_memory=True ) # Swap reference model state_dict to self.model for k, v in self.model.state_dict().items(): val = to_local_if_dtensor(v) val.copy_(self.reference_model_state_dict[k]) # - self.model is the original reference_model, now on CUDA # - curr_state_dict is the train model, now on CPU yield finally: # Restore train model state_dict for k, v in self.model.state_dict().items(): val = to_local_if_dtensor(v) val.copy_(curr_state_dict[k])
[docs] def get_reference_policy_logprobs( self, data: BatchedDataDict[Any], micro_batch_size: Optional[int] = None ) -> BatchedDataDict[ReferenceLogprobOutputSpec]: """Get the logprobs from the reference policy for a batch of data. Returns: a BatchedDataDict with key "reference_logprobs" and shape [batch_size, sequence_length]. We use the convention that the logprob of the first token is 0 so that the sequence length is maintained. The logprob of input token i is specified at position i in the output logprobs tensor. """ with self.use_reference_model(): reference_logprobs = self.get_logprobs(data, micro_batch_size) return_data = BatchedDataDict[ReferenceLogprobOutputSpec]() return_data["reference_logprobs"] = reference_logprobs["logprobs"].cpu() return return_data
[docs] def _add_noise_to_weights(self) -> None: """Add small Gaussian noise to the weights of the model. Note that this is used for testing purposes only.""" noise_std = 0.01 # Standard deviation for the noise for p in self.model.parameters(): if p.requires_grad: noise = torch.randn_like(p.data) * noise_std p.data.add_(noise) # Add noise in-place torch.cuda.synchronize()
[docs] def return_state_dict(self): return self.model.state_dict()
[docs] def report_device_id(self) -> str: """Report the UUID of the current CUDA device using NVML. Returns: str: UUID of the device in the format "GPU-xxxxx" """ from nemo_rl.utils.nvml import get_device_uuid # Get current device index from torch device_idx = torch.cuda.current_device() # Get device UUID using NVML return get_device_uuid(device_idx)
[docs] @torch.no_grad() def prepare_refit_info(self) -> Optional[dict[str, Any]]: state_dict = self.model.state_dict() if self.is_generation_colocated: # Collect info for streaming multiple tensors self.refit_param_info = [] for name, tensor in state_dict.items(): # dtensor's numel will return complete tensor instead of only local tensor size_in_bytes = tensor.element_size() * tensor.numel() self.refit_param_info.append((name, size_in_bytes)) else: # Collect info for collective communication state_dict_info = {} for name, tensor in state_dict.items(): state_dict_info[name] = (tensor.shape, self.dtype) return state_dict_info
[docs] @torch.no_grad() def prepare_weights_for_ipc(self) -> tuple[list[tuple[str, int]], float]: """Prepare the weights for IPC. This function: - Prepares the state_dict of the model. - Collects the info for streaming multiple tensors. Returns: list: The list of parameters sizes. float: The total available memory in bytes. """ from nemo_rl.utils.nvml import get_free_memory_bytes # Get state_dict self.model = self.move_to_cuda(self.model) self._held_sharded_state_dict_reference: dict[str, torch.Tensor] = ( self.model.state_dict() ) # Collect current available memory for refit ## Get current device index from torch device_idx = torch.cuda.current_device() ## Get device free memory using NVML total_available_bytes = get_free_memory_bytes(device_idx) ## Use 80% of the free memory for safety memory_ratio = os.getenv("NRL_REFIT_BUFFER_MEMORY_RATIO", "0.8") total_available_bytes *= float(memory_ratio) return self.refit_param_info, total_available_bytes
[docs] @torch.no_grad() def get_weights_ipc_handles(self, keys: Iterable[str]) -> dict[str, Any]: from torch.multiprocessing.reductions import reduce_tensor assert self._held_sharded_state_dict_reference is not None, ( "prepare_weights_for_ipc must be called before get_weights_ipc_handles" ) # Clean up the held tensors to reduce peak memory if self._held_streamed_param_reference is not None: del self._held_streamed_param_reference self._held_streamed_param_reference = None converted_params = {} for key in keys: # Get full_tensor for dtensor (GPU > 1) tensor = self._held_sharded_state_dict_reference[key] if isinstance(tensor, DTensor): full_tensor = tensor.full_tensor() else: full_tensor = tensor # Convert parameters to the configured dtype converted_params[key] = full_tensor.to(self.dtype, non_blocking=True) # Temporary record the full tensor for cleanup # It is needed for cleanup the last full_tensor in the refit process self._held_streamed_param_reference = converted_params # Get device UUID for IPC device_uuid = self.report_device_id() # Create handles for the tensors all_handles = [] for key, p in converted_params.items(): handle = reduce_tensor(p.detach()) all_handles.append((key, handle)) # (pack_tensor_for_ipc: bool, handles: list) serialized = (False, all_handles) return {device_uuid: serialized}
[docs] @torch.no_grad() def broadcast_weights_for_collective(self) -> None: """Broadcast the weights for collective communication.""" for _, tensor in self.model.state_dict().items(): if isinstance(tensor, DTensor): tensor = tensor.full_tensor() if self.rank == 0: tensor = tensor.to(self.dtype, non_blocking=True) self.model_update_group.broadcast(tensor.data, src=0)
[docs] def prepare_for_lp_inference(self) -> None: if not self.cpu_offload: self.move_to_cuda(self.model) else: self.model = self.move_buffer_to_device(self.model, "cuda") self.model.eval() self.offload_before_refit()
[docs] def prepare_for_training(self, *args, **kwargs) -> None: # onload models and optimizer state to cuda if not self.cpu_offload: self.move_to_cuda(self.model) else: # when cpu offload is enabled, the buffers do not get moved # to cuda automatically, so we need to do that manually self.model = self.move_buffer_to_device(self.model, "cuda") # have to move buffers to cuda manually for cpu offload case self.move_buffer_to_device(self.model, "cuda") self.model.train() # Move optimizer state to CUDA if it exists if ( hasattr(self, "optimizer") and self.optimizer is not None and not self.cpu_offload ): for state in self.optimizer.state.values(): for k, v in state.items(): if isinstance(v, (DTensor, torch.Tensor)): state[k] = v.to("cuda") torch.cuda.empty_cache()
[docs] @torch.no_grad() def offload_before_refit(self) -> None: """Offload the optimizer to the CPU.""" torch.randn(1).cuda() # wake up torch allocator if hasattr(self, "optimizer") and self.optimizer is not None: for state in self.optimizer.state.values(): for k, v in state.items(): if isinstance(v, (DTensor, torch.Tensor)): state[k] = v.to("cpu") gc.collect() torch.cuda.empty_cache()
[docs] @torch.no_grad() def offload_after_refit(self) -> None: # Offload as much as possible on the CPU self.model = self.move_to_cpu(self.model) self.model.eval() torch.randn(1).cuda() # wake up torch allocator self.offload_before_refit() # rerun the old offload function # Clean up the held tensors if self._held_sharded_state_dict_reference is not None: del self._held_sharded_state_dict_reference self._held_sharded_state_dict_reference = None if self._held_streamed_param_reference is not None: del self._held_streamed_param_reference self._held_streamed_param_reference = None gc.collect() torch.cuda.empty_cache() # Print memory stats after offloading allocated = torch.cuda.memory_allocated() / (1024**3) # Convert to GB reserved = torch.cuda.memory_reserved() / (1024**3) # Convert to GB print( f"GPU Memory after optimizer offload: {allocated:.2f}GB allocated, {reserved:.2f}GB reserved" )
[docs] def move_to_device(self, model: nn.Module, device: str | torch.device) -> nn.Module: model = self.move_buffer_to_device(model, device) return model.to(device)
[docs] def move_buffer_to_device( self, model: nn.Module, device: str | torch.device ) -> nn.Module: # FSDP modules do not move buffers to the device automatically for v in model.buffers(): v.data = v.data.to(device) return model
[docs] def move_to_cuda(self, model: torch.nn.Module) -> torch.nn.Module: model = self.move_to_device(model, "cuda") gc.collect() torch.cuda.empty_cache() return model
[docs] def move_to_cpu(self, model: torch.nn.Module) -> torch.nn.Module: model = self.move_to_device(model, "cpu") gc.collect() torch.cuda.empty_cache() return model
[docs] def save_checkpoint( self, weights_path: str, optimizer_path: Optional[str] = None, tokenizer_path: Optional[str] = None, ) -> None: """Save a checkpoint of the model. the optimizer states are saved only if `optimizer` and `optimizer_path` are provided. """ save_checkpoint( model=self.model, weights_path=weights_path, optimizer=self.optimizer if optimizer_path else None, scheduler=self.scheduler if optimizer_path else None, optimizer_path=optimizer_path, tokenizer=self.tokenizer if tokenizer_path else None, tokenizer_path=tokenizer_path, )
[docs] def load_checkpoint( self, weights_path: str, optimizer_path: Optional[str] = None ) -> None: """Load a checkpoint into the model.""" load_checkpoint( model=self.model, weights_path=weights_path, optimizer=self.optimizer if optimizer_path else None, scheduler=self.scheduler if optimizer_path else None, optimizer_path=optimizer_path, )
[docs] def shutdown(self) -> None: """Shutdown the policy."""
[docs] def start_gpu_profiling(self) -> None: """Start GPU profiling.""" torch.cuda.profiler.start()
[docs] def stop_gpu_profiling(self) -> None: """Stop GPU profiling.""" torch.cuda.profiler.stop()