You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Eigen iterative solver stores a reference to input matrix A and expect it to remain valid.
Currently we do not make a copy and this results in segmentation fault when A is destroyed before the compute() call. This PR fix this by manually copying A.
- Copy input matrix A in factorize().
- Unify input matrix naming
0 commit comments