mirror of https://github.com/hpcaitech/ColossalAI
aibig-modeldata-parallelismdeep-learningdistributed-computingfoundation-modelsheterogeneous-traininghpcinferencelarge-scalemodel-parallelismpipeline-parallelism
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
315 B
5 lines
315 B
from ._base_schedule import BaseSchedule |
|
from ._pipeline_schedule import PipelineSchedule, InterleavedPipelineSchedule, get_tensor_shape |
|
from ._non_pipeline_schedule import NonPipelineSchedule |
|
|
|
__all__ = ['BaseSchedule', 'NonPipelineSchedule', 'PipelineSchedule', 'InterleavedPipelineSchedule', 'get_tensor_shape']
|
|
|