Make torch.lu support complex input on CUDA.#45898
Conversation
LU support complex input on CUDA.torch.lu support complex input on CUDA.
💊 CI failures summary and remediationsAs of commit 195d9ee (more details on the Dr. CI page):
ci.pytorch.org: 1 failedThis 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 on the GitHub issue tracker or post in the (internal) Dr. CI Users group. This comment has been revised 1 time. |
Codecov Report
@@ Coverage Diff @@
## master #45898 +/- ##
=======================================
Coverage 68.20% 68.20%
=======================================
Files 410 410
Lines 53453 53453
=======================================
Hits 36457 36457
Misses 16996 16996 Continue to review full report at Codecov.
|
anjali411
left a comment
There was a problem hiding this comment.
LGTM thanks @nikitaved
facebook-github-bot
left a comment
There was a problem hiding this comment.
@anjali411 has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
|
@anjali411 merged this pull request in 9300a27. |
Summary: As per title. A minor fix required to make it available for the CPU (`fmod` does not support complex). For CUDA requires [#45898 ](#45898). Pull Request resolved: #45980 Reviewed By: izdeby Differential Revision: D24539097 Pulled By: anjali411 fbshipit-source-id: 508830dbfd7794ab73e19320d07c69a051c91819
Summary: As per title. LU decomposition is used for computing determinants, and I need this functionality to implement the matrix square root. Next PR on my list is to enable `torch.det` on CUDA with complex input. Pull Request resolved: pytorch#45898 Reviewed By: heitorschueroff Differential Revision: D24306951 Pulled By: anjali411 fbshipit-source-id: 168f578fe65ae1b978617a66741aa27e72b2172b
Summary: As per title. A minor fix required to make it available for the CPU (`fmod` does not support complex). For CUDA requires [pytorch#45898 ](pytorch#45898). Pull Request resolved: pytorch#45980 Reviewed By: izdeby Differential Revision: D24539097 Pulled By: anjali411 fbshipit-source-id: 508830dbfd7794ab73e19320d07c69a051c91819
As per title. LU decomposition is used for computing determinants, and I need this functionality to implement the matrix square root. Next PR on my list is to enable
torch.deton CUDA with complex input.