ColossalAI/colossalai/context/random/__init__.py

9 lines
322 B
Python
Raw Normal View History

2021-10-28 16:21:23 +00:00
from ._helper import (seed, set_mode, with_seed, add_seed,
get_seeds, get_states, get_current_mode,
set_seed_states, sync_states)
__all__ = [
'seed', 'set_mode', 'with_seed', 'add_seed', 'get_seeds',
'get_states', 'get_current_mode', 'set_seed_states', 'sync_states'
]