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
Based on the definition in lib/linalg/Matrix.cpp, void Matrix::orthogonalize() works only when the matrix is distributed (in parallel case). It should have a line:
CAROM_VERIFY(distributed());
The text was updated successfully, but these errors were encountered:
I'm working on PR #239 which solves a bug in the orthogonalize() method and adds an incremental method orthogonalize_last(). The PR also includes unit tests for those methods which run successfully for non-distributed matrices.
Do those changes solve the issue you're referring to here?
Based on the definition in
lib/linalg/Matrix.cpp
,void Matrix::orthogonalize()
works only when the matrix is distributed (in parallel case). It should have a line:The text was updated successfully, but these errors were encountered: