-
Notifications
You must be signed in to change notification settings - Fork 26.3k
Fix MAGMA svd and eig #9082
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 MAGMA svd and eig #9082
Conversation
|
cc @vishwakftw |
facebook-github-bot
left a comment
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.
@ssnl has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
test/test_cuda.py
Outdated
| ('inverse', new_t(20, 20), lambda t: [], None, float_types, False), | ||
| ('geqrf', new_t(20, 20), lambda t: [], None, float_types, False, | ||
| unittest.skipIf(not TEST_MAGMA, "no MAGMA library detected")), | ||
| ('svd', new_t(10, 10), lambda t: [], 'square', float_types, False, |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
facebook-github-bot
left a comment
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.
@ssnl has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
facebook-github-bot
left a comment
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.
@ssnl is landing this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
ezyang
left a comment
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.
Nice catch.
Summary: Fixes pytorch/pytorch#9079 There is room for speed-up for both functions (see pytorch/pytorch#9083), but let's get this in to unblock #9052 . Closes pytorch/pytorch#9082 Reviewed By: ezyang Differential Revision: D8711687 Pulled By: SsnL fbshipit-source-id: f043a9bf55cb6aec5126c3331d35761f7aa3f8e3
Summary: Fixes pytorch/pytorch#9079 There is room for speed-up for both functions (see pytorch/pytorch#9083), but let's get this in to unblock #9052 . Closes pytorch/pytorch#9082 Reviewed By: ezyang Differential Revision: D8711687 Pulled By: SsnL fbshipit-source-id: f043a9bf55cb6aec5126c3331d35761f7aa3f8e3
Summary: Fixes pytorch#9079 There is room for speed-up for both functions (see pytorch#9083), but let's get this in to unblock pytorch#9052 . Closes pytorch#9082 Reviewed By: ezyang Differential Revision: D8711687 Pulled By: SsnL fbshipit-source-id: f043a9bf55cb6aec5126c3331d35761f7aa3f8e3
Fixes #9079
There is room for speed-up for both functions (see #9083), but let's get this in to unblock #9052 .