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

Add ShardedTensor support in LightningModule #8944

Merged
merged 9 commits into from
Aug 23, 2021

Conversation

yifuwang
Copy link
Contributor

Register ShardedTensor state dict hooks in LightningModule.__init__
if the pytorch version supports ShardedTensor.

What does this PR do?

Register ShardedTensor state dict hooks in LightningModule.__init__ if the pytorch version supports ShardedTensor (#8633).

Does your PR introduce any breaking changes? If yes, please list them.

Before submitting

  • Was this discussed/approved via a GitHub issue? (not for typos and docs)
  • Did you read the contributor guideline, Pull Request section?
  • Did you make sure your PR does only one thing, instead of bundling different changes together?
  • Did you make sure to update the documentation with your changes? (if necessary)
  • Did you write any new necessary tests? (not for typos and docs)
  • Did you verify new and existing tests pass locally with your changes?
  • Did you list all the breaking changes introduced by this pull request?
  • Did you update the CHANGELOG? (not for typos, docs, test updates, or internal minor changes/refactorings)

PR review

Anyone in the community is welcome to review the PR.
Before you start reviewing make sure you have read Review guidelines. In short, see the following bullet-list:

  • Is this pull request ready for review? (if not, please submit in draft mode)
  • Check that all items from Before submitting are resolved
  • Make sure the title is self-explanatory and the description concisely explains the PR
  • Add labels and milestones (and optionally projects) to the PR so it can be classified

Did you have fun?

Make sure you had fun coding 🙃

Register `ShardedTensor` state dict hooks in `LightningModule.__init__`
if the pytorch version supports `ShardedTensor`.
@codecov
Copy link

codecov bot commented Aug 16, 2021

Codecov Report

Merging #8944 (447af29) into master (c8e9fb4) will decrease coverage by 4%.
The diff coverage is 62%.

@@           Coverage Diff           @@
##           master   #8944    +/-   ##
=======================================
- Coverage      93%     89%    -4%     
=======================================
  Files         175     175            
  Lines       14457   14465     +8     
=======================================
- Hits        13406   12811   -595     
- Misses       1051    1654   +603     

Copy link
Contributor

@ananthsub ananthsub left a comment

Choose a reason for hiding this comment

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

@ananthsub ananthsub added the checkpointing Related to checkpointing label Aug 17, 2021
@ananthsub ananthsub added this to the v1.5 milestone Aug 17, 2021
@awaelchli awaelchli added the feature Is an improvement or enhancement label Aug 17, 2021
@mergify mergify bot added the ready PRs ready to be merged label Aug 17, 2021
Sean Naren and others added 2 commits August 17, 2021 10:13
@justusschock
Copy link
Member

@yifuwang @ananthsub do we need to do the same to the metrics modules in torchmetrics?

Copy link
Contributor

@SeanNaren SeanNaren 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 this, @yifuwang @ananthsub in the future would you see an API like this where we can handle distributed communications?

class BoringModelWithShardedTensor(BoringModel):
    def __init__(self, spec):
        super().__init__()
        self.spec = spec

    def configure_sharded_model(self):
        self.sharded_tensor = dist._sharded_tensor.empty(self.spec, 10, 20)
        self.sharded_tensor.local_shards()[0].tensor.fill_(0)

model = BoringModelWithShardedTensor()
trainer = Trainer()
trainer.fit(model)

@tchaton tchaton enabled auto-merge (squash) August 17, 2021 16:09
@yifuwang
Copy link
Contributor Author

@yifuwang @ananthsub do we need to do the same to the metrics modules in torchmetrics?

Good question. I'm not aware of any metric implementation that maintains sharded state. If there is, they should ideally be represented with sharded tensor once the feature's released, in which case this change also applies in torchmetrics.

@yifuwang
Copy link
Contributor Author

Thanks for this, @yifuwang @ananthsub in the future would you see an API like this where we can handle distributed communications?

class BoringModelWithShardedTensor(BoringModel):
    def __init__(self, spec):
        super().__init__()
        self.spec = spec

    def configure_sharded_model(self):
        self.sharded_tensor = dist._sharded_tensor.empty(self.spec, 10, 20)
        self.sharded_tensor.local_shards()[0].tensor.fill_(0)

model = BoringModelWithShardedTensor()
trainer = Trainer()
trainer.fit(model)

Very good question. I think it will be inevitable for LightningModule to recommend a best practice for organizing model parallel logic. However it's still not clear to me what it should look like.

I think the API above makes a lot of sense for model parallel uses cases that are developed on Lightning. However, for a self-contained model parallel use cases that just want to train with Lightning, there's a chance that the hook may be too opinionated.

It's definitely difficult to strike a good balance between usability and flexibility. I think it'd be helpful for us to do a informal survey of model parallel use cases we'd like to support in order to make an informed decision.

auto-merge was automatically disabled August 23, 2021 07:38

Head branch was pushed to by a user without write access

@mergify mergify bot removed the has conflicts label Aug 23, 2021
@ananthsub ananthsub enabled auto-merge (squash) August 23, 2021 19:37
@ananthsub ananthsub merged commit 3d5e71a into Lightning-AI:master Aug 23, 2021
@s-rog
Copy link
Contributor

s-rog commented Aug 31, 2021

This is an edge case, but the version check passes for 1.10.0a0+ecc3718 (the pytorch version in NGC 21.07) but the subsequent import fails.

This is probably the result of Nvidia's cherry picking, and I'm unsure if this is something we want to support?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
checkpointing Related to checkpointing feature Is an improvement or enhancement ready PRs ready to be merged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants