1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-05 11:45:56 +01:00

Print warning messages in CAGMRES solvers

Currently, the implementation of these algorithms doesn't differ from their non
communication-avoiding versions.
This commit is contained in:
Daniel Richtmann 2018-02-08 17:43:47 +01:00
parent 13ae371ef8
commit eb7cf239d9
No known key found for this signature in database
GPG Key ID: B33C490AF0772057
2 changed files with 4 additions and 0 deletions

View File

@ -72,6 +72,8 @@ class CommunicationAvoidingGeneralisedMinimalResidual : public OperatorFunction<
void operator()(LinearOperatorBase<Field> &LinOp, const Field &src, Field &psi) {
std::cout << GridLogWarning << "This algorithm currently doesn't differ from regular GMRES" << std::endl;
psi.checkerboard = src.checkerboard;
conformable(psi, src);

View File

@ -77,6 +77,8 @@ class FlexibleCommunicationAvoidingGeneralisedMinimalResidual : public OperatorF
void operator()(LinearOperatorBase<Field> &LinOp, const Field &src, Field &psi) {
std::cout << GridLogWarning << "This algorithm currently doesn't differ from regular FGMRES" << std::endl;
psi.checkerboard = src.checkerboard;
conformable(psi, src);