-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Add dot
for complex matrices
#22240
Add dot
for complex matrices
#22240
Conversation
Perhaps add a test? For instance here: Lines 53 to 67 in 5aa15ff
I did not find any tests for dot(A::Matrix{Real}, B::Matrix{Real}) either, perhaps you can add that in the same block while you're at it?
|
Sorry. I should have mentioned in #22220 that |
That explains the missing tests then. |
Alternatively, we could define The main problem with this, however, is that it is inconsistent with the default |
Closing this in light of #22374. |
Thanks for opening the PR, @eveydee! |
This fixes the bug mentioned in #22220 where
dot
is undefined for complex matrices.