mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
36b8f35eed
Now need to construct pseudofermion two flavour, ratio, one flavour, ratio action fragments.
51 lines
2.3 KiB
C++
51 lines
2.3 KiB
C++
#ifndef GRID_QCD_DHOP_H
|
|
#define GRID_QCD_DHOP_H
|
|
|
|
namespace Grid {
|
|
|
|
namespace QCD {
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Helper classes that implement Wilson stencil for a single site.
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Generic version works for any Nc and with extra flavour indices
|
|
// namespace DiracOpt {
|
|
|
|
// These ones will need to be package intelligently. WilsonType base class
|
|
// for use by DWF etc..
|
|
void DiracOptDhopSite(CartesianStencil &st,LatticeDoubledGaugeField &U,
|
|
std::vector<vHalfSpinColourVector,alignedAllocator<vHalfSpinColourVector> > &buf,
|
|
int sF,int sU,const LatticeFermion &in, LatticeFermion &out);
|
|
void DiracOptDhopSiteDag(CartesianStencil &st,LatticeDoubledGaugeField &U,
|
|
std::vector<vHalfSpinColourVector,alignedAllocator<vHalfSpinColourVector> > &buf,
|
|
int sF,int sU,const LatticeFermion &in, LatticeFermion &out);
|
|
void DiracOptDhopDir(CartesianStencil &st,LatticeDoubledGaugeField &U,
|
|
std::vector<vHalfSpinColourVector,alignedAllocator<vHalfSpinColourVector> > &buf,
|
|
int sF,int sU,const LatticeFermion &in, LatticeFermion &out,int dirdisp,int gamma);
|
|
|
|
// };
|
|
|
|
// Hand unrolled for Nc=3, one flavour
|
|
// namespace DiracOptHand {
|
|
// These ones will need to be package intelligently. WilsonType base class
|
|
// for use by DWF etc..
|
|
|
|
void DiracOptHandDhopSite(CartesianStencil &st,LatticeDoubledGaugeField &U,
|
|
std::vector<vHalfSpinColourVector,alignedAllocator<vHalfSpinColourVector> > &buf,
|
|
int sF,int sU,const LatticeFermion &in, LatticeFermion &out);
|
|
void DiracOptHandDhopSiteDag(CartesianStencil &st,LatticeDoubledGaugeField &U,
|
|
std::vector<vHalfSpinColourVector,alignedAllocator<vHalfSpinColourVector> > &buf,
|
|
int sF,int sU,const LatticeFermion &in, LatticeFermion &out);
|
|
|
|
// };
|
|
|
|
|
|
void DiracOptHandDhopSiteDag(CartesianStencil &st,LatticeDoubledGaugeField &U,
|
|
std::vector<vHalfSpinColourVector,alignedAllocator<vHalfSpinColourVector> > &buf,
|
|
int sF,int sU,const LatticeFermion &in, LatticeFermion &out);
|
|
|
|
}
|
|
}
|
|
#endif
|