mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
ffc00caea3
not even SU(3) for now) gauge field. Convergence history is correctly indepdendent of decomposition on 1,2,4,8,16 mpi tasks. Found a couple of simd bugs which required fixed and enhanced the Grid_simd.cc test suite. Implemented the Mdag, M, MdagM, Meooe Mooee schur type stuff in the wilson dop.
59 lines
1.8 KiB
C++
59 lines
1.8 KiB
C++
#ifndef GRID_QCD_WILSON_DOP_H
|
|
#define GRID_QCD_WILSON_DOP_H
|
|
|
|
|
|
namespace Grid {
|
|
|
|
namespace QCD {
|
|
|
|
class WilsonMatrix : public CheckerBoardedSparseMatrixBase<LatticeFermion>
|
|
{
|
|
//NB r=1;
|
|
public:
|
|
double mass;
|
|
GridBase *grid;
|
|
|
|
// Copy of the gauge field
|
|
LatticeDoubledGaugeField Umu;
|
|
|
|
//Defines the stencil
|
|
CartesianStencil Stencil;
|
|
static const int npoint=9;
|
|
static const std::vector<int> directions ;
|
|
static const std::vector<int> displacements;
|
|
static const int Xp,Xm,Yp,Ym,Zp,Zm,Tp,Tm;
|
|
|
|
// Comms buffer
|
|
std::vector<vHalfSpinColourVector,alignedAllocator<vHalfSpinColourVector> > comm_buf;
|
|
|
|
// Constructor
|
|
WilsonMatrix(LatticeGaugeField &Umu,double mass);
|
|
|
|
// DoubleStore
|
|
void DoubleStore(LatticeDoubledGaugeField &Uds,const LatticeGaugeField &Umu);
|
|
|
|
// override multiply
|
|
virtual RealD M (const LatticeFermion &in, LatticeFermion &out);
|
|
virtual RealD Mdag (const LatticeFermion &in, LatticeFermion &out);
|
|
|
|
// half checkerboard operaions
|
|
virtual void Meooe (const LatticeFermion &in, LatticeFermion &out);
|
|
virtual void MeooeDag (const LatticeFermion &in, LatticeFermion &out);
|
|
virtual void Mooee (const LatticeFermion &in, LatticeFermion &out);
|
|
virtual void MooeeDag (const LatticeFermion &in, LatticeFermion &out);
|
|
virtual void MooeeInv (const LatticeFermion &in, LatticeFermion &out);
|
|
virtual void MooeeInvDag (const LatticeFermion &in, LatticeFermion &out);
|
|
|
|
// non-hermitian hopping term; half cb or both
|
|
void Dhop(const LatticeFermion &in, LatticeFermion &out,int dag);
|
|
|
|
typedef iScalar<iMatrix<vComplex, Nc> > matrix;
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
}
|
|
#endif
|