mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 11:15:55 +01:00
Two extra routines to break out SchurRedBlack on many RHS into stages to allow efficient deflation & split grid
Split grid solver still to do.
This commit is contained in:
parent
402d80e197
commit
c15493218d
@ -132,6 +132,31 @@ namespace Grid {
|
|||||||
(*this)(_Matrix,in,out,guess);
|
(*this)(_Matrix,in,out,guess);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void RedBlackSource(Matrix &_Matrix, const std::vector<Field> &in, std::vector<Field> &src_o)
|
||||||
|
{
|
||||||
|
GridBase *grid = _Matrix.RedBlackGrid();
|
||||||
|
Field tmp(grid);
|
||||||
|
int nblock = in.size();
|
||||||
|
for(int b=0;b<nblock;b++){
|
||||||
|
RedBlackSource(_Matrix,in[b],tmp,src_o[b]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// James can write his own deflated guesser
|
||||||
|
// with optimised code for the inner products
|
||||||
|
// RedBlackSolveSplitGrid();
|
||||||
|
// RedBlackSolve(_Matrix,src_o,sol_o);
|
||||||
|
|
||||||
|
void RedBlackSolution(Matrix &_Matrix, const std::vector<Field> &in, const std::vector<Field> &sol_o, std::vector<Field> &out)
|
||||||
|
{
|
||||||
|
GridBase *grid = _Matrix.RedBlackGrid();
|
||||||
|
Field tmp(grid);
|
||||||
|
int nblock = in.size();
|
||||||
|
for(int b=0;b<nblock;b++) {
|
||||||
|
pickCheckerboard(Even,tmp,in[b]);
|
||||||
|
RedBlackSolution(_Matrix,sol_o[b],tmp,out[b]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
template<class Guesser>
|
template<class Guesser>
|
||||||
void operator()(Matrix &_Matrix, const std::vector<Field> &in, std::vector<Field> &out,Guesser &guess)
|
void operator()(Matrix &_Matrix, const std::vector<Field> &in, std::vector<Field> &out,Guesser &guess)
|
||||||
{
|
{
|
||||||
@ -150,9 +175,11 @@ namespace Grid {
|
|||||||
////////////////////////////////////////////////
|
////////////////////////////////////////////////
|
||||||
// Prepare RedBlack source
|
// Prepare RedBlack source
|
||||||
////////////////////////////////////////////////
|
////////////////////////////////////////////////
|
||||||
for(int b=0;b<nblock;b++){
|
RedBlackSource(_Matrix,in,src_o);
|
||||||
RedBlackSource(_Matrix,in[b],tmp,src_o[b]);
|
// for(int b=0;b<nblock;b++){
|
||||||
}
|
// RedBlackSource(_Matrix,in[b],tmp,src_o[b]);
|
||||||
|
// }
|
||||||
|
|
||||||
////////////////////////////////////////////////
|
////////////////////////////////////////////////
|
||||||
// Make the guesses
|
// Make the guesses
|
||||||
////////////////////////////////////////////////
|
////////////////////////////////////////////////
|
||||||
|
Loading…
x
Reference in New Issue
Block a user