Skip to content
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

Models With Tied Weights Need Re-Tieing After FSDP Param Init #3154

Merged
merged 3 commits into from
Oct 31, 2024

Conversation

fabianlim
Copy link
Contributor

@fabianlim fabianlim commented Oct 11, 2024

What does this PR do?

Currently in FullyShardedDataParallelPlugin, the param_init_fn is set when sync_module_states=True. This is required by FSDP to initialize the shards (i.e. rank > 0) params in a variety of situations, including the important one where the parameter was on torch.device("meta") because low_cpu_mem_mode was used.

However FullyShardedDataParallelPlugin.param_init_fn is now set to

self.param_init_fn = lambda x: x.to_empty(device=device, recurse=False)

which causes problems when there are tied weights. Consider the following scenario

  1. there are two modules A and B that share a tied weight A.weight = B.weight
  2. A.to_empty() is called, then A.weight will be reassigned to a new tensor.
  3. Similarly B.empty() is called, and then now A.weight != B.weight.

This is observed to cause problems in the low_cpu_mem_mode=True case, because now when getting the managed_params in FSDP, see here,

  • in rank = 0, param_init_fn is not called, because low_cpu_mem_mode will load weights in this shard. So managed_params will not have duplicates if weights are tied.
  • In other ranks > 0, param_init_fn is called and managed_params may have duplicates.

Then when FSDP calls _sync_module_params_and_buffers, the torch.distributed._broadcast_coalesced will be trying to communicate different number of tensors. This is not as intended and causes unexpected behaviors.

Fixes inconsistency in current logic in general, in particular is required to fix huggingface/trl#2089 to completion.

Before submitting

  • This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case).
  • Did you read the contributor guideline,
    Pull Request section?
  • Was this discussed/approved via a Github issue or the forum? Please add a link
    to it if that's the case.
  • Did you make sure to update the documentation with your changes? Here are the
    documentation guidelines, and
    here are tips on formatting docstrings.
  • Did you write any new necessary tests?

Who can review?

Anyone in the community is free to review the PR once the tests have passed. Feel free to tag
members/contributors who may be interested in your PR.

@muellerzr

@fabianlim fabianlim changed the title Models With Tied Weights Need Re-Tieing After Models With Tied Weights Need Re-Tieing After FSDP Param Init Oct 11, 2024
Copy link
Collaborator

@muellerzr muellerzr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the fix, just one question on when this should actually be being set

src/accelerate/accelerator.py Outdated Show resolved Hide resolved
Copy link
Collaborator

@muellerzr muellerzr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!Can you fix the quality issues and then we can merge :)

Signed-off-by: Yu Chin Fabian Lim <[email protected]>
@fabianlim
Copy link
Contributor Author

@muellerzr waiting on your approval to trigger the workflow

@HuggingFaceDocBuilderDev

The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update.

@muellerzr muellerzr merged commit 8159c98 into huggingface:main Oct 31, 2024
24 of 25 checks passed
@fabianlim
Copy link
Contributor Author

@muellerzr noticed that one of the tests failed.. the test test_save_load_model_use_pytorch seems to have some kind of random component in it

@enesmsahin
Copy link

This change creates an error if the model doesn't have _tied_weights_keys:
AttributeError: 'FluxControlNetModel' object has no attribute '_tied_weights_keys'

@fabianlim
Copy link
Contributor Author

@enesmsahin sorry for the overlook this is fixed here #3226

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants