Support parallel for operations, like data parallel training, model parallel training etc#3102
Open
typhoonzero wants to merge 5 commits intoelyra-ai:mainfrom
Open
Support parallel for operations, like data parallel training, model parallel training etc#3102typhoonzero wants to merge 5 commits intoelyra-ai:mainfrom
typhoonzero wants to merge 5 commits intoelyra-ai:mainfrom
Conversation
Signed-off-by: typhoonzero <typhoonzero1986@gmail.com>
b14c41c to
ef1b41f
Compare
…_parallel_for_operations
7d371cd to
5cb02ab
Compare
Signed-off-by: typhoonzero <typhoonzero1986@gmail.com>
c6653bb to
cb47ff4
Compare
Signed-off-by: typhoonzero <typhoonzero1986@gmail.com>
cb47ff4 to
ee6eb87
Compare
Contributor
Author
|
@akchinSTC Can you please checkout this feature |
Member
What is the current status of this PR? I still see the |
Contributor
Author
This PR is ready for review now. Work under the TODO list will move on after this feature is merged. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changes were proposed in this pull request?
Support ParallelFor pipeline features for each operation. Set
parallel_count > 2to start parallel operations like distributed training, distributed data processing etc. Below are features/limitations:TF_CONFIGfor Tensorflow andMASTER_ADDR,MASTER_PORTfor Pytorch. Yet in some cases, workers rank >=1 should wait for rank0 to start. This can be achieved by waiting rank0's TCP server port by user.How was this pull request tested?
Unit tests are included in
test_bootstrapper.pyto ensure argumentparallel_countis working.TODO: