We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
The original comments are:
We need to be careful that the factorization is no longer needed prior to updating A.
A
For example
A = randn(10, 4) F = qr!(A) R = F.R A .= randn(10, 4) R != F.R # This should evaluate to true
If we do not do the in-place operation (i.e., solver.A = A) then something else will be allocated
solver.A = A
A = randn(10, 4) F = qr!(A) R = F.R A = randn(10, 4) R == F.R # This should evaluate to true
The text was updated successfully, but these errors were encountered:
TongtongJin
No branches or pull requests
The original comments are:
We need to be careful that the factorization is no longer needed prior to updating
A
.For example
If we do not do the in-place operation (i.e.,
solver.A = A
) then something else will be allocatedThe text was updated successfully, but these errors were encountered: