-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Make LU factorization work for more types #26344
Conversation
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.
👍 Minor detail but maybe we should call it something like rationalop
since it would probably be the right operation for all triangular-triangular factorizations.
Better as something like lutype(T) = (zero(T)*zero(T) + zero(T)*zero(T)) / (one(T)*one(T) + one(T)*one(T)) or is it OK to rely on |
Agreed, I have renamed it
I have assumed that it was ok since matrix product relies on it julia/stdlib/LinearAlgebra/src/matmul.jl Lines 123 to 124 in 4ed4637
but you think otherwise, I can change, let me know :) |
Use of |
The price of using instances through @blegat After thinking a little more about this, I think we might be able to compute the type in an even better way here. This was discussed in JuliaLang/LinearAlgebra.jl#128 and actually, the issue isn't completely fixed. The problem is that UT = typeof(zero(T) - oneunit(T)/oneunit(T)*oneunit(T))
LT = typeof(oneunit(T)/oneunit(T))
S = promote_type(T, UT, LT) should be correct. In most cases it should just collapse to a single type and for unitful elements, it should provide the right union. |
@andreasnoack I have updated the PR based on your idea. The code now also works for quantities with units (tested with Unitful) |
When determining the element type need,
lufact
does the followingjulia/stdlib/LinearAlgebra/src/lu.jl
Line 180 in 1a870b4
However LU factorization also multiplies elements of type
T
together and sum them together.If the type
T
is not invariant under multiplication and/or addition,lufact
does work, see JuliaAlgebra/MultivariatePolynomials.jl#69.Note the strong similary between this PR and #18218 which did a similar change but to matrix multiplication.