-
Notifications
You must be signed in to change notification settings - Fork 627
Remove unused FSDP1 components #1933
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
Closed
Closed
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
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
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
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 |
---|---|---|
|
@@ -6,9 +6,6 @@ | |
from torchtune.training._activation_offloading import NoOpManager, OffloadActivations | ||
from torchtune.training._compile import compile_loss, compile_model | ||
from torchtune.training._distributed import ( | ||
contains_fsdp, | ||
FSDPPolicyType, | ||
get_full_finetune_fsdp_wrap_policy, | ||
get_full_model_state_dict, | ||
get_full_optimizer_state_dict, | ||
get_shard_conditions, | ||
|
@@ -17,8 +14,6 @@ | |
is_distributed, | ||
load_from_full_model_state_dict, | ||
load_from_full_optimizer_state_dict, | ||
lora_fsdp_wrap_policy, | ||
prepare_model_for_fsdp_with_meta_device, | ||
set_torch_num_threads, | ||
shard_model, | ||
validate_no_params_on_meta_device, | ||
|
@@ -108,12 +103,7 @@ | |
"set_torch_num_threads", | ||
"shard_model", | ||
"get_shard_conditions", | ||
"prepare_model_for_fsdp_with_meta_device", | ||
"validate_no_params_on_meta_device", | ||
"contains_fsdp", | ||
"FSDPPolicyType", | ||
"get_full_finetune_fsdp_wrap_policy", | ||
"lora_fsdp_wrap_policy", | ||
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. Same here to be removed from the training API docs. 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. Yeah that would be good to remove as well |
||
"get_full_model_state_dict", | ||
"get_full_optimizer_state_dict", | ||
"load_from_full_model_state_dict", | ||
|
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.
Similar to my comment above, I think this will also need to be removed from the
torchtune.training
API ref doc.Uh oh!
There was an error while loading. Please reload this page.
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.
There's also a reference to this in the QAT recipe in the note just below this heading. Should this note just be removed? @ebsmothers
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.
Sorry started writing out a comment to this but I guess I never hit send. Yes we should remove the note about
memory_efficient_fsdp_wrap
. You can leave the field in any QAT configs as that'll get handled in #1854 but you can remove from e.g. here.