-
-
Notifications
You must be signed in to change notification settings - Fork 14
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
define lu!(F::LU,A) for general matrices #1131
define lu!(F::LU,A) for general matrices #1131
Conversation
Co-authored-by: Steven G. Johnson <[email protected]>
Co-authored-by: Steven G. Johnson <[email protected]>
Is this good to merge? |
Does this go into a NEWS entry somewhere? |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1131 +/- ##
==========================================
+ Coverage 91.99% 92.02% +0.03%
==========================================
Files 34 34
Lines 15471 15480 +9
==========================================
+ Hits 14232 14246 +14
+ Misses 1239 1234 -5 ☔ View full report in Codecov by Sentry. |
We should add to the LinearAlgebra section of the Julia NEWS. |
The docs CI is failing. |
@KristofferC is this a problem? ┌ Warning: The active manifest file has dependencies that were resolved with a different julia version (1.12.0-DEV). Unexpected behavior may occur. |
alternative to #1125 . Defines
lu!(F::LU{<:Any,<:AbstractMatrix},A)
andlu!(F::LU{<:Any,<:StridedMatrix{<:BlasFloat}},A)
.closes #1125