diff --git a/Grid/qcd/smearing/HISQSmearing.h b/Grid/qcd/smearing/HISQSmearing.h index e6bab0f1..9a69b660 100644 --- a/Grid/qcd/smearing/HISQSmearing.h +++ b/Grid/qcd/smearing/HISQSmearing.h @@ -129,7 +129,7 @@ struct SmearingParameters{ /*! @brief create fat links from link variables */ -template // TODO: change to Gimpl? +template class Smear_HISQ_fat { private: @@ -168,6 +168,8 @@ public: // This is where auxiliary N-link fields and the final smear will be stored. LGF Ughost_fat(Ughost.Grid()); LGF Ughost_3link(Ughost.Grid()); + LGF Ughost_5linkA(Ughost.Grid()); + LGF Ughost_5linkB(Ughost.Grid()); // Create 3-link stencil. We allow mu==nu just to make the indexing easier. // Shifts with mu==nu will not be used. @@ -188,13 +190,18 @@ public: Ughost_fat=Zero(); // Create the accessors - autoView(U_v , Ughost , CpuRead); - autoView(U_fat_v , Ughost_fat , CpuWrite); - autoView(U_3link_v, Ughost_3link, CpuWrite); + autoView(U_v , Ughost , CpuRead); + autoView(U_fat_v , Ughost_fat , CpuWrite); + autoView(U_3link_v , Ughost_3link , CpuWrite); + autoView(U_5linkA_v, Ughost_5linkA, CpuWrite); + autoView(U_5linkB_v, Ughost_5linkB, CpuWrite); for(int mu=0;mu_offset; @@ -253,7 +263,57 @@ public: auto W = U2*U1*adj(U0) + adj(U5)*U4*U3; + if(sigmaIndex<3) { + U_5linkA_v[site](rho) = W; + } else { + U_5linkB_v[site](rho) = W; + } + U_fat_v[site](mu) = U_fat_v[site](mu) + lt.c_5*W; + + sigmaIndex++; + } + } + } + + // 7-link + for(int site=0;site_offset; + auto SE1 = gStencil.GetEntry(s+1,site); int x_p_nu = SE1->_offset; + auto SE2 = gStencil.GetEntry(s+2,site); int x = SE2->_offset; + auto SE3 = gStencil.GetEntry(s+3,site); int x_p_mu_m_nu = SE3->_offset; + auto SE4 = gStencil.GetEntry(s+4,site); int x_m_nu = SE4->_offset; + + auto U0 = U_v[x_p_mu ](nu) ; gpermute(U0,SE0->_permute); + auto U1 = U0; + if(sigmaIndex<3) { + U1 = U_5linkB_v[x_p_nu](rho); gpermute(U1,SE1->_permute); + } else { + U1 = U_5linkA_v[x_p_nu](rho); gpermute(U1,SE1->_permute); + } + auto U2 = U_v[x ](nu) ; gpermute(U2,SE2->_permute); + auto U3 = U_v[x_p_mu_m_nu](nu) ; gpermute(U3,SE3->_permute); + auto U4 = U0; + if(sigmaIndex<3) { + U4 = U_5linkB_v[x_m_nu](rho); gpermute(U4,SE4->_permute); + } else { + U4 = U_5linkA_v[x_m_nu](rho); gpermute(U4,SE4->_permute); + } + auto U5 = U_v[x_m_nu ](nu) ; gpermute(U5,SE4->_permute); + + auto W = U2*U1*adj(U0) + adj(U5)*U4*U3; + + U_fat_v[site](mu) = U_fat_v[site](mu) + lt.c_7*W; + + sigmaIndex++; } } } diff --git a/tests/smearing/Test_fatLinks.cc b/tests/smearing/Test_fatLinks.cc index 97e02400..f7c422c1 100644 --- a/tests/smearing/Test_fatLinks.cc +++ b/tests/smearing/Test_fatLinks.cc @@ -78,7 +78,7 @@ int main (int argc, char** argv) { int Nt = 4; Coordinate latt_size(Nd,0); latt_size[0]=Ns; latt_size[1]=Ns; latt_size[2]=Ns; latt_size[3]=Nt; std::string conf_in = "nersc.l8t4b3360"; - std::string conf_out = "nersc.l8t4b3360.3link"; + std::string conf_out = "nersc.l8t4b3360.35link"; int threads = GridThread::GetThreads(); // Initialize the Grid @@ -105,7 +105,6 @@ int main (int argc, char** argv) { // Smear Umu and store result in U_smr Smear_HISQ_fat hisq_fat(&GRID,1/8.,0.,1/16.,1/64.,1/384.,0.); -// Smear_HISQ_fat hisq_fat(&GRID,1/8.,0.,1/16.,0.,1/384.,0.); hisq_fat.smear(U_smr,Umu); NerscIO::writeConfiguration(U_smr,conf_out,"HISQ"); @@ -115,7 +114,7 @@ int main (int argc, char** argv) { Smear_HISQ_fat hisq_fat_Cstyle(&GRID,path_coeff); // Make sure result doesn't change w.r.t. a trusted lattice - NerscIO::readConfiguration(Umu, header, "nersc.l8t4b3360.3link.control"); + NerscIO::readConfiguration(Umu, header, "nersc.l8t4b3360.35link.control"); LatticeGaugeField diff(&GRID); diff = Umu-U_smr; auto absDiff = norm2(diff)/norm2(Umu);