Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
- Set Re::Solve's real type and matrix/vector index type at CMake configuration time.
* Added size assertions to `VectorHandler::gemv` and fixed vector sizing in `GramSchmidt` accordingly.

- Added line to testlog to tell the user to expect warnings as part of normal testing.
- Fixed GPU refactorization allocation and synchronization errors, uninitialized GMRES example initial guesses, and CUDA ILU0 failures on stored numerical zero pivots.

## Changes to Re::Solve in release 0.99.2
Expand Down
4 changes: 4 additions & 0 deletions tests/functionality/testSysGmres.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,10 @@ int test(int argc, char* argv[])
<< "\tReturned residual : " << rejected_guess_rnorm << "\n\n";
error_sum++;
}
else
{
Log::misc << "Expect a warning on the next line for the bad initial guess test." << std::endl;
}

// Use a scaled converged solution as a nonzero initial guess.
vector_type vec_x_guess(vec_x.getSize());
Expand Down
Loading