-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Conversation
Register `ShardedTensor` state dict hooks in `LightningModule.__init__` if the pytorch version supports `ShardedTensor`.
Codecov Report
@@ Coverage Diff @@
## master #8944 +/- ##
=======================================
- Coverage 93% 89% -4%
=======================================
Files 175 175
Lines 14457 14465 +8
=======================================
- Hits 13406 12811 -595
- Misses 1051 1654 +603 |
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.
FYI @SeanNaren @tchaton
Co-authored-by: Adrian Wälchli <[email protected]>
for more information, see https://pre-commit.ci
@yifuwang @ananthsub do we need to do the same to the metrics modules in |
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.
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)
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 |
Very good question. I think it will be inevitable for 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. |
Head branch was pushed to by a user without write access
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? |
Register
ShardedTensor
state dict hooks inLightningModule.__init__
if the pytorch version supports
ShardedTensor
.What does this PR do?
Register
ShardedTensor
state dict hooks inLightningModule.__init__
if the pytorch version supportsShardedTensor
(#8633).Does your PR introduce any breaking changes? If yes, please list them.
Before submitting
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:
Did you have fun?
Make sure you had fun coding 🙃