mirror of https://github.com/hpcaitech/ColossalAI
7 lines
342 B
Python
7 lines
342 B
Python
from .chunk import Chunk, ChunkFullError, TensorInfo, TensorState
|
|
from .manager import ChunkManager
|
|
from .search_utils import classify_params_by_dp_degree, search_chunk_configuration
|
|
from .utils import init_chunk_manager
|
|
|
|
__all__ = ['Chunk', 'ChunkManager', 'classify_params_by_dp_degree', 'search_chunk_configuration', 'init_chunk_manager']
|