mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-04-27 19:36:13 +00:00
18 lines
301 B
Python
18 lines
301 B
Python
from .initialize import (
|
|
get_default_parser,
|
|
initialize,
|
|
launch,
|
|
launch_from_openmpi,
|
|
launch_from_slurm,
|
|
launch_from_torch,
|
|
)
|
|
|
|
__all__ = [
|
|
"launch",
|
|
"launch_from_openmpi",
|
|
"launch_from_slurm",
|
|
"launch_from_torch",
|
|
"initialize",
|
|
"get_default_parser",
|
|
]
|