Skip to content
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

ldiv! in-place solution for SVD is not the same as the one emitted by ldiv!(y fact::SVD, b) --> y in 1.6.4 #895

Open
vpuri3 opened this issue Dec 12, 2021 · 1 comment

Comments

@vpuri3
Copy link

vpuri3 commented Dec 12, 2021

julia> VERSION
v"1.6.4"

julia> using LinearAlgebra

julia> n=8; A=rand(n,n); u=rand(n); b=A*u; v=zero(u); F=svd(A); ldiv!(v,F,b)  u, v  u
(true, false)
julia> using LinearAlgebra

julia> VERSION
v"1.7.0"

julia> n=8; A=rand(n,n); u=rand(n); b=A*u; v=zero(u); F=svd(A); ldiv!(v,F,b)  u, v  u
(true, true)
@N5N3
Copy link
Member

N5N3 commented Dec 12, 2021

See #853, the related PRs, JuliaLang/julia#40899 and JuliaLang/julia#41083, were not backported to 1.6.
Edit: Looks like we thought we have backported JuliaLang/julia#41083 to 1.6.2, but I can't find the related modification in JuliaLang/julia#40702's Files changed @KristofferC).

@KristofferC KristofferC transferred this issue from JuliaLang/julia Nov 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants