-
Notifications
You must be signed in to change notification settings - Fork 51
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 generic matmatmul for inplace sparse x sparse #486
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #486 +/- ##
==========================================
- Coverage 85.00% 84.58% -0.42%
==========================================
Files 12 12
Lines 8967 9120 +153
==========================================
+ Hits 7622 7714 +92
- Misses 1345 1406 +61 ☔ View full report in Codecov by Sentry. |
We should merge if ready - the windows issue is separate. |
can you point to commit + lines of the old LinearAlgebra code this is copied from? |
It's the one you found here: JuliaLang/julia#52429 (comment), i.e., JuliaLang/julia@0cf2bf1. It's in matmul.jl, lines 786ff. |
Shall we merge this? I believe there is room for further improvement by providing specialized |
Agree - we should merge as is for now. |
Fixes JuliaLang/julia#52429.
I have no idea which branches are really used and whether this can be further reduced, especially in favor of compile time, which was a big issue over at LinearAlgebra.jl. Currently, this is just a copy-paste from the old LinAlg code.
@dmbates @palday