diff --git a/Grid/qcd/smearing/GaugeConfigurationMasked.h b/Grid/qcd/smearing/GaugeConfigurationMasked.h index 78846263..b3d73c18 100644 --- a/Grid/qcd/smearing/GaugeConfigurationMasked.h +++ b/Grid/qcd/smearing/GaugeConfigurationMasked.h @@ -32,7 +32,9 @@ private: // Smear_Stout *StoutSmearing; // std::vector SmearedSet; + GridRedBlackCartesian * UrbGrid; // keep a copy of the redblack grid for life of object std::vector masks; + std::vector cbs; typedef typename SU3Adjoint::AMatrix AdjMatrix; typedef typename SU3Adjoint::LatticeAdjMatrix AdjMatrixField; @@ -147,6 +149,25 @@ private: } pokeLorentz(Fdet, Fdet_pol, nu); } + + void Compute_MpInvJx_dNxxdSy(int cb, + const GaugeLinkField &PlaqL, + const GaugeLinkField &PlaqR, + AdjMatrixField MpInvJx, + AdjVectorField &Fdet2 ) + { + GaugeLinkField PlaqLeo(UrbGrid); + GaugeLinkField PlaqReo(UrbGrid); + AdjMatrixField MpInvJxeo(UrbGrid); + AdjVectorField Fdet2eo(UrbGrid); + pickCheckerboard(cb,PlaqLeo,PlaqL); + pickCheckerboard(cb,PlaqReo,PlaqR); + pickCheckerboard(cb,MpInvJxeo,MpInvJx); + Fdet2eo.Checkerboard()=cb; + Compute_MpInvJx_dNxxdSy(PlaqLeo,PlaqReo,MpInvJxeo,Fdet2eo); + setCheckerboard(Fdet2,Fdet2eo); + } + void Compute_MpInvJx_dNxxdSy(const GaugeLinkField &PlaqL,const GaugeLinkField &PlaqR, AdjMatrixField MpInvJx,AdjVectorField &Fdet2 ) { GaugeLinkField UtaU(PlaqL.Grid()); @@ -278,8 +299,9 @@ public: //////////////////////////////////////////////////////////////////////////////// // Mask the gauge field //////////////////////////////////////////////////////////////////////////////// + int cb = cbs[smr]; auto mask=PeekIndex(masks[smr],mu); // the cb mask - + Umsk = U; ApplyMask(Umsk,smr); Utmp = peekLorentz(Umsk,mu); @@ -442,7 +464,7 @@ public: AdjMatrixField MpInvJx_nu(grid); MpInvJx = (-1.0)*MpAdInv * JxAd;// rho is on the plaq factor - Compute_MpInvJx_dNxxdSy(PlaqL,PlaqR,MpInvJx,FdetV); + Compute_MpInvJx_dNxxdSy(cb,PlaqL,PlaqR,MpInvJx,FdetV); Fdet2_mu=FdetV; Fdet1_mu=Zero(); @@ -499,7 +521,7 @@ public: time=-usecond(); PlaqR=(-1.0)*PlaqR; - Compute_MpInvJx_dNxxdSy(PlaqL,PlaqR,MpInvJx,FdetV); + Compute_MpInvJx_dNxxdSy(cb,PlaqL,PlaqR,MpInvJx,FdetV); Fdet2_nu = FdetV; time+=usecond(); std::cout << GridLogMessage << "Compute_MpInvJx_dNxxSy (occurs 6x) took "<& Stout) : SmearedConfiguration(_UGrid, Nsmear,Stout) { @@ -939,7 +965,6 @@ public: // was resized in base class assert(this->SmearedSet.size()==Nsmear); - GridRedBlackCartesian * UrbGrid; UrbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(_UGrid); LatticeComplex one(_UGrid); one = ComplexD(1.0,0.0); LatticeComplex tmp(_UGrid); @@ -947,10 +972,11 @@ public: for (unsigned int i = 0; i < this->smearingLevels; ++i) { masks.push_back(*(new LatticeLorentzComplex(_UGrid))); - int mu= (i/2) %Nd; int cb= (i%2); LatticeComplex tmpcb(UrbGrid); + + cbs.push_back(cb); masks[i]=Zero(); //////////////////// @@ -962,7 +988,6 @@ public: PokeIndex(masks[i],tmp, mu); } - delete UrbGrid; } virtual void smeared_force(GaugeField &SigmaTilde)