-
Notifications
You must be signed in to change notification settings - Fork 26.3k
[quant] Fix implementation for output_quantized_idxs in convert
#74140
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
Conversation
CI Flow Status⚛️ CI FlowRuleset - Version:
|
🔗 Helpful links
💊 CI failures summary and remediationsAs of commit a4a1b36 (more details on the Dr. CI page): 💚 💚 Looks good so far! There are no failures yet. 💚 💚 This comment was automatically generated by Dr. CI (expand for details).Please report bugs/suggestions to the (internal) Dr. CI Users group. |
|
This pull request was exported from Phabricator. Differential Revision: D34846005 |
…torch#74140) Summary: Pull Request resolved: pytorch#74140 Previously we did not successfully remove the dequantize node for `dict`, this PR fixes that, tested with meta-only tests right now but we should follow up with oss tests (with dict output) Reviewed By: andrewor14 Differential Revision: D34846005 fbshipit-source-id: 5988a9e3f167d81b8f5c5b097bb24b0e52cbab7a
|
This pull request was exported from Phabricator. Differential Revision: D34846005 |
753f2b0 to
a4a1b36
Compare
…4140) Summary: Pull Request resolved: #74140 Previously we did not successfully remove the dequantize node for `dict`, this PR fixes that, tested with meta-only tests right now but we should follow up with oss tests (with dict output) Reviewed By: andrewor14 Differential Revision: D34846005 fbshipit-source-id: 4313ed6adff425d73ad19aabedde1200a98f1915
|
Hey @jerryzh168. |
|
This pull request has been reverted by 1e64c8a. To re-land this change, please open another pull request, assignthe same reviewers, fix the CI failures that caused the revert and make sure that the failing CI runs on the PR by applying the proper ciflow label (e.g., ciflow/trunk). |
|
@jerryzh168 this PR broke number of tests and also were red on PR CI. Why was it landed? |
…4140) Summary: Previously we did not successfully remove the dequantize node for `dict`, this PR fixes that, tested with meta-only tests right now but we should follow up with oss tests (with dict output) since we called dead code elimination pass, some of the inplace operators are removed in the TestQuantizeFx.test_fixed_qparams_ops, in this PR we also just removed the calls to the inplace ops, and changed the expected results in the test case, in the future PR we can remove the support for inplace operators, since it is not really supported in fx, and it's OK for us to skip them as well Reviewed By: andrewor14 (cherry picked from commit 682abe9) [ghstack-poisoned]
…4140) Summary: Previously we did not successfully remove the dequantize node for `dict`, this PR fixes that, tested with meta-only tests right now but we should follow up with oss tests (with dict output) since we called dead code elimination pass, some of the inplace operators are removed in the TestQuantizeFx.test_fixed_qparams_ops, in this PR we also just removed the calls to the inplace ops, and changed the expected results in the test case, in the future PR we can remove the support for inplace operators, since it is not really supported in fx, and it's OK for us to skip them as well Reviewed By: andrewor14 (cherry picked from commit 682abe9) ghstack-source-id: 2368a69 Pull Request resolved: #74229
|
I think I forgot to export the diff to github, also the test errors in phabricator looks irrelevant |
…4140) (#74229) Summary: Pull Request resolved: #74229 Previously we did not successfully remove the dequantize node for `dict`, this PR fixes that, tested with meta-only tests right now but we should follow up with oss tests (with dict output) since we called dead code elimination pass, some of the inplace operators are removed in the TestQuantizeFx.test_fixed_qparams_ops, in this PR we also just removed the calls to the inplace ops, and changed the expected results in the test case, in the future PR we can remove the support for inplace operators, since it is not really supported in fx, and it's OK for us to skip them as well Test Plan: Imported from OSS Reviewed By: vkuzo Differential Revision: D34888140 fbshipit-source-id: 48cea842b49e52baa8eee3ce0f4bfb4a3625ab2a
…4140) (#74229) Summary: Pull Request resolved: #74229 Previously we did not successfully remove the dequantize node for `dict`, this PR fixes that, tested with meta-only tests right now but we should follow up with oss tests (with dict output) since we called dead code elimination pass, some of the inplace operators are removed in the TestQuantizeFx.test_fixed_qparams_ops, in this PR we also just removed the calls to the inplace ops, and changed the expected results in the test case, in the future PR we can remove the support for inplace operators, since it is not really supported in fx, and it's OK for us to skip them as well Test Plan: Imported from OSS Reviewed By: vkuzo Differential Revision: D34888140 fbshipit-source-id: 48cea842b49e52baa8eee3ce0f4bfb4a3625ab2a (cherry picked from commit ef79031)
|
This pull request has been reverted by 1e64c8a. To re-land this change, please open another pull request, assignthe same reviewers, fix the CI failures that caused the revert and make sure that the failing CI runs on the PR by applying the proper ciflow label (e.g., ciflow/trunk). |
Summary:
Previously we did not successfully remove the dequantize node for
dict, this PR fixes that, tested withmeta-only tests right now but we should follow up with oss tests (with dict output)
Differential Revision: D34846005