-
Notifications
You must be signed in to change notification settings - Fork 3.5k
nonuniform tensor parallelism #2149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
daiyaanarfeen
wants to merge
1
commit into
NVIDIA:main
Choose a base branch
from
daiyaanarfeen:nonuniform-tp
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| # Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved. | ||
|
|
||
| from dataclasses import dataclass | ||
| from typing import Optional | ||
| from typing import Dict, List, Optional, Tuple | ||
|
|
||
|
|
||
| @dataclass | ||
|
|
@@ -140,6 +140,28 @@ class DistributedDataParallelConfig: | |
| delay_wgrad_compute: bool = False | ||
| """Delay the weight gradient computation to improve batch-level communication overlapping""" | ||
|
|
||
| tp_base: int = 8 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Make a small config class just for NTP. |
||
| """Base for tensor parallelism. This is the number of ranks in healthy tensor parallel groups. | ||
| Used for nonuniform tensor parallelism.""" | ||
|
|
||
| tp_spares: int = 0 | ||
| """Number of spares for nonuniform tensor parallelism. When > 0, enables nonuniform TP mode | ||
| where (tp_base - tp_spares) ranks handle computation and tp_spares ranks provide fault tolerance.""" | ||
|
|
||
| num_reduced_tp_dp_ranks: int = 1 | ||
| """Number of DP ranks that use reduced TP (tp_base - tp_spares). The remaining DP ranks use | ||
| full tp_base. Reduced TP ranks are assumed to come first in the global rank ordering.""" | ||
|
|
||
| non_active_ranks_per_dp: Optional[Dict[Tuple[int, int, int], List[int]]] = None | ||
| """Mapping of (DP rank, CP rank, PP rank) to list of non-active (spare) local TP rank IDs. | ||
| This allows specifying arbitrary GPU failures across all parallelism dimensions. | ||
| Example: {(0,0,0): [0,3], (0,1,0): [1,2], (1,0,0): [0,3]} means: | ||
| - DP rank 0, CP rank 0, PP rank 0 has local TP ranks 0,3 as spares | ||
| - DP rank 0, CP rank 1, PP rank 0 has local TP ranks 1,2 as spares | ||
| - DP rank 1, CP rank 0, PP rank 0 has local TP ranks 0,3 as spares | ||
| The number of non-active ranks must be consistent across CP replicas within each DP rank. | ||
| If None, defaults to last tp_spares ranks as non-active.""" | ||
|
|
||
| def __post_init__(self): | ||
| import os | ||
|
|
||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inherit from DDP, make a new class and override _make_backward_post_hook().