-
Notifications
You must be signed in to change notification settings - Fork 544
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
Fix get_unique_indices_v2 registration #2993
Conversation
✅ Deploy Preview for pytorch-fbgemm-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
This pull request was exported from Phabricator. Differential Revision: D61294287 |
This pull request was exported from Phabricator. Differential Revision: D61294287 |
7391569
to
0d89feb
Compare
This pull request was exported from Phabricator. Differential Revision: D61294287 |
0d89feb
to
720f379
Compare
Summary: X-link: facebookresearch/FBGEMM#85 Pull Request resolved: pytorch#2993 Properly register `get_unique_indices_v2` in `torch.ops.fbgemm` and import it in SSD-TBE. - Use `init` to define and register each op only once - Check if an op is defined before defining and registering it to avoid duplicate declaration Reviewed By: q10 Differential Revision: D61294287
Summary: X-link: facebookresearch/FBGEMM#85 Pull Request resolved: pytorch#2993 Remove `get_unique_indices_v2` registration in `torch.ops.fbgemm` as we cannot cleanly/safely register it Reviewed By: q10 Differential Revision: D61294287
This pull request was exported from Phabricator. Differential Revision: D61294287 |
720f379
to
94e7157
Compare
Summary: X-link: facebookresearch/FBGEMM#85 Pull Request resolved: pytorch#2993 Remove `get_unique_indices_v2` registration in `torch.ops.fbgemm` as we cannot cleanly/safely register it Reviewed By: q10 Differential Revision: D61294287
This pull request has been merged in 160633c. |
Summary:
Properly register
get_unique_indices_v2
intorch.ops.fbgemm
andimport it in SSD-TBE.
init
to define and register each op only onceavoid duplicate declaration
Differential Revision: D61294287