Files
ColossalAI/colossalai/builder/__init__.py
Frank Lee 2b2dc1c86b [pipeline] refactor the pipeline module (#1087)
* [pipeline] refactor the pipeline module

* polish code
2022-06-10 11:27:38 +08:00

6 lines
172 B
Python

from .builder import build_from_config, build_from_registry, build_gradient_handler
__all__ = [
'build_gradient_handler', 'build_from_config', 'build_from_registry'
]