-
Notifications
You must be signed in to change notification settings - Fork 25.5k
[Static Runtime] Block linalg_svdvals codegen & run codegen script #85983
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
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/85983
Note: Links to docs will display an error until the docs builds have been completed. ✅ No FailuresAs of commit 8b6ee13: This comment was automatically generated by Dr. CI and updates every 15 minutes. |
This pull request was exported from Phabricator. Differential Revision: D39973860 |
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!
This pull request was exported from Phabricator. Differential Revision: D39973860 |
…ytorch#85983) Summary: Pull Request resolved: pytorch#85983 The test is causing issues: ``` terminate called after throwing an instance of 'std::runtime_error' what(): The following operation failed in the TorchScript interpreter. Traceback of TorchScript (most recent call last): graph(%A: Tensor, %driver: str?): %bias: None = prim::Constant() %ret = aten::linalg_svdvals(%A, %driver) ~~~~ <--- HERE %cloned = aten::clone(%ret, %bias) return (%cloned) RuntimeError: torch.linalg.svd: keyword argument `driver=` is only supported on CUDA inputs with cuSOLVER backend. ``` Just block the op and re-run the codegen script to remove everything and update the generated ops. Test Plan: Existing tests Reviewed By: xuzhao9, tenpercent Differential Revision: D39973860 fbshipit-source-id: 3a50b13fbe7aee598c69dc6f32359a643a2fca1d
5ebb4a5
to
15632dc
Compare
This pull request was exported from Phabricator. Differential Revision: D39973860 |
15632dc
to
8789117
Compare
8789117
to
750e6d8
Compare
This pull request was exported from Phabricator. Differential Revision: D39973860 |
1 similar comment
This pull request was exported from Phabricator. Differential Revision: D39973860 |
750e6d8
to
7ff356b
Compare
…ytorch#85983) Summary: Pull Request resolved: pytorch#85983 The test is causing issues: ``` terminate called after throwing an instance of 'std::runtime_error' what(): The following operation failed in the TorchScript interpreter. Traceback of TorchScript (most recent call last): graph(%A: Tensor, %driver: str?): %bias: None = prim::Constant() %ret = aten::linalg_svdvals(%A, %driver) ~~~~ <--- HERE %cloned = aten::clone(%ret, %bias) return (%cloned) RuntimeError: torch.linalg.svd: keyword argument `driver=` is only supported on CUDA inputs with cuSOLVER backend. ``` Just block the op and re-run the codegen script to remove everything and update the generated ops. Test Plan: Existing tests Reviewed By: xuzhao9, tenpercent Differential Revision: D39973860 fbshipit-source-id: 1c3ae0d5e73d54c5e0c90c2745041991ad112ec6
7ff356b
to
8521976
Compare
This pull request was exported from Phabricator. Differential Revision: D39973860 |
/easycla As part of the transition to the PyTorch Foundation, this project now requires contributions be covered under the new CLA. See #85559 for additional details. This comment will trigger a new check of this PR. If you are already covered, you will simply see a new "EasyCLA" check that passes. If you are not covered, a bot will leave a new comment with a link to sign. |
This pull request was exported from Phabricator. Differential Revision: D39973860 |
8521976
to
0af5f79
Compare
This pull request was exported from Phabricator. Differential Revision: D39973860 |
0af5f79
to
98ed118
Compare
…ytorch#85983) Summary: Pull Request resolved: pytorch#85983 The test is causing issues: ``` terminate called after throwing an instance of 'std::runtime_error' what(): The following operation failed in the TorchScript interpreter. Traceback of TorchScript (most recent call last): graph(%A: Tensor, %driver: str?): %bias: None = prim::Constant() %ret = aten::linalg_svdvals(%A, %driver) ~~~~ <--- HERE %cloned = aten::clone(%ret, %bias) return (%cloned) RuntimeError: torch.linalg.svd: keyword argument `driver=` is only supported on CUDA inputs with cuSOLVER backend. ``` Just block the op and re-run the codegen script to remove everything and update the generated ops. Test Plan: Existing tests Reviewed By: xuzhao9, tenpercent Differential Revision: D39973860 fbshipit-source-id: 65e636832b75b409f97a527bc5425e7fc15ba294
98ed118
to
8b6ee13
Compare
This pull request was exported from Phabricator. Differential Revision: D39973860 |
@pytorchbot merge |
@pytorchbot successfully started a merge job. Check the current status here. |
Hey @mikeiovine. |
…85983) Summary: Pull Request resolved: #85983 The test is causing issues: ``` terminate called after throwing an instance of 'std::runtime_error' what(): The following operation failed in the TorchScript interpreter. Traceback of TorchScript (most recent call last): graph(%A: Tensor, %driver: str?): %bias: None = prim::Constant() %ret = aten::linalg_svdvals(%A, %driver) ~~~~ <--- HERE %cloned = aten::clone(%ret, %bias) return (%cloned) RuntimeError: torch.linalg.svd: keyword argument `driver=` is only supported on CUDA inputs with cuSOLVER backend. ``` Just block the op and re-run the codegen script to remove everything and update the generated ops. Test Plan: Existing tests Reviewed By: xuzhao9, tenpercent Differential Revision: D39973860 fbshipit-source-id: 4f9b518fe22fb802eb12ccf74a8c3aca64d7fb43
Summary:
The test is causing issues:
Just block the op and re-run the codegen script to remove everything and update the generated ops.
Test Plan: Existing tests
Differential Revision: D39973860