Skip to content

Commit

Permalink
increase number of iterations
Browse files Browse the repository at this point in the history
  • Loading branch information
yixuan authored Aug 1, 2023
1 parent 977556b commit 98985dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/GenEigsRealShift.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ template <typename MatType, typename Solver>
void run_test(const MatType& mat, Solver& eigs, SortRule selection, bool allow_fail = false)
{
eigs.init();
// maxit = 200 to reduce running time for failed cases
int nconv = eigs.compute(selection, 200);
// maxit = 300 to reduce running time for failed cases
int nconv = eigs.compute(selection, 300);
int niter = eigs.num_iterations();
int nops = eigs.num_operations();

Expand Down

0 comments on commit 98985dd

Please sign in to comment.