forked from hpcaitech/ColossalAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat] add zerobubble pp (just a frame now); add POC test for dx_dw; …
…add test for zerobubble;
- Loading branch information
1 parent
75c9636
commit ee9baed
Showing
6 changed files
with
2,628 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
from .p2p import PipelineP2PCommunication | ||
from .schedule import InterleavedSchedule, OneForwardOneBackwardSchedule, PipelineSchedule | ||
from .schedule import InterleavedSchedule, OneForwardOneBackwardSchedule, PipelineSchedule, ZeroBubbleVPipeScheduler | ||
from .stage_manager import PipelineStageManager | ||
|
||
__all__ = [ | ||
"PipelineSchedule", | ||
"OneForwardOneBackwardSchedule", | ||
"InterleavedSchedule", | ||
"ZeroBubbleVPipeScheduler", | ||
"PipelineP2PCommunication", | ||
"PipelineStageManager", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
from .base import PipelineSchedule | ||
from .interleaved_pp import InterleavedSchedule | ||
from .one_f_one_b import OneForwardOneBackwardSchedule | ||
from .zero_bubble_pp import ZeroBubbleVPipeScheduler | ||
|
||
__all__ = [ | ||
"PipelineSchedule", | ||
"OneForwardOneBackwardSchedule", | ||
"InterleavedSchedule", | ||
"ZeroBubbleVPipeScheduler", | ||
] |
Oops, something went wrong.