-
I get this error: When I run this code: 1 using Distributed When I use LSQR there are no errors. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 6 replies
-
On a plane and can't use browser for some reason, so a limited answer ...
It seems that the LSQ system is extremely ill-conditioned hence cholesky fails. I don't really understand though why it is using Cholesky when you say you want SVD and with that this issue should not occur. Is it possible that the way you select the solver is wrong syntax? What happens if you use just `solver = ACEfit.BLR()`
Either @wcwitt or I need to look at that.
Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Is the @Everywhere in your script actually capitalized? |
Beta Was this translation helpful? Give feedback.
-
Ah - wait, what ACEfit version do you have? It might be the bug that was fixed by v0.1.4. |
Beta Was this translation helpful? Give feedback.
-
Found it: |
Beta Was this translation helpful? Give feedback.
Found it:
factorization = "svd"
needs to befactorization = :svd
.