/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: ./tests/Test_wilson_force_phiMphi.cc Copyright (C) 2015 Author: Peter Boyle 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 the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. See the full license in the file "LICENSE" in the top level distribution directory *************************************************************************************/ /* END LEGAL */ #include using namespace std; using namespace Grid; using namespace Grid::QCD; int main (int argc, char ** argv) { Grid_init(&argc,&argv); std::vector latt_size = GridDefaultLatt(); std::vector simd_layout = GridDefaultSimd(Nd,vComplex::Nsimd()); std::vector mpi_layout = GridDefaultMpi(); GridCartesian Grid(latt_size,simd_layout,mpi_layout); GridRedBlackCartesian RBGrid(latt_size,simd_layout,mpi_layout); int threads = GridThread::GetThreads(); std::cout< seeds({1,2,3,4}); GridParallelRNG pRNG(&Grid); pRNG.SeedFixedIntegers(std::vector({45,12,81,9})); LatticeFermion phi (&Grid); gaussian(pRNG,phi); LatticeFermion Mphi (&Grid); LatticeFermion MphiPrime (&Grid); LatticeFermion dMphi (&Grid); LatticeGaugeField U(&Grid); SU3::HotConfiguration(pRNG,U); //////////////////////////////////// // Unmodified matrix element //////////////////////////////////// RealD mass=-4.0; //kills the diagonal term WilsonFermionR Dw (U, Grid,RBGrid,mass); Dw.M(phi,Mphi); ComplexD S = innerProduct(phi,Mphi); // get the deriv LatticeGaugeField UdSdU(&Grid); Dw.MDeriv(UdSdU,phi, phi,DaggerNo ); //////////////////////////////////// // Modify the gauge field a little in one dir //////////////////////////////////// RealD dt = 1.0e-3; Complex Complex_i(0,1); LatticeColourMatrix Umu(&Grid); LatticeColourMatrix Umu_save(&Grid); LatticeColourMatrix dU (&Grid); LatticeColourMatrix mom(&Grid); SU3::GaussianFundamentalLieAlgebraMatrix(pRNG, mom); // Traceless antihermitian momentum; gaussian in lie alg // check mom is as i expect LatticeColourMatrix tmpmom(&Grid); tmpmom = mom+adj(mom); std::cout << GridLogMessage << "mom anti-herm check "<< norm2(tmpmom)<(U,mu); Umu_save=Umu; dU = mom * Umu * dt; Umu= Umu+dU; PokeIndex(Dw.Umu,Umu,mu); Dw.M(phi,MphiPrime); ComplexD Sprime = innerProduct(phi,MphiPrime); std::cout << GridLogMessage << " S "<(Dw.Umu,dU,mu); Dw.M(phi,dMphi); ComplexD deltaS = innerProduct(phi,dMphi); std::cout << GridLogMessage << "deltaS "<(Dw.Umu,Umu_save,mu); Dw.Mdir(phi,dMphi,mu,1); dMphi = dt*mom*dMphi; deltaS = innerProduct(phi,dMphi); std::cout << GridLogMessage << "deltaS from inner prod of mom* M[u] "<