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

Checkpoint iter for FBGEMM Adam etc #3234

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

csmiler
Copy link

@csmiler csmiler commented Oct 9, 2024

Summary:
X-link: https://github.com/facebookresearch/FBGEMM/pull/335

Following D63909559, support checkpointing iter for Adam/Partial_rowwise_adam/Lamb/Partial_rowwise_lamb

Differential Revision: D63964848

Wang Zhou added 2 commits October 9, 2024 13:21
Summary:
X-link: pytorch/torchrec#2474


X-link: facebookresearch/FBGEMM#326

When the optimizer states for sharded embedding tables are tracked in TorchRec, they are assumed to be either point-wise (same shape as the embedding table, for example, Adam's exp_avg), or row-wise (same length as the embedding hashsize, for example, rowwise_adagrad's momentum/sum). However, there may be other formats, a single value for each table. Specifically, for Adam/Partial_rowwise_adam/Lamb/Partial_rowwise_lamb and GWD, the `iter` number is a single value tensor, which **cannot be tracked and checkpointed properly** (this also means that there is a bug in Adam/Partial_rowwise_adam/Lamb/Partial_rowwise_lamb usages!)

Here we support tracking and checkpointing single-value states, by constructing ShardMetadata with rowwise-sharding and replicating the single-value for each Sharded param (this is similar to how the rowwise state for colume-wise sharded tables are concatenated along row-dim).

By doing so, single-value `iter` can be properly checkpointed just like other states, ensuring correct reloading of states and continuous training.

This diff checkpoints `iter` for rowwise_adagrad with GWD. The next diff would checkpoint `iter` for Adam/Partial_rowwise_adam/Lamb/Partial_rowwise_lamb.

Reviewed By: spcyppt

Differential Revision: D63909559
Summary:
X-link: facebookresearch/FBGEMM#335

Following D63909559, support checkpointing `iter` for Adam/Partial_rowwise_adam/Lamb/Partial_rowwise_lamb

Differential Revision: D63964848
@facebook-github-bot
Copy link
Contributor

This pull request was exported from Phabricator. Differential Revision: D63964848

Copy link

netlify bot commented Oct 9, 2024

Deploy Preview for pytorch-fbgemm-docs failed.

Name Link
🔨 Latest commit 0b0d76c
🔍 Latest deploy log https://app.netlify.com/sites/pytorch-fbgemm-docs/deploys/6706e5cd15a9b80008d73535

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

Successfully merging this pull request may close these issues.

2 participants