diff --git a/Grid/parallelIO/NerscIO.h b/Grid/parallelIO/NerscIO.h index 499295c3..d3b62d1f 100644 --- a/Grid/parallelIO/NerscIO.h +++ b/Grid/parallelIO/NerscIO.h @@ -354,6 +354,6 @@ public: } }; -NAMESPACE_END(QCD); +NAMESPACE_END(Grid); #endif diff --git a/Grid/qcd/action/fermion/implementation/CayleyFermion5Dcache.h b/Grid/qcd/action/fermion/implementation/CayleyFermion5Dcache.h index 8af3e7c0..35402994 100644 --- a/Grid/qcd/action/fermion/implementation/CayleyFermion5Dcache.h +++ b/Grid/qcd/action/fermion/implementation/CayleyFermion5Dcache.h @@ -10,6 +10,7 @@ Author: Peter Boyle Author: Peter Boyle Author: Peter Boyle Author: paboyle +Author: Gianluca Filaci This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -54,6 +55,10 @@ CayleyFermion5D::M5D(const FermionField &psi_i, auto chi = chi_i.View(); assert(phi.Checkerboard() == psi.Checkerboard()); + auto pdiag = &diag[0]; + auto pupper = &upper[0]; + auto plower = &lower[0]; + int Ls =this->Ls; // 10 = 3 complex mult + 2 complex add @@ -71,7 +76,7 @@ CayleyFermion5D::M5D(const FermionField &psi_i, uint64_t idx_l = ss+((s+Ls-1)%Ls); spProj5m(tmp1,psi(idx_u)); spProj5p(tmp2,psi(idx_l)); - coalescedWrite(chi[ss+s],diag[s]*phi(ss+s)+upper[s]*tmp1+lower[s]*tmp2); + coalescedWrite(chi[ss+s],pdiag[s]*phi(ss+s)+pupper[s]*tmp1+plower[s]*tmp2); } }); M5Dtime+=usecond(); @@ -93,6 +98,10 @@ CayleyFermion5D::M5Ddag(const FermionField &psi_i, auto chi = chi_i.View(); assert(phi.Checkerboard() == psi.Checkerboard()); + auto pdiag = &diag[0]; + auto pupper = &upper[0]; + auto plower = &lower[0]; + int Ls=this->Ls; // Flops = 6.0*(Nc*Ns) *Ls*vol @@ -109,7 +118,7 @@ CayleyFermion5D::M5Ddag(const FermionField &psi_i, uint64_t idx_l = ss+((s+Ls-1)%Ls); spProj5p(tmp1,psi(idx_u)); spProj5m(tmp2,psi(idx_l)); - coalescedWrite(chi[ss+s],diag[s]*phi(ss+s)+upper[s]*tmp1+lower[s]*tmp2); + coalescedWrite(chi[ss+s],pdiag[s]*phi(ss+s)+pupper[s]*tmp1+plower[s]*tmp2); } }); M5Dtime+=usecond(); @@ -139,39 +148,41 @@ CayleyFermion5D::MooeeInv (const FermionField &psi_i, FermionField &chi accelerator_for(sss,nloop,Simd::Nsimd(),{ uint64_t ss=sss*Ls; typedef decltype(coalescedRead(psi[0])) spinor; - spinor tmp; + spinor tmp, acc, res; - // flops = 12*2*Ls + 12*2*Ls + 3*12*Ls + 12*2*Ls = 12*Ls * (9) = 108*Ls flops - // Apply (L^{\prime})^{-1} - coalescedWrite(chi[ss],psi(ss)); // chi[0]=psi[0] - for(int s=1;s=0;s--){ - spProj5m(tmp,chi(ss+s+1)); - coalescedWrite(chi[ss+s], chi(ss+s) - puee[s]*tmp); + res = (1.0/pdee[s])*chi(ss+s) - puee[s]*tmp - pueem[s]*acc; + spProj5m(tmp,res); + coalescedWrite(chi[ss+s],res); } }); MooeeInvTime+=usecond(); - + } template @@ -201,31 +212,36 @@ CayleyFermion5D::MooeeInvDag (const FermionField &psi_i, FermionField &chi accelerator_for(sss,nloop,Simd::Nsimd(),{ uint64_t ss=sss*Ls; typedef decltype(coalescedRead(psi[0])) spinor; - spinor tmp; + spinor tmp, acc, res; - // Apply (U^{\prime})^{-dagger} - coalescedWrite(chi[ss],psi(ss)); - for (int s=1;s=0;s--){ - spProj5p(tmp,chi(ss+s+1)); - coalescedWrite(chi[ss+s], chi(ss+s) - conjugate(plee[s])*tmp); + res = (1.0/pdee[s])*chi(ss+s) - conjugate(plee[s])*tmp - conjugate(pleem[s])*acc; + spProj5p(tmp,res); + coalescedWrite(chi[ss+s],res); } }); MooeeInvTime+=usecond(); diff --git a/Grid/qcd/action/fermion/implementation/DomainWallEOFAFermionCache.h b/Grid/qcd/action/fermion/implementation/DomainWallEOFAFermionCache.h index a3eca650..46d3fa1f 100644 --- a/Grid/qcd/action/fermion/implementation/DomainWallEOFAFermionCache.h +++ b/Grid/qcd/action/fermion/implementation/DomainWallEOFAFermionCache.h @@ -11,6 +11,7 @@ Author: Peter Boyle Author: Peter Boyle Author: paboyle Author: David Murphy +Author: Gianluca Filaci This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -49,6 +50,9 @@ void DomainWallEOFAFermion::M5D(const FermionField& psi_i, const FermionFi auto psi = psi_i.View(); auto chi = chi_i.View(); assert(phi.Checkerboard() == psi.Checkerboard()); + auto pdiag = &diag[0]; + auto pupper = &upper[0]; + auto plower = &lower[0]; // Flops = 6.0*(Nc*Ns) *Ls*vol this->M5Dcalls++; this->M5Dtime -= usecond(); @@ -63,7 +67,7 @@ void DomainWallEOFAFermion::M5D(const FermionField& psi_i, const FermionFi uint64_t idx_l = ss+((s+Ls-1)%Ls); spProj5m(tmp1, psi(idx_u)); spProj5p(tmp2, psi(idx_l)); - coalescedWrite(chi[ss+s], diag[s]*phi(ss+s) + upper[s]*tmp1 + lower[s]*tmp2); + coalescedWrite(chi[ss+s], pdiag[s]*phi(ss+s) + pupper[s]*tmp1 + plower[s]*tmp2); } }); @@ -82,6 +86,9 @@ void DomainWallEOFAFermion::M5Ddag(const FermionField& psi_i, const Fermio auto phi = phi_i.View(); auto chi = chi_i.View(); assert(phi.Checkerboard() == psi.Checkerboard()); + auto pdiag = &diag[0]; + auto pupper = &upper[0]; + auto plower = &lower[0]; // Flops = 6.0*(Nc*Ns) *Ls*vol this->M5Dcalls++; @@ -97,7 +104,7 @@ void DomainWallEOFAFermion::M5Ddag(const FermionField& psi_i, const Fermio uint64_t idx_l = ss+((s+Ls-1)%Ls); spProj5p(tmp1, psi(idx_u)); spProj5m(tmp2, psi(idx_l)); - coalescedWrite(chi[ss+s], diag[s]*phi(ss+s) + upper[s]*tmp1 + lower[s]*tmp2); + coalescedWrite(chi[ss+s], pdiag[s]*phi(ss+s) + pupper[s]*tmp1 + plower[s]*tmp2); } }); @@ -124,36 +131,37 @@ void DomainWallEOFAFermion::MooeeInv(const FermionField& psi_i, FermionFie this->MooeeInvTime -= usecond(); uint64_t nloop=grid->oSites()/Ls; accelerator_for(sss,nloop,Simd::Nsimd(),{ - auto ss=sss*Ls; + uint64_t ss=sss*Ls; typedef decltype(coalescedRead(psi[0])) spinor; - spinor tmp1,tmp2; + spinor tmp, acc, res; - // flops = 12*2*Ls + 12*2*Ls + 3*12*Ls + 12*2*Ls = 12*Ls * (9) = 108*Ls flops - // Apply (L^{\prime})^{-1} - coalescedWrite(chi[ss],psi(ss)); // chi[0]=psi[0] - for(int s=1; s=0; s--){ - spProj5m(tmp1, chi(ss+s+1)); - coalescedWrite(chi[ss+s], chi(ss+s) - puee[s]*tmp1); + res = psi(ss+Ls-1) - plee[Ls-2]*tmp - acc; + + // Apply U_m^{-1} D^{-1} U^{-1} + acc = (1.0/pdee[Ls ])*res; + tmp = (1.0/pdee[Ls-1])*res; + spProj5p(acc,acc); + spProj5m(tmp,tmp); + coalescedWrite(chi[ss+Ls-1], acc + tmp); + for (int s=Ls-2;s>=0;s--){ + res = (1.0/pdee[s])*chi(ss+s) - puee[s]*tmp - pueem[s]*acc; + spProj5m(tmp,res); + coalescedWrite(chi[ss+s],res); } }); this->MooeeInvTime += usecond(); @@ -168,56 +176,50 @@ void DomainWallEOFAFermion::MooeeInvDag(const FermionField& psi_i, Fermion auto chi = chi_i.View(); int Ls = this->Ls; + auto plee = & this->lee[0]; + auto pdee = & this->dee[0]; + auto puee = & this->uee[0]; + + auto pleem = & this->leem[0]; + auto pueem = & this->ueem[0]; + assert(psi.Checkerboard() == psi.Checkerboard()); - Vector ueec(Ls); - Vector deec(Ls+1); - Vector leec(Ls); - Vector ueemc(Ls); - Vector leemc(Ls); - - for(int s=0; suee[s]); - deec[s] = conjugate(this->dee[s]); - leec[s] = conjugate(this->lee[s]); - ueemc[s] = conjugate(this->ueem[s]); - leemc[s] = conjugate(this->leem[s]); - } - deec[Ls] = conjugate(this->dee[Ls]); - this->MooeeInvCalls++; this->MooeeInvTime -= usecond(); auto nloop = grid->oSites()/Ls; accelerator_for(sss,nloop,Simd::Nsimd(),{ + uint64_t ss=sss*Ls; typedef decltype(coalescedRead(psi[0])) spinor; - spinor tmp1,tmp2; - auto ss=sss*Ls; + spinor tmp, acc, res; - // Apply (U^{\prime})^{-dagger} - coalescedWrite(chi[ss], psi(ss)); - for(int s=1; s=0; s--){ - spProj5p(tmp1, chi(ss+s+1)); - coalescedWrite(chi[ss+s],chi(ss+s) - leec[s]*tmp1); + res = psi(ss+Ls-1) - conjugate(puee[Ls-2])*tmp - acc; + + // Apply L_m^{-\dagger} D^{-dagger} L^{-dagger} + acc = conjugate(1.0/pdee[Ls-1])*res; + tmp = conjugate(1.0/pdee[Ls ])*res; + spProj5m(acc,acc); + spProj5p(tmp,tmp); + coalescedWrite(chi[ss+Ls-1], acc + tmp); + for (int s=Ls-2;s>=0;s--){ + res = conjugate(1.0/pdee[s])*chi(ss+s) - conjugate(plee[s])*tmp - conjugate(pleem[s])*acc; + spProj5p(tmp,res); + coalescedWrite(chi[ss+s],res); } }); diff --git a/Grid/qcd/action/fermion/implementation/MobiusEOFAFermionCache.h b/Grid/qcd/action/fermion/implementation/MobiusEOFAFermionCache.h index 650435fc..f74c7a51 100644 --- a/Grid/qcd/action/fermion/implementation/MobiusEOFAFermionCache.h +++ b/Grid/qcd/action/fermion/implementation/MobiusEOFAFermionCache.h @@ -11,6 +11,7 @@ Author: Peter Boyle Author: Peter Boyle Author: paboyle Author: David Murphy +Author: Gianluca Filaci This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -49,6 +50,10 @@ void MobiusEOFAFermion::M5D(const FermionField &psi_i, const FermionField assert(phi.Checkerboard() == psi.Checkerboard()); + auto pdiag = &diag[0]; + auto pupper = &upper[0]; + auto plower = &lower[0]; + // Flops = 6.0*(Nc*Ns) *Ls*vol this->M5Dcalls++; this->M5Dtime -= usecond(); @@ -64,7 +69,7 @@ void MobiusEOFAFermion::M5D(const FermionField &psi_i, const FermionField uint64_t idx_l = ss+((s+Ls-1)%Ls); spProj5m(tmp1, psi(idx_u)); spProj5p(tmp2, psi(idx_l)); - coalescedWrite(chi[ss+s], diag[s]*phi(ss+s) + upper[s]*tmp1 + lower[s]*tmp2); + coalescedWrite(chi[ss+s], pdiag[s]*phi(ss+s) + pupper[s]*tmp1 + plower[s]*tmp2); } }); @@ -88,6 +93,11 @@ void MobiusEOFAFermion::M5D_shift(const FermionField &psi_i, const Fermion assert(phi.Checkerboard() == psi.Checkerboard()); + auto pdiag = &diag[0]; + auto pupper = &upper[0]; + auto plower = &lower[0]; + auto pshift_coeffs = &shift_coeffs[0]; + // Flops = 6.0*(Nc*Ns) *Ls*vol this->M5Dcalls++; this->M5Dtime -= usecond(); @@ -108,7 +118,7 @@ void MobiusEOFAFermion::M5D_shift(const FermionField &psi_i, const Fermion if(pm == 1){ spProj5p(tmp, psi(ss+shift_s)); } else { spProj5m(tmp, psi(ss+shift_s)); } - coalescedWrite(chi[ss+s], diag[s]*phi(ss+s) + upper[s]*tmp1 +lower[s]*tmp2 + shift_coeffs[s]*tmp); + coalescedWrite(chi[ss+s], pdiag[s]*phi(ss+s) + pupper[s]*tmp1 +plower[s]*tmp2 + pshift_coeffs[s]*tmp); } }); @@ -128,6 +138,10 @@ void MobiusEOFAFermion::M5Ddag(const FermionField &psi_i, const FermionFie assert(phi.Checkerboard() == psi.Checkerboard()); + auto pdiag = &diag[0]; + auto pupper = &upper[0]; + auto plower = &lower[0]; + // Flops = 6.0*(Nc*Ns) *Ls*vol this->M5Dcalls++; this->M5Dtime -= usecond(); @@ -144,7 +158,7 @@ void MobiusEOFAFermion::M5Ddag(const FermionField &psi_i, const FermionFie uint64_t idx_l = ss+((s+Ls-1)%Ls); spProj5p(tmp1, psi(idx_u)); spProj5m(tmp2, psi(idx_l)); - coalescedWrite(chi[ss+s], diag[s]*phi(ss+s) + upper[s]*tmp1 + lower[s]*tmp2); + coalescedWrite(chi[ss+s], pdiag[s]*phi(ss+s) + pupper[s]*tmp1 + plower[s]*tmp2); } }); @@ -166,6 +180,11 @@ void MobiusEOFAFermion::M5Ddag_shift(const FermionField &psi_i, const Ferm assert(phi.Checkerboard() == psi.Checkerboard()); + auto pdiag = &diag[0]; + auto pupper = &upper[0]; + auto plower = &lower[0]; + auto pshift_coeffs = &shift_coeffs[0]; + // Flops = 6.0*(Nc*Ns) *Ls*vol this->M5Dcalls++; this->M5Dtime -= usecond(); @@ -189,12 +208,12 @@ void MobiusEOFAFermion::M5Ddag_shift(const FermionField &psi_i, const Ferm spProj5p(tmp1, psi(idx_u)); spProj5m(tmp2, psi(idx_l)); - if(s==(Ls-1)) coalescedWrite(chi[ss+s], chi(ss+s)+ diag[s]*phi(ss+s) + upper[s]*tmp1 + lower[s]*tmp2); - else coalescedWrite(chi[ss+s], diag[s]*phi(ss+s) + upper[s]*tmp1 + lower[s]*tmp2); + if(s==(Ls-1)) coalescedWrite(chi[ss+s], chi(ss+s)+ pdiag[s]*phi(ss+s) + pupper[s]*tmp1 + plower[s]*tmp2); + else coalescedWrite(chi[ss+s], pdiag[s]*phi(ss+s) + pupper[s]*tmp1 + plower[s]*tmp2); if(pm == 1){ spProj5p(tmp, psi(ss+s)); } else { spProj5m(tmp, psi(ss+s)); } - coalescedWrite(chi[ss+shift_s],chi(ss+shift_s)+shift_coeffs[s]*tmp); + coalescedWrite(chi[ss+shift_s],chi(ss+shift_s)+pshift_coeffs[s]*tmp); } }); @@ -223,36 +242,38 @@ void MobiusEOFAFermion::MooeeInv(const FermionField &psi_i, FermionField & int nloop = grid->oSites()/Ls; accelerator_for(sss,nloop,Simd::Nsimd(),{ - - uint64_t ss = sss*Ls; - + uint64_t ss=sss*Ls; typedef decltype(coalescedRead(psi[0])) spinor; - spinor tmp; + spinor tmp, acc, res; - // Apply (L^{\prime})^{-1} - coalescedWrite(chi[ss], psi(ss)); // chi[0]=psi[0] - for(int s=1; s=0; s--){ - spProj5m(tmp, chi(ss+s+1)); - coalescedWrite(chi[ss+s], chi(ss+s) - puee[s]*tmp); + res = psi(ss+Ls-1) - plee[Ls-2]*tmp - acc; + + // Apply U_m^{-1} D^{-1} U^{-1} + res = (1.0/pdee[Ls-1])*res; + coalescedWrite(chi[ss+Ls-1],res); + spProj5p(acc,res); + spProj5m(tmp,res); + for (int s=Ls-2;s>=0;s--){ + res = (1.0/pdee[s])*chi(ss+s) - puee[s]*tmp - pueem[s]*acc; + spProj5m(tmp,res); + coalescedWrite(chi[ss+s],res); } }); @@ -281,45 +302,45 @@ void MobiusEOFAFermion::MooeeInv_shift(const FermionField &psi_i, FermionF int nloop = grid->oSites()/Ls; accelerator_for(sss,nloop,Simd::Nsimd(),{ + uint64_t ss=sss*Ls; + typedef decltype(coalescedRead(psi[0])) spinor; + spinor tmp, acc, res, tmp_spProj; - uint64_t ss = sss*Ls; + // Apply (L^{\prime})^{-1} L_m^{-1} + res = psi(ss); + spProj5m(tmp,res); + acc = pleem[0]*tmp; + spProj5p(tmp,res); + coalescedWrite(chi[ss],res); + tmp_spProj = pMooeeInv_shift_lc[0]*res; - typedef decltype(coalescedRead(psi[0])) spinor; - spinor tmp1,tmp2,tmp2_spProj; + for(int s=1;s=0; s--){ - coalescedWrite(chi[ss+s] , chi(ss+s) - puee[s]*tmp1); - spProj5m(tmp1, chi(ss+s)); - coalescedWrite(chi[ss+s], chi(ss+s) + pMooeeInv_shift_norm[s]*tmp2_spProj); - } + // Apply U_m^{-1} D^{-1} U^{-1} + res = (1.0/pdee[Ls-1])*res; + spProj5p(acc,res); + spProj5m(tmp,res); + coalescedWrite(chi[ss+Ls-1], res + pMooeeInv_shift_norm[Ls-1]*tmp_spProj); + for (int s=Ls-2;s>=0;s--){ + res = (1.0/pdee[s])*chi(ss+s) - puee[s]*tmp - pueem[s]*acc; + spProj5m(tmp,res); + coalescedWrite(chi[ss+s], res + pMooeeInv_shift_norm[s]*tmp_spProj); + } }); this->MooeeInvTime += usecond(); @@ -347,39 +368,40 @@ void MobiusEOFAFermion::MooeeInvDag(const FermionField &psi_i, FermionFiel int nloop = grid->oSites()/Ls; accelerator_for(sss,nloop,Simd::Nsimd(),{ - - uint64_t ss = sss*Ls; - + uint64_t ss=sss*Ls; typedef decltype(coalescedRead(psi[0])) spinor; - spinor tmp; + spinor tmp, acc, res; - // Apply (U^{\prime})^{-dag} - coalescedWrite(chi[ss], psi(ss)); - for(int s=1; s=0; s--){ - spProj5p(tmp, chi(ss+s+1)); - coalescedWrite(chi[ss+s], chi(ss+s) - plee[s]*tmp); + res = psi(ss+Ls-1) - puee[Ls-2]*tmp - acc; + + // Apply L_m^{-\dagger} D^{-dagger} L^{-dagger} + res = (1.0/pdee[Ls-1])*res; + coalescedWrite(chi[ss+Ls-1],res); + spProj5m(acc,res); + spProj5p(tmp,res); + for (int s=Ls-2;s>=0;s--){ + res = (1.0/pdee[s])*chi(ss+s) - plee[s]*tmp - pleem[s]*acc; + spProj5p(tmp,res); + coalescedWrite(chi[ss+s],res); } }); - this->MooeeInvTime += usecond(); } @@ -406,45 +428,45 @@ void MobiusEOFAFermion::MooeeInvDag_shift(const FermionField &psi_i, Fermi int nloop = grid->oSites()/Ls; accelerator_for(sss,nloop,Simd::Nsimd(),{ + uint64_t ss=sss*Ls; + typedef decltype(coalescedRead(psi[0])) spinor; + spinor tmp, acc, res, tmp_spProj; - uint64_t ss = sss*Ls; + // Apply (U^{\prime})^{-dagger} U_m^{-\dagger} + res = psi(ss); + spProj5p(tmp,res); + acc = pueem[0]*tmp; + spProj5m(tmp,res); + coalescedWrite(chi[ss],res); + tmp_spProj = pMooeeInvDag_shift_lc[0]*res; - typedef decltype(coalescedRead(psi[0])) spinor; - spinor tmp1,tmp2,tmp2_spProj; + for(int s=1;s=0; s--){ - coalescedWrite(chi[ss+s], chi(ss+s) - plee[s]*tmp1); - spProj5p(tmp1, chi(ss+s)); - coalescedWrite(chi[ss+s], chi(ss+s) + pMooeeInvDag_shift_norm[s]*tmp2_spProj); - } + // Apply L_m^{-\dagger} D^{-dagger} L^{-dagger} + res = (1.0/pdee[Ls-1])*res; + spProj5m(acc,res); + spProj5p(tmp,res); + coalescedWrite(chi[ss+Ls-1], res + pMooeeInvDag_shift_norm[Ls-1]*tmp_spProj); + for (int s=Ls-2;s>=0;s--){ + res = (1.0/pdee[s])*chi(ss+s) - plee[s]*tmp - pleem[s]*acc; + spProj5p(tmp,res); + coalescedWrite(chi[ss+s], res + pMooeeInvDag_shift_norm[s]*tmp_spProj); + } }); this->MooeeInvTime += usecond(); diff --git a/Grid/qcd/hmc/HMC_GridModules.h b/Grid/qcd/hmc/HMC_GridModules.h index 0c834cf2..45b361b0 100644 --- a/Grid/qcd/hmc/HMC_GridModules.h +++ b/Grid/qcd/hmc/HMC_GridModules.h @@ -97,7 +97,6 @@ protected: //////////////////////////////////// // Classes for the user //////////////////////////////////// -// Note: the space time grid should be out of the QCD namespace template class GridFourDimModule : public GridModule { diff --git a/Grid/qcd/utils/CovariantSmearing.h b/Grid/qcd/utils/CovariantSmearing.h index 7feddea9..9ad7cd50 100644 --- a/Grid/qcd/utils/CovariantSmearing.h +++ b/Grid/qcd/utils/CovariantSmearing.h @@ -27,8 +27,7 @@ directory *************************************************************************************/ #pragma once -namespace Grid { -namespace QCD { +NAMESPACE_BEGIN(Grid); template class CovariantSmearing : public Gimpl { @@ -84,4 +83,5 @@ public: } } }; -}} + +NAMESPACE_END(Grid); diff --git a/Grid/qcd/utils/LinalgUtils.h b/Grid/qcd/utils/LinalgUtils.h index 5974f4ed..56f8f164 100644 --- a/Grid/qcd/utils/LinalgUtils.h +++ b/Grid/qcd/utils/LinalgUtils.h @@ -201,7 +201,6 @@ void G5R5(Lattice &z,const Lattice &x) }); } -// I explicitly need these outside the QCD namespace template void G5C(Lattice &z, const Lattice &x) { diff --git a/HMC/Mobius2p1f.cc b/HMC/Mobius2p1f.cc index fe373dcb..5f82e0e7 100644 --- a/HMC/Mobius2p1f.cc +++ b/HMC/Mobius2p1f.cc @@ -31,7 +31,6 @@ directory int main(int argc, char **argv) { using namespace Grid; - using namespace Grid::QCD; Grid_init(&argc, &argv); int threads = GridThread::GetThreads(); @@ -44,18 +43,18 @@ int main(int argc, char **argv) { typedef typename FermionAction::FermionField FermionField; typedef Grid::XmlReader Serialiser; - + //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: IntegratorParameters MD; - // typedef GenericHMCRunner HMCWrapper; + // typedef GenericHMCRunner HMCWrapper; // MD.name = std::string("Leap Frog"); - // typedef GenericHMCRunner HMCWrapper; + // typedef GenericHMCRunner HMCWrapper; // MD.name = std::string("Force Gradient"); - typedef GenericHMCRunner HMCWrapper; + typedef GenericHMCRunner HMCWrapper; MD.name = std::string("MinimumNorm2"); MD.MDsteps = 20; MD.trajL = 1.0; - + HMCparameters HMCparams; HMCparams.StartTrajectory = 0; HMCparams.Trajectories = 200; @@ -67,7 +66,7 @@ int main(int argc, char **argv) { // Grid from the command line arguments --grid and --mpi TheHMC.Resources.AddFourDimGrid("gauge"); // use default simd lanes decomposition - + CheckpointerParameters CPparams; CPparams.config_prefix = "ckpoint_EODWF_lat"; CPparams.rng_prefix = "ckpoint_EODWF_rng"; @@ -81,7 +80,7 @@ int main(int argc, char **argv) { TheHMC.Resources.SetRNGSeeds(RNGpar); // Construct observables - // here there is too much indirection + // here there is too much indirection typedef PlaquetteMod PlaqObs; TheHMC.Resources.AddObservable(); ////////////////////////////////////////////// @@ -118,7 +117,7 @@ int main(int argc, char **argv) { // These lines are unecessary if BC are all periodic std::vector boundary = {1,1,1,-1}; FermionAction::ImplParams Params(boundary); - + double StoppingCondition = 1e-10; double MaxCGIterations = 30000; ConjugateGradient CG(StoppingCondition,MaxCGIterations); diff --git a/HMC/Mobius2p1fEOFA.cc b/HMC/Mobius2p1fEOFA.cc index 35fb19cb..b1294da5 100644 --- a/HMC/Mobius2p1fEOFA.cc +++ b/HMC/Mobius2p1fEOFA.cc @@ -34,8 +34,7 @@ directory #define MIXED_PRECISION #endif -namespace Grid{ - namespace QCD{ +NAMESPACE_BEGIN(Grid); /* * Need a plan for gauge field update for mixed precision in HMC (2x speed up) @@ -163,11 +162,11 @@ namespace Grid{ MPCG(src,psi); } }; -}}; + +NAMESPACE_END(Grid); int main(int argc, char **argv) { using namespace Grid; - using namespace Grid::QCD; Grid_init(&argc, &argv); int threads = GridThread::GetThreads(); diff --git a/HMC/Mobius2p1fEOFA_F1.cc b/HMC/Mobius2p1fEOFA_F1.cc index 3d51b16c..3f0a7bf6 100644 --- a/HMC/Mobius2p1fEOFA_F1.cc +++ b/HMC/Mobius2p1fEOFA_F1.cc @@ -34,8 +34,7 @@ directory #define MIXED_PRECISION #endif -namespace Grid{ - namespace QCD{ +NAMESPACE_BEGIN(Grid); /* * Need a plan for gauge field update for mixed precision in HMC (2x speed up) @@ -146,11 +145,12 @@ namespace Grid{ MPCG(src,psi); } }; -}}; + +NAMESPACE_END(Grid); + int main(int argc, char **argv) { using namespace Grid; - using namespace Grid::QCD; Grid_init(&argc, &argv); int threads = GridThread::GetThreads(); @@ -341,7 +341,7 @@ int main(int argc, char **argv) { ActionCG, ActionCG, ActionCG, ActionCG, ActionCG, - // DerivativeCG, DerivativeCG, + // DerivativeCG, DerivativeCG, OFRp, true); #endif Level1.push_back(&EOFA); diff --git a/HMC/Mobius2p1fRHMC.cc b/HMC/Mobius2p1fRHMC.cc index 04fb0ee5..82ca4d37 100644 --- a/HMC/Mobius2p1fRHMC.cc +++ b/HMC/Mobius2p1fRHMC.cc @@ -31,7 +31,6 @@ directory int main(int argc, char **argv) { using namespace Grid; - using namespace Grid::QCD; Grid_init(&argc, &argv); int threads = GridThread::GetThreads(); @@ -44,18 +43,18 @@ int main(int argc, char **argv) { typedef typename FermionAction::FermionField FermionField; typedef Grid::XmlReader Serialiser; - + //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: IntegratorParameters MD; - // typedef GenericHMCRunner HMCWrapper; + // typedef GenericHMCRunner HMCWrapper; // MD.name = std::string("Leap Frog"); - // typedef GenericHMCRunner HMCWrapper; + // typedef GenericHMCRunner HMCWrapper; // MD.name = std::string("Force Gradient"); - typedef GenericHMCRunner HMCWrapper; + typedef GenericHMCRunner HMCWrapper; MD.name = std::string("MinimumNorm2"); MD.MDsteps = 20; MD.trajL = 1.0; - + HMCparameters HMCparams; HMCparams.StartTrajectory = 30; HMCparams.Trajectories = 200; @@ -68,7 +67,7 @@ int main(int argc, char **argv) { // Grid from the command line arguments --grid and --mpi TheHMC.Resources.AddFourDimGrid("gauge"); // use default simd lanes decomposition - + CheckpointerParameters CPparams; CPparams.config_prefix = "ckpoint_EODWF_lat"; CPparams.rng_prefix = "ckpoint_EODWF_rng"; @@ -82,7 +81,7 @@ int main(int argc, char **argv) { TheHMC.Resources.SetRNGSeeds(RNGpar); // Construct observables - // here there is too much indirection + // here there is too much indirection typedef PlaquetteMod PlaqObs; TheHMC.Resources.AddObservable(); ////////////////////////////////////////////// @@ -93,11 +92,11 @@ int main(int argc, char **argv) { Real strange_mass = 0.04; Real pv_mass = 1.0; RealD M5 = 1.8; - RealD b = 1.0; + RealD b = 1.0; RealD c = 0.0; - + // FIXME: - // Same in MC and MD + // Same in MC and MD // Need to mix precision too OneFlavourRationalParams OFRp; OFRp.lo = 4.0e-3; @@ -122,7 +121,7 @@ int main(int argc, char **argv) { // These lines are unecessary if BC are all periodic std::vector boundary = {1,1,1,-1}; FermionAction::ImplParams Params(boundary); - + double StoppingCondition = 1e-10; double MaxCGIterations = 30000; ConjugateGradient CG(StoppingCondition,MaxCGIterations); diff --git a/Hadrons/Modules.hpp b/Hadrons/Modules.hpp index 3c30f206..c828e120 100644 --- a/Hadrons/Modules.hpp +++ b/Hadrons/Modules.hpp @@ -1,8 +1,8 @@ #include #include #include -#include #include +#include #include #include #include @@ -33,8 +33,8 @@ #include #include #include -#include #include +#include #include #include #include @@ -44,12 +44,12 @@ #include #include #include -#include -#include -#include #include #include #include +#include +#include +#include #include #include #include @@ -57,10 +57,10 @@ #include #include #include +#include #include #include #include -#include #include #include #include @@ -74,6 +74,7 @@ #include #include #include +#include #include #include #include diff --git a/Hadrons/Modules/MSource/JacobiSmear.cc b/Hadrons/Modules/MSource/JacobiSmear.cc new file mode 100644 index 00000000..e9b37f1b --- /dev/null +++ b/Hadrons/Modules/MSource/JacobiSmear.cc @@ -0,0 +1,7 @@ +#include + +using namespace Grid; +using namespace Hadrons; +using namespace MSource; + +template class Grid::Hadrons::MSource::TJacobiSmear; diff --git a/Hadrons/Modules/MSource/JacobiSmear.hpp b/Hadrons/Modules/MSource/JacobiSmear.hpp new file mode 100644 index 00000000..5aa5c705 --- /dev/null +++ b/Hadrons/Modules/MSource/JacobiSmear.hpp @@ -0,0 +1,105 @@ +#ifndef Hadrons_MSource_JacobiSmear_hpp_ +#define Hadrons_MSource_JacobiSmear_hpp_ + +#include +#include +#include + +BEGIN_HADRONS_NAMESPACE + +/****************************************************************************** + * JacobiSmear * + ******************************************************************************/ +BEGIN_MODULE_NAMESPACE(MSource) + +class JacobiSmearPar: Serializable +{ +public: + GRID_SERIALIZABLE_CLASS_MEMBERS(JacobiSmearPar, + std::string, gauge, + double, width, + int, iterations, + int, orthog, + std::string, source); +}; + +template +class TJacobiSmear: public Module +{ +public: + FERM_TYPE_ALIASES(FImpl,); + typedef typename FImpl::GaugeLinkField GaugeMat; +public: + // constructor + TJacobiSmear(const std::string name); + // destructor + virtual ~TJacobiSmear(void) {}; + // dependency relation + virtual std::vector getInput(void); + virtual std::vector getOutput(void); + // setup + virtual void setup(void); + // execution + virtual void execute(void); +}; + +MODULE_REGISTER_TMP(JacobiSmear, TJacobiSmear, MSource); + +/****************************************************************************** + * TJacobiSmear implementation * + ******************************************************************************/ +// constructor ///////////////////////////////////////////////////////////////// +template +TJacobiSmear::TJacobiSmear(const std::string name) +: Module(name) +{} + +// dependencies/products /////////////////////////////////////////////////////// +template +std::vector TJacobiSmear::getInput(void) +{ + std::vector in = {par().source, par().gauge}; + + return in; +} + +template +std::vector TJacobiSmear::getOutput(void) +{ + std::vector out = {getName()}; + + return out; +} + +// setup /////////////////////////////////////////////////////////////////////// +template +void TJacobiSmear::setup(void) +{ + envCreateLat(PropagatorField, getName()); + envTmp(std::vector, "Umu", 1, 4, envGetGrid(LatticeColourMatrix)); +} + +// execution /////////////////////////////////////////////////////////////////// +template +void TJacobiSmear::execute(void) +{ + auto &out = envGet(PropagatorField, getName()); + auto &src = envGet(PropagatorField, par().source); + auto &U = envGet(GaugeField, par().gauge); + envGetTmp(std::vector, Umu); + for(int mu=0; mu<4; mu++) + { + Umu.at(mu)=peekLorentz(U,mu); + } + CovariantSmearing covsmear; + out=src; + startTimer("Jacobi iteration"); + covsmear.GaussianSmear(Umu, out, par().width, par().iterations, par().orthog); + stopTimer("Jacobi iteration"); +} + +END_MODULE_NAMESPACE + +END_HADRONS_NAMESPACE + +#endif // Hadrons_MSource_JacobiSmear_hpp_ diff --git a/Hadrons/Utilities/HadronsXmlValidate.cc b/Hadrons/Utilities/HadronsXmlValidate.cc index 73cf3139..fa2bfe3a 100644 --- a/Hadrons/Utilities/HadronsXmlValidate.cc +++ b/Hadrons/Utilities/HadronsXmlValidate.cc @@ -29,7 +29,6 @@ See the full license in the file "LICENSE" in the top level distribution directo #include using namespace Grid; -using namespace QCD; using namespace Hadrons; int main(int argc, char *argv[]) diff --git a/Hadrons/modules.inc b/Hadrons/modules.inc index 2eb1923d..8bc87fd3 100644 --- a/Hadrons/modules.inc +++ b/Hadrons/modules.inc @@ -44,22 +44,22 @@ modules_cc =\ Modules/MIO/LoadEigenPack.cc \ Modules/MIO/LoadNersc.cc \ Modules/MIO/LoadPerambulator.cc \ - Modules/MNPR/Amputate.cc \ - Modules/MNPR/Bilinear.cc \ - Modules/MNPR/FourQuark.cc \ Modules/MNoise/FullVolumeSpinColorDiagonal.cc \ Modules/MNoise/SparseSpinColorDiagonal.cc \ Modules/MNoise/TimeDilutedSpinColorDiagonal.cc \ + Modules/MNPR/Amputate.cc \ + Modules/MNPR/Bilinear.cc \ + Modules/MNPR/FourQuark.cc \ Modules/MScalar/ChargedProp.cc \ Modules/MScalar/FreeProp.cc \ Modules/MScalarSUN/Div.cc \ Modules/MScalarSUN/EMT.cc \ Modules/MScalarSUN/Grad.cc \ Modules/MScalarSUN/StochFreeField.cc \ + Modules/MScalarSUN/TransProj.cc \ Modules/MScalarSUN/TrKinetic.cc \ Modules/MScalarSUN/TrMag.cc \ Modules/MScalarSUN/TrPhi.cc \ - Modules/MScalarSUN/TransProj.cc \ Modules/MScalarSUN/TwoPoint.cc \ Modules/MScalarSUN/TwoPointNPR.cc \ Modules/MSink/Point.cc \ @@ -71,6 +71,7 @@ modules_cc =\ Modules/MSolver/RBPrecCG.cc \ Modules/MSource/Convolution.cc \ Modules/MSource/Gauss.cc \ + Modules/MSource/JacobiSmear.cc \ Modules/MSource/Momentum.cc \ Modules/MSource/MomentumPhase.cc \ Modules/MSource/Point.cc \ @@ -86,8 +87,8 @@ modules_hpp =\ Modules/MAction/DWF.hpp \ Modules/MAction/MobiusDWF.hpp \ Modules/MAction/ScaledDWF.hpp \ - Modules/MAction/Wilson.hpp \ Modules/MAction/WilsonClover.hpp \ + Modules/MAction/Wilson.hpp \ Modules/MAction/ZMobiusDWF.hpp \ Modules/MContraction/A2AAslashField.hpp \ Modules/MContraction/A2AFourQuarkContraction.hpp \ @@ -118,8 +119,8 @@ modules_hpp =\ Modules/MGauge/Random.hpp \ Modules/MGauge/StochEm.hpp \ Modules/MGauge/StoutSmearing.hpp \ - Modules/MGauge/Unit.hpp \ Modules/MGauge/UnitEm.hpp \ + Modules/MGauge/Unit.hpp \ Modules/MIO/LoadA2AMatrixDiskVector.hpp \ Modules/MIO/LoadA2AVectors.hpp \ Modules/MIO/LoadBinary.hpp \ @@ -129,12 +130,12 @@ modules_hpp =\ Modules/MIO/LoadEigenPack.hpp \ Modules/MIO/LoadNersc.hpp \ Modules/MIO/LoadPerambulator.hpp \ - Modules/MNPR/Amputate.hpp \ - Modules/MNPR/Bilinear.hpp \ - Modules/MNPR/FourQuark.hpp \ Modules/MNoise/FullVolumeSpinColorDiagonal.hpp \ Modules/MNoise/SparseSpinColorDiagonal.hpp \ Modules/MNoise/TimeDilutedSpinColorDiagonal.hpp \ + Modules/MNPR/Amputate.hpp \ + Modules/MNPR/Bilinear.hpp \ + Modules/MNPR/FourQuark.hpp \ Modules/MScalar/ChargedProp.hpp \ Modules/MScalar/FreeProp.hpp \ Modules/MScalar/Scalar.hpp \ @@ -142,10 +143,10 @@ modules_hpp =\ Modules/MScalarSUN/EMT.hpp \ Modules/MScalarSUN/Grad.hpp \ Modules/MScalarSUN/StochFreeField.hpp \ + Modules/MScalarSUN/TransProj.hpp \ Modules/MScalarSUN/TrKinetic.hpp \ Modules/MScalarSUN/TrMag.hpp \ Modules/MScalarSUN/TrPhi.hpp \ - Modules/MScalarSUN/TransProj.hpp \ Modules/MScalarSUN/TwoPoint.hpp \ Modules/MScalarSUN/TwoPointNPR.hpp \ Modules/MScalarSUN/Utils.hpp \ @@ -159,6 +160,7 @@ modules_hpp =\ Modules/MSolver/RBPrecCG.hpp \ Modules/MSource/Convolution.hpp \ Modules/MSource/Gauss.hpp \ + Modules/MSource/JacobiSmear.hpp \ Modules/MSource/Momentum.hpp \ Modules/MSource/MomentumPhase.hpp \ Modules/MSource/Point.hpp \ diff --git a/bootstrap.sh b/bootstrap.sh index 49f6b89e..4bd3de5e 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,10 +1,21 @@ #!/usr/bin/env bash +set -e EIGEN_URL='https://gitlab.com/libeigen/eigen/-/archive/3.3.7/eigen-3.3.7.tar.bz2' +EIGEN_SHA256SUM='685adf14bd8e9c015b78097c1dc22f2f01343756f196acdc76a678e1ae352e11' + echo "-- deploying Eigen source..." ARC=`basename ${EIGEN_URL}` -wget ${EIGEN_URL} --no-check-certificate && ./scripts/update_eigen.sh ${ARC} && rm ${ARC} +wget ${EIGEN_URL} --no-check-certificate +if command -v sha256sum; then + echo "$EIGEN_SHA256SUM $(basename "$EIGEN_URL")" \ + | sha256sum --check || exit 1 +else + echo "WARNING: could not verify checksum, please install sha256sum" >&2 +fi +./scripts/update_eigen.sh ${ARC} +rm ${ARC} # patch for non-portable includes in Eigen 3.3.5 # apparently already fixed in Eigen HEAD so it should not be # a problem in the future (A.P.) diff --git a/configure.ac b/configure.ac index d451c163..f4a5e503 100644 --- a/configure.ac +++ b/configure.ac @@ -281,6 +281,9 @@ case ${CXX} in CXX="nvcc -x cu " CXXLD="nvcc -link" CXXFLAGS="$CXXFLAGS -Xcompiler -fno-strict-aliasing -Xcompiler -Wno-unusable-partial-specialization --expt-extended-lambda --expt-relaxed-constexpr" + if test $ac_openmp = yes; then + CXXFLAGS="$CXXFLAGS -Xcompiler -fopenmp" + fi ;; *) CXXLD=${CXX} diff --git a/tests/hadrons/Test_diskvector.cc b/tests/hadrons/Test_diskvector.cc index 10bc4db1..9ec97a22 100644 --- a/tests/hadrons/Test_diskvector.cc +++ b/tests/hadrons/Test_diskvector.cc @@ -28,7 +28,6 @@ See the full license in the file "LICENSE" in the top level distribution directo #include using namespace Grid; -using namespace Grid::QCD; using namespace Grid::Hadrons; GRID_SERIALIZABLE_ENUM(Enum, undef, red, 1, blue, 2, green, 3); diff --git a/tests/hmc/Test_hmc_Mobius2p1f.cc b/tests/hmc/Test_hmc_Mobius2p1f.cc index 253727d2..508f5b5e 100644 --- a/tests/hmc/Test_hmc_Mobius2p1f.cc +++ b/tests/hmc/Test_hmc_Mobius2p1f.cc @@ -31,7 +31,6 @@ directory int main(int argc, char **argv) { using namespace Grid; - using namespace Grid::QCD; Grid_init(&argc, &argv); int threads = GridThread::GetThreads(); diff --git a/tests/qdpxx/Test_qdpxx_loops_staples.cc b/tests/qdpxx/Test_qdpxx_loops_staples.cc index 53202a4d..bbb41f4e 100644 --- a/tests/qdpxx/Test_qdpxx_loops_staples.cc +++ b/tests/qdpxx/Test_qdpxx_loops_staples.cc @@ -27,15 +27,15 @@ Author: Azusa Yamaguchi /* END LEGAL */ #include -double calc_grid_p (Grid::QCD::LatticeGaugeField & lat); -double calc_chroma_p (Grid::QCD::LatticeGaugeField & lat); -double calc_grid_r (Grid::QCD::LatticeGaugeField & lat); -double calc_grid_IW (Grid::QCD::LatticeGaugeField & lat); -double calc_grid_r_dir (Grid::QCD::LatticeGaugeField & lat); -double calc_chroma_r (Grid::QCD::LatticeGaugeField & lat); -double calc_chroma_IW (Grid::QCD::LatticeGaugeField & lat); -void check_grid_r_staple(Grid::QCD::LatticeGaugeField & Umu); -void check_grid_p_staple(Grid::QCD::LatticeGaugeField & Umu); +double calc_grid_p (Grid::LatticeGaugeField & lat); +double calc_chroma_p (Grid::LatticeGaugeField & lat); +double calc_grid_r (Grid::LatticeGaugeField & lat); +double calc_grid_IW (Grid::LatticeGaugeField & lat); +double calc_grid_r_dir (Grid::LatticeGaugeField & lat); +double calc_chroma_r (Grid::LatticeGaugeField & lat); +double calc_chroma_IW (Grid::LatticeGaugeField & lat); +void check_grid_r_staple(Grid::LatticeGaugeField & Umu); +void check_grid_p_staple(Grid::LatticeGaugeField & Umu); const double beta=2.6; const double c1=-0.331; @@ -53,10 +53,10 @@ public: typedef multi1d U; - static void ImportGauge(Grid::QCD::LatticeGaugeField & gr, + static void ImportGauge(Grid::LatticeGaugeField & gr, QDP::multi1d & ch) { - Grid::QCD::LorentzColourMatrix LCM; + Grid::LorentzColourMatrix LCM; Grid::Complex cc; QDP::ColorMatrix cm; QDP::Complex c; @@ -127,9 +127,9 @@ int main (int argc,char **argv ) * Setup Grid *********************************************************/ Grid::Grid_init(&argc,&argv); - Grid::GridCartesian * UGrid = Grid::QCD::SpaceTimeGrid::makeFourDimGrid(Grid::GridDefaultLatt(), - Grid::GridDefaultSimd(Grid::QCD::Nd,Grid::vComplex::Nsimd()), - Grid::GridDefaultMpi()); + Grid::GridCartesian * UGrid = Grid::SpaceTimeGrid::makeFourDimGrid(Grid::GridDefaultLatt(), + Grid::GridDefaultSimd(Grid::Nd,Grid::vComplex::Nsimd()), + Grid::GridDefaultMpi()); std::vector gd = UGrid->GlobalDimensions(); QDP::multi1d nrow(QDP::Nd); @@ -138,7 +138,7 @@ int main (int argc,char **argv ) QDP::Layout::setLattSize(nrow); QDP::Layout::create(); - Grid::QCD::LatticeGaugeField lat(UGrid); + Grid::LatticeGaugeField lat(UGrid); double s_grid = calc_grid_p (lat); @@ -181,7 +181,7 @@ int main (int argc,char **argv ) Chroma::finalize(); } -double calc_chroma_IW(Grid::QCD::LatticeGaugeField & lat) +double calc_chroma_IW(Grid::LatticeGaugeField & lat) { typedef QDP::multi1d U; @@ -203,7 +203,7 @@ double calc_chroma_IW(Grid::QCD::LatticeGaugeField & lat) return s; } -double calc_chroma_r(Grid::QCD::LatticeGaugeField & lat) +double calc_chroma_r(Grid::LatticeGaugeField & lat) { typedef QDP::multi1d U; @@ -245,7 +245,7 @@ double calc_chroma_r(Grid::QCD::LatticeGaugeField & lat) // action = beta * Nd*Nd-1*vol*0.5 - beta * Nd*Nd-1*vol*0.5*plaq // // plaq == sumplaq * 2/(V*Nd*(Nd-1)*Nc) -double calc_chroma_p(Grid::QCD::LatticeGaugeField & lat) +double calc_chroma_p(Grid::LatticeGaugeField & lat) { typedef QDP::multi1d U; @@ -270,60 +270,60 @@ double calc_chroma_p(Grid::QCD::LatticeGaugeField & lat) -double calc_grid_p(Grid::QCD::LatticeGaugeField & Umu) +double calc_grid_p(Grid::LatticeGaugeField & Umu) { std::vector seeds4({1,2,3,4}); Grid::GridCartesian * UGrid = (Grid::GridCartesian *) Umu.Grid(); Grid::GridParallelRNG RNG4(UGrid); RNG4.SeedFixedIntegers(seeds4); - Grid::QCD::SU3::HotConfiguration(RNG4,Umu); + Grid::SU3::HotConfiguration(RNG4,Umu); - Grid::QCD::LatticeColourMatrix tmp(UGrid); + Grid::LatticeColourMatrix tmp(UGrid); tmp = Grid::zero; - Grid::QCD::PokeIndex(Umu,tmp,2); - Grid::QCD::PokeIndex(Umu,tmp,3); + Grid::PokeIndex(Umu,tmp,2); + Grid::PokeIndex(Umu,tmp,3); - Grid::QCD::WilsonGaugeActionR Wilson(beta); // Just take beta = 1.0 + Grid::WilsonGaugeActionR Wilson(beta); // Just take beta = 1.0 return Wilson.S(Umu); } -double calc_grid_r(Grid::QCD::LatticeGaugeField & Umu) +double calc_grid_r(Grid::LatticeGaugeField & Umu) { Grid::GridCartesian * UGrid = (Grid::GridCartesian *) Umu.Grid(); - Grid::QCD::PlaqPlusRectangleActionR Wilson(0.0,c1); // Just take beta = 0.0 + Grid::PlaqPlusRectangleActionR Wilson(0.0,c1); // Just take beta = 0.0 return Wilson.S(Umu); } -double calc_grid_IW(Grid::QCD::LatticeGaugeField & Umu) +double calc_grid_IW(Grid::LatticeGaugeField & Umu) { Grid::GridCartesian * UGrid = (Grid::GridCartesian *) Umu.Grid(); - Grid::QCD::IwasakiGaugeActionR Iwasaki(beta); + Grid::IwasakiGaugeActionR Iwasaki(beta); return Iwasaki.S(Umu); } -double calc_grid_r_dir(Grid::QCD::LatticeGaugeField & Umu) +double calc_grid_r_dir(Grid::LatticeGaugeField & Umu) { Grid::GridCartesian * UGrid = (Grid::GridCartesian *) Umu.Grid(); - std::vector U(4,UGrid); + std::vector U(4,UGrid); for(int mu=0;mu(Umu,mu); } - Grid::QCD::LatticeComplex rect(UGrid); - Grid::QCD::TComplex trect; - Grid::QCD::Complex crect; + Grid::LatticeComplex rect(UGrid); + Grid::TComplex trect; + Grid::Complex crect; Grid::RealD rrect; Grid::RealD vol = UGrid->gSites(); - for(int mu=0;mu|| - // Grid::adj(Grid::QCD::PeriodicBC::CovShiftForward(U[nu],nu,Grid::QCD::PeriodicBC::CovShiftForward(U[nu],nu,U[mu]))) ; - Stap = Grid::Cshift(Grid::QCD::PeriodicBC::CovShiftForward(U[nu],nu, - Grid::QCD::PeriodicBC::CovShiftForward(U[nu],nu, - Grid::QCD::PeriodicBC::CovShiftBackward(U[mu],mu, - Grid::QCD::PeriodicBC::CovShiftBackward(U[nu],nu, Grid::Cshift(adj(U[nu]),nu,-1))))) , mu, 1); + // Grid::Cshift(Grid::PeriodicBC::CovShiftForward(U[nu],nu,U[nu]),mu,1)* // ->|| + // Grid::adj(Grid::PeriodicBC::CovShiftForward(U[nu],nu,Grid::PeriodicBC::CovShiftForward(U[nu],nu,U[mu]))) ; + Stap = Grid::Cshift(Grid::PeriodicBC::CovShiftForward(U[nu],nu, + Grid::PeriodicBC::CovShiftForward(U[nu],nu, + Grid::PeriodicBC::CovShiftBackward(U[mu],mu, + Grid::PeriodicBC::CovShiftBackward(U[nu],nu, Grid::Cshift(adj(U[nu]),nu,-1))))) , mu, 1); TrStap = Grid::trace (U[mu]*Stap); SumTrStap += TrStap; @@ -440,10 +440,10 @@ double calc_grid_r_dir(Grid::QCD::LatticeGaugeField & Umu) // | | // -- - Stap = Grid::Cshift(Grid::QCD::PeriodicBC::CovShiftBackward(U[nu],nu, - Grid::QCD::PeriodicBC::CovShiftBackward(U[nu],nu, - Grid::QCD::PeriodicBC::CovShiftBackward(U[mu],mu, - Grid::QCD::PeriodicBC::CovShiftForward (U[nu],nu,U[nu])))) , mu, 1); + Stap = Grid::Cshift(Grid::PeriodicBC::CovShiftBackward(U[nu],nu, + Grid::PeriodicBC::CovShiftBackward(U[nu],nu, + Grid::PeriodicBC::CovShiftBackward(U[mu],mu, + Grid::PeriodicBC::CovShiftForward (U[nu],nu,U[nu])))) , mu, 1); TrStap = Grid::trace (U[mu]*Stap); trect = Grid::sum(TrStap); @@ -459,20 +459,20 @@ double calc_grid_r_dir(Grid::QCD::LatticeGaugeField & Umu) Peter.Stop(); Azusa.Start(); { - Grid::QCD::LatticeComplex RectPlaq_d(UGrid); - Grid::QCD::LatticeColourMatrix ds_U(UGrid); - Grid::QCD::LatticeColourMatrix left_2(UGrid); - Grid::QCD::LatticeColourMatrix upper_l(UGrid); - Grid::QCD::LatticeColourMatrix upper_staple(UGrid); - Grid::QCD::LatticeColourMatrix down_l(UGrid); - Grid::QCD::LatticeColourMatrix down_staple(UGrid); - Grid::QCD::LatticeColourMatrix tmp(UGrid); + Grid::LatticeComplex RectPlaq_d(UGrid); + Grid::LatticeColourMatrix ds_U(UGrid); + Grid::LatticeColourMatrix left_2(UGrid); + Grid::LatticeColourMatrix upper_l(UGrid); + Grid::LatticeColourMatrix upper_staple(UGrid); + Grid::LatticeColourMatrix down_l(UGrid); + Grid::LatticeColourMatrix down_staple(UGrid); + Grid::LatticeColourMatrix tmp(UGrid); // 2 (mu)x1(nu) - left_2= Grid::QCD::PeriodicBC::CovShiftForward(U[mu],mu,U[mu]); // Umu(x) Umu(x+mu) + left_2= Grid::PeriodicBC::CovShiftForward(U[mu],mu,U[mu]); // Umu(x) Umu(x+mu) tmp=Grid::Cshift(U[nu],mu,2); // Unu(x+2mu) - upper_l= Grid::QCD::PeriodicBC::CovShiftForward(tmp,nu,Grid::adj(left_2)); // Unu(x+2mu) Umu^dag(x+mu+nu) Umu^dag(x+nu) + upper_l= Grid::PeriodicBC::CovShiftForward(tmp,nu,Grid::adj(left_2)); // Unu(x+2mu) Umu^dag(x+mu+nu) Umu^dag(x+nu) // __ __ // = | @@ -546,9 +546,9 @@ double calc_grid_r_dir(Grid::QCD::LatticeGaugeField & Umu) // _ // | | // | | - Grid::QCD::LatticeColourMatrix up2= Grid::QCD::PeriodicBC::CovShiftForward(U[nu],nu,U[nu]); + Grid::LatticeColourMatrix up2= Grid::PeriodicBC::CovShiftForward(U[nu],nu,U[nu]); - upper_l= Grid::QCD::PeriodicBC::CovShiftForward(Grid::Cshift(up2,mu,1),nu,Grid::Cshift(adj(U[mu]),nu,1)); + upper_l= Grid::PeriodicBC::CovShiftForward(Grid::Cshift(up2,mu,1),nu,Grid::Cshift(adj(U[mu]),nu,1)); ds_U= upper_l*Grid::adj(up2); RectPlaq_d = Grid::trace(U[mu]*ds_U); @@ -569,7 +569,7 @@ double calc_grid_r_dir(Grid::QCD::LatticeGaugeField & Umu) downer_l= | (x)<----V */ - down_l= Grid::adj(Grid::QCD::PeriodicBC::CovShiftForward(U[mu],mu,up2)); //downer_l + down_l= Grid::adj(Grid::PeriodicBC::CovShiftForward(U[mu],mu,up2)); //downer_l /* ^ | down_staple = | V @@ -601,23 +601,23 @@ double calc_grid_r_dir(Grid::QCD::LatticeGaugeField & Umu) } }} - Grid::QCD::PlaqPlusRectangleActionR Wilson(0.0,c1); // Just take beta = 0.0 + Grid::PlaqPlusRectangleActionR Wilson(0.0,c1); // Just take beta = 0.0 return Wilson.S(Umu); }; -void check_grid_r_staple(Grid::QCD::LatticeGaugeField & Umu) +void check_grid_r_staple(Grid::LatticeGaugeField & Umu) { std::vector seeds4({1,2,3,4}); Grid::GridCartesian * UGrid = (Grid::GridCartesian *) Umu.Grid(); - Grid::QCD::PlaqPlusRectangleActionR Wilson(0.0,c1); // Just take beta = 0.0 + Grid::PlaqPlusRectangleActionR Wilson(0.0,c1); // Just take beta = 0.0 - Grid::QCD::LatticeColourMatrix staple(UGrid); - Grid::QCD::LatticeColourMatrix link(UGrid); - Grid::QCD::LatticeComplex Traced(UGrid); + Grid::LatticeColourMatrix staple(UGrid); + Grid::LatticeColourMatrix link(UGrid); + Grid::LatticeComplex Traced(UGrid); Grid::Complex Rplaq(0.0); for(int mu=0;mu(Umu,mu); + link = Grid::PeekIndex(Umu,mu); Traced = Grid::trace( link*staple) * RectScale; - Grid::QCD::TComplex Tp = Grid::sum(Traced); + Grid::TComplex Tp = Grid::sum(Traced); Grid::Complex p = Grid::TensorRemove(Tp); std::cout<< "Rect from RectStaple "< seeds4({1,2,3,4}); Grid::GridCartesian * UGrid = (Grid::GridCartesian *) Umu.Grid(); - Grid::QCD::PlaqPlusRectangleActionR Wilson(1.0,0.0); // Just take c1 = 0.0 + Grid::PlaqPlusRectangleActionR Wilson(1.0,0.0); // Just take c1 = 0.0 - Grid::QCD::LatticeColourMatrix staple(UGrid); - Grid::QCD::LatticeColourMatrix link(UGrid); - Grid::QCD::LatticeComplex Traced(UGrid); + Grid::LatticeColourMatrix staple(UGrid); + Grid::LatticeColourMatrix link(UGrid); + Grid::LatticeComplex Traced(UGrid); Grid::Complex plaq(0.0); for(int mu=0;mu(Umu,mu); + link = Grid::PeekIndex(Umu,mu); Traced = Grid::trace( link*staple) * Scale; - Grid::QCD::TComplex Tp = Grid::sum(Traced); + Grid::TComplex Tp = Grid::sum(Traced); Grid::Complex p = Grid::TensorRemove(Tp); std::cout<< "Plaq from PlaqStaple "< #include @@ -71,10 +71,10 @@ public: typedef LatticeFermion T4; typedef multi1d T5; - static void ImportGauge(Grid::QCD::LatticeGaugeField & gr, + static void ImportGauge(Grid::LatticeGaugeField & gr, QDP::multi1d & ch) { - Grid::QCD::LorentzColourMatrix LCM; + Grid::LorentzColourMatrix LCM; Grid::Complex cc; QDP::ColorMatrix cm; QDP::Complex c; @@ -112,10 +112,10 @@ public: }}}} } - static void ImportFermion(Grid::QCD::LatticeFermion & gr, + static void ImportFermion(Grid::LatticeFermion & gr, QDP::multi1d & ch ) { - Grid::QCD::SpinColourVector F; + Grid::SpinColourVector F; Grid::Complex c; QDP::Fermion cF; @@ -154,10 +154,10 @@ public: QDP::pokeSite(ch[s],cF,cx); }}}}} } - static void ExportFermion(Grid::QCD::LatticeFermion & gr, + static void ExportFermion(Grid::LatticeFermion & gr, QDP::multi1d & ch ) { - Grid::QCD::SpinColourVector F; + Grid::SpinColourVector F; Grid::Complex c; QDP::Fermion cF; @@ -384,9 +384,9 @@ int main (int argc,char **argv ) * Setup Grid *********************************************************/ Grid::Grid_init(&argc,&argv); - Grid::GridCartesian * UGrid = Grid::QCD::SpaceTimeGrid::makeFourDimGrid(Grid::GridDefaultLatt(), - Grid::GridDefaultSimd(Grid::QCD::Nd,Grid::vComplex::Nsimd()), - Grid::GridDefaultMpi()); + Grid::GridCartesian * UGrid = Grid::SpaceTimeGrid::makeFourDimGrid(Grid::GridDefaultLatt(), + Grid::GridDefaultSimd(Grid::Nd,Grid::vComplex::Nsimd()), + Grid::GridDefaultMpi()); std::vector gd = UGrid->GlobalDimensions(); QDP::multi1d nrow(QDP::Nd); @@ -395,11 +395,11 @@ int main (int argc,char **argv ) QDP::Layout::setLattSize(nrow); QDP::Layout::create(); - Grid::GridCartesian * FGrid = Grid::QCD::SpaceTimeGrid::makeFiveDimGrid(Ls,UGrid); - Grid::QCD::LatticeGaugeField lat(UGrid); - Grid::QCD::LatticeFermion src(FGrid); - Grid::QCD::LatticeFermion res_chroma(FGrid); - Grid::QCD::LatticeFermion res_grid (FGrid); + Grid::GridCartesian * FGrid = Grid::SpaceTimeGrid::makeFiveDimGrid(Ls,UGrid); + Grid::LatticeGaugeField lat(UGrid); + Grid::LatticeFermion src(FGrid); + Grid::LatticeFermion res_chroma(FGrid); + Grid::LatticeFermion res_grid (FGrid); std::vector ActionList({ HtCayleyTanh, // Plain old DWF. @@ -446,7 +446,7 @@ int main (int argc,char **argv ) Chroma::finalize(); } -void calc_chroma(ChromaAction action,Grid::QCD::LatticeGaugeField & lat, Grid::QCD::LatticeFermion &src, Grid::QCD::LatticeFermion &res,int dag) +void calc_chroma(ChromaAction action,Grid::LatticeGaugeField & lat, Grid::LatticeFermion &src, Grid::LatticeFermion &res,int dag) { QDP::multi1d u(4); @@ -483,7 +483,7 @@ void calc_chroma(ChromaAction action,Grid::QCD::LatticeGaugeField & lat, Grid::Q -void calc_grid(ChromaAction action,Grid::QCD::LatticeGaugeField & Umu, Grid::QCD::LatticeFermion &src, Grid::QCD::LatticeFermion &res,int dag) +void calc_grid(ChromaAction action,Grid::LatticeGaugeField & Umu, Grid::LatticeFermion &src, Grid::LatticeFermion &res,int dag) { using namespace Grid; ; @@ -493,8 +493,8 @@ void calc_grid(ChromaAction action,Grid::QCD::LatticeGaugeField & Umu, Grid::QCD Grid::GridCartesian * UGrid = (Grid::GridCartesian *) Umu.Grid(); Grid::GridCartesian * FGrid = (Grid::GridCartesian *) src.Grid(); - Grid::GridRedBlackCartesian * UrbGrid = Grid::QCD::SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid); - Grid::GridRedBlackCartesian * FrbGrid = Grid::QCD::SpaceTimeGrid::makeFiveDimRedBlackGrid(Ls,UGrid); + Grid::GridRedBlackCartesian * UrbGrid = Grid::SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid); + Grid::GridRedBlackCartesian * FrbGrid = Grid::SpaceTimeGrid::makeFiveDimRedBlackGrid(Ls,UGrid); Grid::GridParallelRNG RNG4(UGrid); RNG4.SeedFixedIntegers(seeds4); Grid::GridParallelRNG RNG5(FGrid); RNG5.SeedFixedIntegers(seeds5); @@ -502,12 +502,12 @@ void calc_grid(ChromaAction action,Grid::QCD::LatticeGaugeField & Umu, Grid::QCD Grid::gaussian(RNG5,src); Grid::gaussian(RNG5,res); - Grid::QCD::SU3::HotConfiguration(RNG4,Umu); + Grid::SU3::HotConfiguration(RNG4,Umu); /* - Grid::QCD::LatticeColourMatrix U(UGrid); + Grid::LatticeColourMatrix U(UGrid); U=Grid::zero; - for(int nn=0;nn=4 ) { Grid::PokeIndex(Umu,U,nn); } @@ -519,7 +519,7 @@ void calc_grid(ChromaAction action,Grid::QCD::LatticeGaugeField & Umu, Grid::QCD if ( action == HtCayleyTanh ) { - Grid::QCD::DomainWallFermionR Ddwf(Umu,*FGrid,*FrbGrid,*UGrid,*UrbGrid,_mass,_M5); + Grid::DomainWallFermionR Ddwf(Umu,*FGrid,*FrbGrid,*UGrid,*UrbGrid,_mass,_M5); std::cout << Grid::GridLogMessage <<" Calling domain wall multiply "< double mq=0.1; -typedef Grid::QCD::StaggeredImplR::FermionField FermionField; -typedef Grid::QCD::LatticeGaugeField GaugeField; +typedef Grid::StaggeredImplR::FermionField FermionField; +typedef Grid::LatticeGaugeField GaugeField; void make_gauge (GaugeField & lat, FermionField &src); void calc_grid (GaugeField & lat, GaugeField & uthin,GaugeField & ufat, FermionField &src, FermionField &res,int dag); @@ -53,7 +53,7 @@ public: static void ImportGauge(GaugeField & gr, QDP::multi1d & ch) { - Grid::QCD::LorentzColourMatrix LCM; + Grid::LorentzColourMatrix LCM; Grid::Complex cc; QDP::ColorMatrix cm; QDP::Complex c; @@ -88,7 +88,7 @@ public: static void ExportGauge(GaugeField & gr, QDP::multi1d & ch) { - Grid::QCD::LorentzColourMatrix LCM; + Grid::LorentzColourMatrix LCM; Grid::Complex cc; QDP::ColorMatrix cm; QDP::Complex c; @@ -124,7 +124,7 @@ public: static void ImportFermion(FermionField & gr, QDP::LatticeStaggeredFermion & ch ) { - Grid::QCD::ColourVector F; + Grid::ColourVector F; Grid::Complex c; @@ -157,7 +157,7 @@ public: static void ExportFermion(FermionField & gr, QDP::LatticeStaggeredFermion & ch ) { - Grid::QCD::ColourVector F; + Grid::ColourVector F; Grid::Complex c; std::vector x(5); @@ -222,9 +222,9 @@ int main (int argc,char **argv ) * Setup Grid *********************************************************/ Grid::Grid_init(&argc,&argv); - Grid::GridCartesian * UGrid = Grid::QCD::SpaceTimeGrid::makeFourDimGrid(Grid::GridDefaultLatt(), - Grid::GridDefaultSimd(Grid::QCD::Nd,Grid::vComplex::Nsimd()), - Grid::GridDefaultMpi()); + Grid::GridCartesian * UGrid = Grid::SpaceTimeGrid::makeFourDimGrid(Grid::GridDefaultLatt(), + Grid::GridDefaultSimd(Grid::Nd,Grid::vComplex::Nsimd()), + Grid::GridDefaultMpi()); std::vector gd = UGrid->GlobalDimensions(); QDP::multi1d nrow(QDP::Nd); @@ -333,7 +333,7 @@ void make_gauge(GaugeField & Umu,FermionField &src) Grid::GridCartesian * UGrid = (Grid::GridCartesian *) Umu.Grid(); Grid::GridParallelRNG RNG4(UGrid); RNG4.SeedFixedIntegers(seeds4); - Grid::QCD::SU3::HotConfiguration(RNG4,Umu); + Grid::SU3::HotConfiguration(RNG4,Umu); Grid::gaussian(RNG4,src); } @@ -343,9 +343,9 @@ void calc_grid(GaugeField & Uthin, GaugeField & Utriple, GaugeField & Ufat, Ferm ; Grid::GridCartesian * UGrid = (Grid::GridCartesian *) Uthin.Grid(); - Grid::GridRedBlackCartesian * UrbGrid = Grid::QCD::SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid); + Grid::GridRedBlackCartesian * UrbGrid = Grid::SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid); - Grid::QCD::ImprovedStaggeredFermionR Dstag(Uthin,Utriple,Ufat,*UGrid,*UrbGrid,mq*2.0); + Grid::ImprovedStaggeredFermionR Dstag(Uthin,Utriple,Ufat,*UGrid,*UrbGrid,mq*2.0); std::cout << Grid::GridLogMessage <<" Calling Grid staggered multiply "< &ch) { - Grid::QCD::LorentzColourMatrix LCM; + Grid::LorentzColourMatrix LCM; Grid::Complex cc; QDP::ColorMatrix cm; QDP::Complex c; @@ -101,7 +101,7 @@ public: static void ExportGauge(GaugeField &gr, QDP::multi1d &ch) { - Grid::QCD::LorentzColourMatrix LCM; + Grid::LorentzColourMatrix LCM; Grid::Complex cc; QDP::ColorMatrix cm; QDP::Complex c; @@ -145,10 +145,10 @@ public: } // Specific for Wilson Fermions - static void ImportFermion(Grid::QCD::LatticeFermion &gr, + static void ImportFermion(Grid::LatticeFermion &gr, QDP::LatticeFermion &ch) { - Grid::QCD::SpinColourVector F; + Grid::SpinColourVector F; Grid::Complex c; QDP::Fermion cF; @@ -195,10 +195,10 @@ public: } // Specific for 4d Wilson fermions - static void ExportFermion(Grid::QCD::LatticeFermion &gr, + static void ExportFermion(Grid::LatticeFermion &gr, QDP::LatticeFermion &ch) { - Grid::QCD::SpinColourVector F; + Grid::SpinColourVector F; Grid::Complex c; QDP::Fermion cF; @@ -342,19 +342,18 @@ void calc_chroma(ChromaAction action, GaugeField &lat, FermionField &src, Fermio void make_gauge(GaugeField &Umu, FermionField &src) { using namespace Grid; - using namespace Grid::QCD; std::vector seeds4({1, 2, 3, 4}); Grid::GridCartesian *UGrid = (Grid::GridCartesian *)Umu._grid; Grid::GridParallelRNG RNG4(UGrid); RNG4.SeedFixedIntegers(seeds4); - Grid::QCD::SU3::HotConfiguration(RNG4, Umu); + Grid::SU3::HotConfiguration(RNG4, Umu); // Fermion field Grid::gaussian(RNG4, src); /* - Grid::QCD::SpinColourVector F; + Grid::SpinColourVector F; Grid::Complex c; @@ -391,13 +390,12 @@ void make_gauge(GaugeField &Umu, FermionField &src) */ } -void calc_grid(ChromaAction action, Grid::QCD::LatticeGaugeField &Umu, Grid::QCD::LatticeFermion &src, Grid::QCD::LatticeFermion &res, int dag) +void calc_grid(ChromaAction action, Grid::LatticeGaugeField &Umu, Grid::LatticeFermion &src, Grid::LatticeFermion &res, int dag) { using namespace Grid; - using namespace Grid::QCD; Grid::GridCartesian *UGrid = (Grid::GridCartesian *)Umu._grid; - Grid::GridRedBlackCartesian *UrbGrid = Grid::QCD::SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid); + Grid::GridRedBlackCartesian *UrbGrid = Grid::SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid); Grid::RealD _mass = mq; @@ -409,7 +407,7 @@ void calc_grid(ChromaAction action, Grid::QCD::LatticeGaugeField &Umu, Grid::QCD anis.xi_0 = 2.0; anis.nu = 1.0; WilsonImplParams iParam; - Grid::QCD::WilsonFermionR Wf(Umu, *UGrid, *UrbGrid, _mass, iParam, anis); + Grid::WilsonFermionR Wf(Umu, *UGrid, *UrbGrid, _mass, iParam, anis); std::cout << Grid::GridLogMessage << " Calling Grid Wilson Fermion multiply " << std::endl; @@ -430,7 +428,7 @@ void calc_grid(ChromaAction action, Grid::QCD::LatticeGaugeField &Umu, Grid::QCD anis.xi_0 = 2.0; anis.nu = 1.0; WilsonImplParams CloverImplParam; - Grid::QCD::WilsonCloverFermionR Wf(Umu, *UGrid, *UrbGrid, _mass, _csw_r, _csw_t, anis, CloverImplParam); + Grid::WilsonCloverFermionR Wf(Umu, *UGrid, *UrbGrid, _mass, _csw_r, _csw_t, anis, CloverImplParam); Wf.ImportGauge(Umu); std::cout << Grid::GridLogMessage << " Calling Grid Wilson Clover Fermion multiply " << std::endl; @@ -458,9 +456,9 @@ int main(int argc, char **argv) * Setup Grid *********************************************************/ Grid::Grid_init(&argc, &argv); - Grid::GridCartesian *UGrid = Grid::QCD::SpaceTimeGrid::makeFourDimGrid(Grid::GridDefaultLatt(), - Grid::GridDefaultSimd(Grid::QCD::Nd, Grid::vComplex::Nsimd()), - Grid::GridDefaultMpi()); + Grid::GridCartesian *UGrid = Grid::SpaceTimeGrid::makeFourDimGrid(Grid::GridDefaultLatt(), + Grid::GridDefaultSimd(Grid::Nd, Grid::vComplex::Nsimd()), + Grid::GridDefaultMpi()); std::vector gd = UGrid->GlobalDimensions(); QDP::multi1d nrow(QDP::Nd); diff --git a/tests/smearing/Test_smearing.cc b/tests/smearing/Test_smearing.cc index efc336c7..c1c7c457 100644 --- a/tests/smearing/Test_smearing.cc +++ b/tests/smearing/Test_smearing.cc @@ -30,8 +30,6 @@ Author: Peter Boyle using namespace std; using namespace Grid; -using namespace Grid::QCD; - int main (int argc, char ** argv) { diff --git a/tests/solver/Test_wilsonclover_mg_lime.cc b/tests/solver/Test_wilsonclover_mg_lime.cc index 687ec83f..bd2990d4 100644 --- a/tests/solver/Test_wilsonclover_mg_lime.cc +++ b/tests/solver/Test_wilsonclover_mg_lime.cc @@ -32,7 +32,6 @@ using namespace std; using namespace Grid; -using namespace Grid::QCD; int main(int argc, char **argv) {