Source code for opentau.utils.random_utils

#!/usr/bin/env python

# Copyright 2024 The HuggingFace Inc. team. All rights reserved.
# Copyright 2026 Tensor Auto Inc. 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.
"""Utilities for managing random number generator states.

This module provides functions for serializing, deserializing, saving, and loading
random number generator states for Python's random module, NumPy, and PyTorch.
This is essential for reproducibility in training and evaluation.
"""

import random
from contextlib import contextmanager
from pathlib import Path
from typing import Any, Generator

import accelerate
import numpy as np
import torch
from safetensors.torch import load_file, save_file

from opentau.constants import RNG_STATE
from opentau.datasets.utils import flatten_dict, unflatten_dict


[docs] def serialize_python_rng_state() -> dict[str, torch.Tensor]: """Serialize Python's random module RNG state to a dictionary. Returns: Dictionary containing the RNG state as torch.Tensor values, suitable for saving with safetensors.save_file() or torch.save(). """ py_state = random.getstate() return { "py_rng_version": torch.tensor([py_state[0]], dtype=torch.int64), "py_rng_state": torch.tensor(py_state[1], dtype=torch.int64), }
[docs] def deserialize_python_rng_state(rng_state_dict: dict[str, torch.Tensor]) -> None: """Restore Python's random module RNG state from a dictionary. Args: rng_state_dict: Dictionary produced by serialize_python_rng_state(). """ py_state = (rng_state_dict["py_rng_version"].item(), tuple(rng_state_dict["py_rng_state"].tolist()), None) random.setstate(py_state)
[docs] def serialize_numpy_rng_state() -> dict[str, torch.Tensor]: """Serialize NumPy's RNG state to a dictionary. Returns: Dictionary containing the RNG state as torch.Tensor values, suitable for saving with safetensors.save_file() or torch.save(). """ np_state = np.random.get_state() # Ensure no breaking changes from numpy assert np_state[0] == "MT19937" return { "np_rng_state_values": torch.tensor(np_state[1], dtype=torch.int64), "np_rng_state_index": torch.tensor([np_state[2]], dtype=torch.int64), "np_rng_has_gauss": torch.tensor([np_state[3]], dtype=torch.int64), "np_rng_cached_gaussian": torch.tensor([np_state[4]], dtype=torch.float32), }
[docs] def deserialize_numpy_rng_state(rng_state_dict: dict[str, torch.Tensor]) -> None: """Restore NumPy's RNG state from a dictionary. Args: rng_state_dict: Dictionary produced by serialize_numpy_rng_state(). """ np_state = ( "MT19937", rng_state_dict["np_rng_state_values"].numpy(), rng_state_dict["np_rng_state_index"].item(), rng_state_dict["np_rng_has_gauss"].item(), rng_state_dict["np_rng_cached_gaussian"].item(), ) np.random.set_state(np_state)
[docs] def serialize_torch_rng_state() -> dict[str, torch.Tensor]: """Serialize PyTorch's RNG state to a dictionary. Returns: Dictionary containing the RNG state as torch.Tensor values, including CUDA RNG state if available. Suitable for saving with safetensors.save_file() or torch.save(). """ torch_rng_state_dict = {"torch_rng_state": torch.get_rng_state()} if torch.cuda.is_available(): torch_rng_state_dict["torch_cuda_rng_state"] = torch.cuda.get_rng_state() return torch_rng_state_dict
[docs] def deserialize_torch_rng_state(rng_state_dict: dict[str, torch.Tensor]) -> None: """Restore PyTorch's RNG state from a dictionary. Args: rng_state_dict: Dictionary produced by serialize_torch_rng_state(). """ torch.set_rng_state(rng_state_dict["torch_rng_state"]) if torch.cuda.is_available() and "torch_cuda_rng_state" in rng_state_dict: torch.cuda.set_rng_state(rng_state_dict["torch_cuda_rng_state"])
[docs] def serialize_rng_state() -> dict[str, torch.Tensor]: """Serialize RNG states for random, numpy, and torch. Returns: Dictionary containing all RNG states as torch.Tensor values, suitable for saving with safetensors.save_file() or torch.save(). """ py_rng_state_dict = serialize_python_rng_state() np_rng_state_dict = serialize_numpy_rng_state() torch_rng_state_dict = serialize_torch_rng_state() return { **py_rng_state_dict, **np_rng_state_dict, **torch_rng_state_dict, }
[docs] def deserialize_rng_state(rng_state_dict: dict[str, torch.Tensor]) -> None: """Restore RNG states for random, numpy, and torch from a dictionary. Args: rng_state_dict: Dictionary produced by serialize_rng_state(). """ py_rng_state_dict = {k: v for k, v in rng_state_dict.items() if k.startswith("py")} np_rng_state_dict = {k: v for k, v in rng_state_dict.items() if k.startswith("np")} torch_rng_state_dict = {k: v for k, v in rng_state_dict.items() if k.startswith("torch")} deserialize_python_rng_state(py_rng_state_dict) deserialize_numpy_rng_state(np_rng_state_dict) deserialize_torch_rng_state(torch_rng_state_dict)
[docs] def save_rng_state(save_dir: Path) -> None: """Save RNG state to a file in the specified directory. Args: save_dir: Directory path where the RNG state file will be saved. """ rng_state_dict = serialize_rng_state() flat_rng_state_dict = flatten_dict(rng_state_dict) save_file(flat_rng_state_dict, save_dir / RNG_STATE)
[docs] def load_rng_state(save_dir: Path) -> None: """Load RNG state from a file in the specified directory. Args: save_dir: Directory path containing the RNG state file. """ flat_rng_state_dict = load_file(save_dir / RNG_STATE) rng_state_dict = unflatten_dict(flat_rng_state_dict) deserialize_rng_state(rng_state_dict)
[docs] def get_rng_state() -> dict[str, Any]: """Get the current random state for random, numpy, and torch. Returns: Dictionary containing the current RNG states for all three generators. """ random_state_dict = { "random_state": random.getstate(), "numpy_random_state": np.random.get_state(), "torch_random_state": torch.random.get_rng_state(), } if torch.cuda.is_available(): random_state_dict["torch_cuda_random_state"] = torch.cuda.random.get_rng_state() return random_state_dict
[docs] def set_rng_state(random_state_dict: dict[str, Any]) -> None: """Set the random state for random, numpy, and torch. Args: random_state_dict: Dictionary of the form returned by get_rng_state(). """ random.setstate(random_state_dict["random_state"]) np.random.set_state(random_state_dict["numpy_random_state"]) torch.random.set_rng_state(random_state_dict["torch_random_state"]) if torch.cuda.is_available(): torch.cuda.random.set_rng_state(random_state_dict["torch_cuda_random_state"])
# TODO: only use accelerate set_seed instead of this function. accelerate set_seed already handles the random, numpy, and torch seeds.
[docs] def set_seed(seed, accelerator: accelerate.Accelerator = None) -> None: """Set seed for reproducibility across random, numpy, and torch. Args: seed: Seed value to use. If None, no seeding is performed. accelerator: Optional Accelerator instance. If provided, each process gets a different seed offset to ensure reproducibility in distributed settings. """ # before setting the seed, we check if we are using an accelerator and ensure every process gets a different seed if seed is not None and accelerator is not None: magic_number = 12345 # arbitrary constant to offset the seed per process seed += accelerator.process_index * magic_number random.seed(seed) np.random.seed(seed) torch.manual_seed(seed) if torch.cuda.is_available(): torch.cuda.manual_seed_all(seed) if accelerator: from accelerate.utils import set_seed set_seed(seed)
[docs] @contextmanager def seeded_context(seed: int) -> Generator[None, None, None]: """Set the seed when entering a context, and restore the prior random state at exit. Example usage:: a = random.random() # produces some random number with seeded_context(1337): b = random.random() # produces some other random number c = random.random() # produces yet another random number, but the same it would have if we never made `b` """ random_state_dict = get_rng_state() set_seed(seed) yield None set_rng_state(random_state_dict)