Fix MAGMA qr for empty batched inputs#56257
Closed
IvanYashchuk wants to merge 15 commits intogh/ivanyashchuk/18/basefrom
Closed
Fix MAGMA qr for empty batched inputs#56257IvanYashchuk wants to merge 15 commits intogh/ivanyashchuk/18/basefrom
IvanYashchuk wants to merge 15 commits intogh/ivanyashchuk/18/basefrom
Conversation
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves #50576 [ghstack-poisoned]
This was referenced Apr 16, 2021
Contributor
💊 CI failures summary and remediationsAs of commit 9f3e18c (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).Follow this link to opt-out of these comments for your Pull Requests.Please report bugs/suggestions to the (internal) Dr. CI Users group. |
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves #50576 [ghstack-poisoned]
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves #50576 [ghstack-poisoned]
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves #50576 [ghstack-poisoned]
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves #50576 [ghstack-poisoned]
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves #50576 [ghstack-poisoned]
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves #50576 [ghstack-poisoned]
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves #50576 [ghstack-poisoned]
mruberry
reviewed
Apr 23, 2021
| @@ -2170,8 +2170,8 @@ def sample_inputs_linalg_qr(op_info, device, dtype, requires_grad=False, **kwarg | |||
| # TODO: add 0 to 'ns' and (0, ) to 'batches' | |||
Collaborator
Author
There was a problem hiding this comment.
It does. I forgot to remove this TODO.
mruberry
reviewed
Apr 23, 2021
| # https://github.com/pytorch/pytorch/issues/50576 | ||
| batches = [(), (2, ), (1, 1)] | ||
| ns = [2, 5] | ||
| batches = [(), (0,), (2, ), (1, 1)] |
Collaborator
There was a problem hiding this comment.
Updating sample inputs is cool, but I think we should extend the test_linalg.py tests for this, too?
Collaborator
Author
There was a problem hiding this comment.
You're right, I'll update it.
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves #50576 Differential Revision: [D27960157](https://our.internmc.facebook.com/intern/diff/D27960157) [ghstack-poisoned]
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves #50576 Differential Revision: [D27960157](https://our.internmc.facebook.com/intern/diff/D27960157) [ghstack-poisoned]
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves #50576 Differential Revision: [D27960157](https://our.internmc.facebook.com/intern/diff/D27960157) [ghstack-poisoned]
Collaborator
Author
|
@mruberry, I extended the |
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves #50576 Differential Revision: [D27960157](https://our.internmc.facebook.com/intern/diff/D27960157) [ghstack-poisoned]
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves #50576 Differential Revision: [D27960157](https://our.internmc.facebook.com/intern/diff/D27960157) [ghstack-poisoned]
This was referenced Apr 29, 2021
IvanYashchuk
added a commit
to IvanYashchuk/pytorch
that referenced
this pull request
Apr 29, 2021
CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves pytorch#50576 ghstack-source-id: c3aa439 Pull Request resolved: pytorch#56257
Contributor
krshrimali
pushed a commit
to krshrimali/pytorch
that referenced
this pull request
May 19, 2021
Summary: Pull Request resolved: pytorch#56257 CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves pytorch#50576 Test Plan: Imported from OSS Reviewed By: ngimel Differential Revision: D27960157 Pulled By: mruberry fbshipit-source-id: f923f3067a35e65218889e64c6a886364c3d1759
laurentdupin
pushed a commit
to laurentdupin/pytorch
that referenced
this pull request
Apr 25, 2026
Summary: Pull Request resolved: pytorch#56257 CPU and cuSOLVER path were fixed with refactoring of `_linalg_qr_helper_default`. Resolves pytorch#50576 Test Plan: Imported from OSS Reviewed By: ngimel Differential Revision: D27960157 Pulled By: mruberry fbshipit-source-id: f923f3067a35e65218889e64c6a886364c3d1759
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Stack from ghstack:
CPU and cuSOLVER path were fixed with refactoring of
_linalg_qr_helper_default.Resolves #50576
Differential Revision: D27960157