2015-04-25 14:33:02 +01:00
|
|
|
|
|
|
|
#include <Grid.h>
|
|
|
|
|
|
|
|
namespace Grid {
|
|
|
|
namespace QCD {
|
|
|
|
|
|
|
|
const std::vector<int> WilsonMatrix::directions ({0,1,2,3, 0, 1, 2, 3,0});
|
|
|
|
const std::vector<int> WilsonMatrix::displacements({1,1,1,1,-1,-1,-1,-1,0});
|
|
|
|
|
|
|
|
// Should be in header?
|
2015-04-26 15:51:09 +01:00
|
|
|
const int WilsonMatrix::Xp = 0;
|
|
|
|
const int WilsonMatrix::Yp = 1;
|
|
|
|
const int WilsonMatrix::Zp = 2;
|
|
|
|
const int WilsonMatrix::Tp = 3;
|
|
|
|
const int WilsonMatrix::Xm = 4;
|
|
|
|
const int WilsonMatrix::Ym = 5;
|
|
|
|
const int WilsonMatrix::Zm = 6;
|
|
|
|
const int WilsonMatrix::Tm = 7;
|
|
|
|
//const int WilsonMatrix::X0 = 8;
|
|
|
|
|
|
|
|
class WilsonCompressor {
|
|
|
|
public:
|
|
|
|
int mu;
|
|
|
|
|
|
|
|
void Point(int p) { mu=p;};
|
|
|
|
vHalfSpinColourVector operator () (vSpinColourVector &in)
|
|
|
|
{
|
|
|
|
vHalfSpinColourVector ret;
|
|
|
|
switch(mu) {
|
|
|
|
case WilsonMatrix::Xp:
|
|
|
|
spProjXp(ret,in);
|
|
|
|
break;
|
|
|
|
case WilsonMatrix::Yp:
|
|
|
|
spProjYp(ret,in);
|
|
|
|
break;
|
|
|
|
case WilsonMatrix::Zp:
|
|
|
|
spProjZp(ret,in);
|
|
|
|
break;
|
|
|
|
case WilsonMatrix::Tp:
|
|
|
|
spProjTp(ret,in);
|
|
|
|
break;
|
|
|
|
case WilsonMatrix::Xm:
|
|
|
|
spProjXm(ret,in);
|
|
|
|
break;
|
|
|
|
case WilsonMatrix::Ym:
|
|
|
|
spProjYm(ret,in);
|
|
|
|
break;
|
|
|
|
case WilsonMatrix::Zm:
|
|
|
|
spProjZm(ret,in);
|
|
|
|
break;
|
|
|
|
case WilsonMatrix::Tm:
|
|
|
|
spProjTm(ret,in);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
WilsonMatrix::WilsonMatrix(LatticeGaugeField &_Umu,double _mass)
|
|
|
|
: Stencil(Umu._grid,npoint,0,directions,displacements),
|
2015-04-25 14:33:02 +01:00
|
|
|
mass(_mass),
|
2015-04-26 15:51:09 +01:00
|
|
|
Umu(_Umu._grid)
|
2015-04-25 14:33:02 +01:00
|
|
|
{
|
|
|
|
// Allocate the required comms buffer
|
|
|
|
grid = _Umu._grid;
|
|
|
|
comm_buf.resize(Stencil._unified_buffer_size);
|
2015-04-26 15:51:09 +01:00
|
|
|
DoubleStore(Umu,_Umu);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WilsonMatrix::DoubleStore(LatticeDoubledGaugeField &Uds,const LatticeGaugeField &Umu)
|
|
|
|
{
|
|
|
|
LatticeColourMatrix U(grid);
|
|
|
|
|
|
|
|
for(int mu=0;mu<Nd;mu++){
|
|
|
|
U = peekIndex<LorentzIndex>(Umu,mu);
|
|
|
|
pokeIndex<LorentzIndex>(Uds,U,mu);
|
|
|
|
U = adj(Cshift(U,mu,-1));
|
|
|
|
pokeIndex<LorentzIndex>(Uds,U,mu+4);
|
|
|
|
}
|
2015-04-25 14:33:02 +01:00
|
|
|
}
|
2015-04-26 15:51:09 +01:00
|
|
|
|
2015-04-25 14:33:02 +01:00
|
|
|
void WilsonMatrix::multiply(const LatticeFermion &in, LatticeFermion &out)
|
|
|
|
{
|
2015-04-26 15:51:09 +01:00
|
|
|
Dhop(in,out);
|
|
|
|
return;
|
2015-04-25 14:33:02 +01:00
|
|
|
}
|
2015-04-26 15:51:09 +01:00
|
|
|
|
2015-04-25 14:33:02 +01:00
|
|
|
void WilsonMatrix::Dhop(const LatticeFermion &in, LatticeFermion &out)
|
|
|
|
{
|
2015-04-26 15:51:09 +01:00
|
|
|
// Stencil.HaloExchange(in,comm_buf);
|
2015-04-25 14:33:02 +01:00
|
|
|
|
2015-04-26 15:51:09 +01:00
|
|
|
for(int ss=0;ss<grid->oSites();ss++){
|
2015-04-25 14:33:02 +01:00
|
|
|
|
|
|
|
int offset,local;
|
|
|
|
|
|
|
|
vSpinColourVector result;
|
2015-04-26 15:51:09 +01:00
|
|
|
vHalfSpinColourVector chi;
|
|
|
|
vHalfSpinColourVector Uchi;
|
|
|
|
vHalfSpinColourVector *chi_p;
|
2015-04-25 14:33:02 +01:00
|
|
|
// Xp
|
|
|
|
offset = Stencil._offsets [Xp][ss];
|
|
|
|
local = Stencil._is_local[Xp][ss];
|
2015-04-26 15:51:09 +01:00
|
|
|
|
|
|
|
chi_p = &comm_buf[offset];
|
2015-04-25 14:33:02 +01:00
|
|
|
if ( local ) {
|
2015-04-26 15:51:09 +01:00
|
|
|
spProjXp(chi,in._odata[offset]);
|
|
|
|
chi_p = χ
|
|
|
|
}
|
|
|
|
mult(&(Uchi()),&(Umu._odata[ss](Xp)),&(*chi_p)());
|
|
|
|
spReconXp(result,Uchi);
|
2015-04-25 14:33:02 +01:00
|
|
|
|
2015-04-26 15:51:09 +01:00
|
|
|
#if 0
|
2015-04-25 14:33:02 +01:00
|
|
|
// Yp
|
|
|
|
offset = Stencil._offsets [Yp][ss];
|
|
|
|
local = Stencil._is_local[Yp][ss];
|
2015-04-26 15:51:09 +01:00
|
|
|
chi_p = &comm_buf[offset];
|
2015-04-25 14:33:02 +01:00
|
|
|
if ( local ) {
|
2015-04-26 15:51:09 +01:00
|
|
|
spProjYp(chi,in._odata[offset]);
|
|
|
|
chi_p = χ
|
|
|
|
}
|
|
|
|
mult(&(Uchi()),&(Umu._odata[ss](Yp)),&(*chi_p)());
|
|
|
|
accumReconYp(result,Uchi);
|
2015-04-25 14:33:02 +01:00
|
|
|
|
|
|
|
// Zp
|
|
|
|
offset = Stencil._offsets [Zp][ss];
|
|
|
|
local = Stencil._is_local[Zp][ss];
|
2015-04-26 15:51:09 +01:00
|
|
|
chi_p = &comm_buf[offset];
|
2015-04-25 14:33:02 +01:00
|
|
|
if ( local ) {
|
2015-04-26 15:51:09 +01:00
|
|
|
spProjZp(chi,in._odata[offset]);
|
|
|
|
chi_p = χ
|
|
|
|
}
|
|
|
|
mult(&(Uchi()),&(Umu._odata[ss](Zp)),&(*chi_p)() );
|
|
|
|
accumReconZp(result,Uchi);
|
2015-04-25 14:33:02 +01:00
|
|
|
|
|
|
|
// Tp
|
|
|
|
offset = Stencil._offsets [Tp][ss];
|
|
|
|
local = Stencil._is_local[Tp][ss];
|
2015-04-26 15:51:09 +01:00
|
|
|
chi_p = &comm_buf[offset];
|
2015-04-25 14:33:02 +01:00
|
|
|
if ( local ) {
|
2015-04-26 15:51:09 +01:00
|
|
|
spProjTp(chi,in._odata[offset]);
|
|
|
|
chi_p = χ
|
|
|
|
}
|
|
|
|
mult(&(Uchi()),&(Umu._odata[ss](Tp)),&(*chi_p)());
|
|
|
|
accumReconTp(result,Uchi);
|
2015-04-25 14:33:02 +01:00
|
|
|
|
|
|
|
// Xm
|
|
|
|
offset = Stencil._offsets [Xm][ss];
|
|
|
|
local = Stencil._is_local[Xm][ss];
|
2015-04-26 15:51:09 +01:00
|
|
|
chi_p = &comm_buf[offset];
|
2015-04-25 14:33:02 +01:00
|
|
|
if ( local ) {
|
2015-04-26 15:51:09 +01:00
|
|
|
spProjXm(chi,in._odata[offset]);
|
|
|
|
chi_p = χ
|
|
|
|
}
|
|
|
|
mult(&(Uchi()),&(Umu._odata[ss](Xm)),&(*chi_p)());
|
|
|
|
accumReconXm(result,Uchi);
|
2015-04-25 14:33:02 +01:00
|
|
|
|
|
|
|
// Ym
|
|
|
|
offset = Stencil._offsets [Ym][ss];
|
|
|
|
local = Stencil._is_local[Ym][ss];
|
2015-04-26 15:51:09 +01:00
|
|
|
chi_p = &comm_buf[offset];
|
2015-04-25 14:33:02 +01:00
|
|
|
if ( local ) {
|
2015-04-26 15:51:09 +01:00
|
|
|
spProjYm(chi,in._odata[offset]);
|
|
|
|
chi_p = χ
|
|
|
|
}
|
|
|
|
mult(&(Uchi()),&(Umu._odata[ss](Ym)),&(*chi_p)());
|
|
|
|
accumReconYm(result,Uchi);
|
2015-04-25 14:33:02 +01:00
|
|
|
|
|
|
|
// Zm
|
|
|
|
offset = Stencil._offsets [Zm][ss];
|
|
|
|
local = Stencil._is_local[Zm][ss];
|
2015-04-26 15:51:09 +01:00
|
|
|
chi_p = &comm_buf[offset];
|
2015-04-25 14:33:02 +01:00
|
|
|
if ( local ) {
|
2015-04-26 15:51:09 +01:00
|
|
|
spProjZm(chi,in._odata[offset]);
|
|
|
|
chi_p = χ
|
|
|
|
}
|
|
|
|
mult(&(Uchi()),&(Umu._odata[ss](Zm)),&(*chi_p)());
|
|
|
|
accumReconZm(result,Uchi);
|
2015-04-25 14:33:02 +01:00
|
|
|
|
|
|
|
// Tm
|
|
|
|
offset = Stencil._offsets [Tm][ss];
|
|
|
|
local = Stencil._is_local[Tm][ss];
|
2015-04-26 15:51:09 +01:00
|
|
|
chi_p = &comm_buf[offset];
|
2015-04-25 14:33:02 +01:00
|
|
|
if ( local ) {
|
2015-04-26 15:51:09 +01:00
|
|
|
spProjTm(chi,in._odata[offset]);
|
|
|
|
chi_p = χ
|
|
|
|
}
|
|
|
|
mult(&(Uchi()),&(Umu._odata[ss](Tm)),&(*chi_p)());
|
|
|
|
accumReconTm(result,Uchi);
|
|
|
|
#endif
|
2015-04-25 14:33:02 +01:00
|
|
|
out._odata[ss] = result;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
void WilsonMatrix::Dw(const LatticeFermion &in, LatticeFermion &out)
|
|
|
|
{
|
2015-04-26 15:51:09 +01:00
|
|
|
return;
|
2015-04-25 14:33:02 +01:00
|
|
|
}
|
|
|
|
void WilsonMatrix::MpcDag (const LatticeFermion &in, LatticeFermion &out)
|
|
|
|
{
|
2015-04-26 15:51:09 +01:00
|
|
|
return;
|
2015-04-25 14:33:02 +01:00
|
|
|
}
|
|
|
|
void WilsonMatrix::Mpc (const LatticeFermion &in, LatticeFermion &out)
|
|
|
|
{
|
2015-04-26 15:51:09 +01:00
|
|
|
return;
|
2015-04-25 14:33:02 +01:00
|
|
|
}
|
|
|
|
void WilsonMatrix::MpcDagMpc(const LatticeFermion &in, LatticeFermion &out)
|
|
|
|
{
|
2015-04-26 15:51:09 +01:00
|
|
|
return;
|
2015-04-25 14:33:02 +01:00
|
|
|
}
|
|
|
|
void WilsonMatrix::MDagM (const LatticeFermion &in, LatticeFermion &out)
|
|
|
|
{
|
2015-04-26 15:51:09 +01:00
|
|
|
return;
|
2015-04-25 14:33:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}}
|
2015-04-26 15:51:09 +01:00
|
|
|
|