2018-02-20 14:29:08 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./lib/algorithms/iterative/ImplicitlyRestartedLanczos.h
|
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
|
|
|
|
Author: Peter Boyle <paboyle@ph.ed.ac.uk>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
|
|
|
See the full license in the file "LICENSE" in the top level distribution directory
|
|
|
|
*************************************************************************************/
|
|
|
|
/* END LEGAL */
|
|
|
|
#ifndef GRID_DEFLATION_H
|
|
|
|
#define GRID_DEFLATION_H
|
|
|
|
|
|
|
|
namespace Grid {
|
|
|
|
|
|
|
|
struct ZeroGuesser {
|
|
|
|
public:
|
|
|
|
template<class Field>
|
|
|
|
void operator()(const Field &src,Field &guess) { guess = Zero(); };
|
|
|
|
};
|
|
|
|
struct SourceGuesser {
|
|
|
|
public:
|
|
|
|
template<class Field>
|
|
|
|
void operator()(const Field &src,Field &guess) { guess = src; };
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
// Fine grid deflation
|
|
|
|
////////////////////////////////
|
|
|
|
template<class Field>
|
|
|
|
struct DeflatedGuesser {
|
|
|
|
private:
|
|
|
|
const std::vector<Field> &evec;
|
|
|
|
const std::vector<RealD> &eval;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
DeflatedGuesser(const std::vector<Field> & _evec,const std::vector<RealD> & _eval) : evec(_evec), eval(_eval) {};
|
|
|
|
|
|
|
|
void operator()(const Field &src,Field &guess) {
|
|
|
|
guess = zero;
|
|
|
|
assert(evec.size()==eval.size());
|
|
|
|
auto N = evec.size();
|
|
|
|
for (int i=0;i<N;i++) {
|
2018-03-02 22:27:41 +00:00
|
|
|
const Field& tmp = evec[i];
|
2018-02-20 14:29:08 +00:00
|
|
|
axpy(guess,TensorRemove(innerProduct(tmp,src)) / eval[i],tmp,guess);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class FineField, class CoarseField>
|
|
|
|
class LocalCoherenceDeflatedGuesser {
|
|
|
|
private:
|
|
|
|
const std::vector<FineField> &subspace;
|
|
|
|
const std::vector<CoarseField> &evec_coarse;
|
|
|
|
const std::vector<RealD> &eval_coarse;
|
|
|
|
public:
|
|
|
|
|
|
|
|
LocalCoherenceDeflatedGuesser(const std::vector<FineField> &_subspace,
|
|
|
|
const std::vector<CoarseField> &_evec_coarse,
|
|
|
|
const std::vector<RealD> &_eval_coarse)
|
|
|
|
: subspace(_subspace),
|
|
|
|
evec_coarse(_evec_coarse),
|
|
|
|
eval_coarse(_eval_coarse)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void operator()(const FineField &src,FineField &guess) {
|
|
|
|
int N = (int)evec_coarse.size();
|
|
|
|
CoarseField src_coarse(evec_coarse[0]._grid);
|
|
|
|
CoarseField guess_coarse(evec_coarse[0]._grid); guess_coarse = zero;
|
2018-03-02 22:27:41 +00:00
|
|
|
blockProject(src_coarse,src,subspace);
|
2018-02-20 14:29:08 +00:00
|
|
|
for (int i=0;i<N;i++) {
|
2018-03-02 22:27:41 +00:00
|
|
|
const CoarseField & tmp = evec_coarse[i];
|
2018-02-20 14:29:08 +00:00
|
|
|
axpy(guess_coarse,TensorRemove(innerProduct(tmp,src_coarse)) / eval_coarse[i],tmp,guess_coarse);
|
|
|
|
}
|
|
|
|
blockPromote(guess_coarse,guess,subspace);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|