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
In the LinSolverIterativeRandFGMRES:setup method, Gram-Schmidt orthogonalization is allocated as
GS_->setup(n_, restart_);
This is incorrect, and may cause runtime errors and possibly segfault. Instead of the size of the linear system n_, the Gram-Schmidt class needs to be allocated with respect to the size of the sketching subspace:
In the
LinSolverIterativeRandFGMRES:setup
method, Gram-Schmidt orthogonalization is allocated asGS_->setup(n_, restart_);
This is incorrect, and may cause runtime errors and possibly segfault. Instead of the size of the linear system
n_
, the Gram-Schmidt class needs to be allocated with respect to the size of the sketching subspace:GS_->setup(k_rand_, restart_);
CC @kswirydo @shakedregev
The text was updated successfully, but these errors were encountered: