2016-01-02 14:51:32 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./tests/Test_wilson_force.cc
|
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
|
|
|
|
Author: Peter Boyle <paboyle@ph.ed.ac.uk>
|
|
|
|
|
|
|
|
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 */
|
2016-07-07 22:31:07 +01:00
|
|
|
#include <Grid/Grid.h>
|
2015-07-26 02:54:38 +01:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Grid;
|
|
|
|
using namespace Grid::QCD;
|
|
|
|
|
2017-02-21 10:24:27 +00:00
|
|
|
|
2015-07-26 02:54:38 +01:00
|
|
|
|
|
|
|
int main (int argc, char ** argv)
|
|
|
|
{
|
|
|
|
Grid_init(&argc,&argv);
|
|
|
|
|
|
|
|
std::vector<int> latt_size = GridDefaultLatt();
|
|
|
|
std::vector<int> simd_layout = GridDefaultSimd(Nd,vComplex::Nsimd());
|
|
|
|
std::vector<int> 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<<GridLogMessage << "Grid is setup to use "<<threads<<" threads"<<std::endl;
|
|
|
|
|
|
|
|
std::vector<int> seeds({1,2,3,4});
|
|
|
|
|
|
|
|
GridParallelRNG pRNG(&Grid);
|
2017-04-01 16:29:40 +01:00
|
|
|
pRNG.SeedFixedIntegers(std::vector<int>({45,12,81,9}));
|
2015-07-26 02:54:38 +01:00
|
|
|
|
|
|
|
LatticeFermion phi (&Grid); gaussian(pRNG,phi);
|
|
|
|
LatticeFermion Mphi (&Grid);
|
|
|
|
LatticeFermion MphiPrime (&Grid);
|
|
|
|
|
|
|
|
LatticeGaugeField U(&Grid);
|
|
|
|
|
2016-08-30 11:31:25 +01:00
|
|
|
//SU2::HotConfiguration(pRNG,U);
|
|
|
|
SU3::ColdConfiguration(pRNG,U);
|
2015-07-26 02:54:38 +01:00
|
|
|
|
|
|
|
////////////////////////////////////
|
|
|
|
// Unmodified matrix element
|
|
|
|
////////////////////////////////////
|
|
|
|
RealD mass=-4.0; //kills the diagonal term
|
2015-08-10 20:47:44 +01:00
|
|
|
WilsonFermionR Dw (U, Grid,RBGrid,mass);
|
2015-07-26 02:54:38 +01:00
|
|
|
Dw.M (phi,Mphi);
|
|
|
|
|
|
|
|
ComplexD S = innerProduct(Mphi,Mphi); // pdag MdagM p
|
|
|
|
|
|
|
|
// get the deriv of phidag MdagM phi with respect to "U"
|
|
|
|
LatticeGaugeField UdSdU(&Grid);
|
|
|
|
LatticeGaugeField tmp(&Grid);
|
|
|
|
|
|
|
|
Dw.MDeriv(tmp , Mphi, phi,DaggerNo ); UdSdU=tmp;
|
2015-07-29 09:53:39 +01:00
|
|
|
Dw.MDeriv(tmp , phi, Mphi,DaggerYes ); UdSdU=(UdSdU+tmp);
|
2017-05-06 00:46:31 +01:00
|
|
|
|
2016-07-12 13:36:10 +01:00
|
|
|
// Take the trace
|
|
|
|
UdSdU = Ta(UdSdU);
|
2015-07-29 09:53:39 +01:00
|
|
|
|
2015-07-26 02:54:38 +01:00
|
|
|
LatticeFermion Ftmp (&Grid);
|
|
|
|
|
|
|
|
////////////////////////////////////
|
|
|
|
// Modify the gauge field a little
|
|
|
|
////////////////////////////////////
|
2015-07-29 09:53:39 +01:00
|
|
|
RealD dt = 0.0001;
|
|
|
|
RealD Hmom = 0.0;
|
|
|
|
RealD Hmomprime = 0.0;
|
|
|
|
RealD Hmompp = 0.0;
|
2015-07-26 02:54:38 +01:00
|
|
|
LatticeColourMatrix mommu(&Grid);
|
2015-07-29 09:53:39 +01:00
|
|
|
LatticeColourMatrix forcemu(&Grid);
|
2015-07-26 02:54:38 +01:00
|
|
|
LatticeGaugeField mom(&Grid);
|
|
|
|
LatticeGaugeField Uprime(&Grid);
|
|
|
|
|
|
|
|
for(int mu=0;mu<Nd;mu++){
|
|
|
|
|
2017-05-06 00:46:31 +01:00
|
|
|
// Traceless antihermitian momentum; gaussian in lie alg
|
|
|
|
SU3::GaussianFundamentalLieAlgebraMatrix(pRNG, mommu);
|
2015-07-26 02:54:38 +01:00
|
|
|
|
2015-07-29 09:53:39 +01:00
|
|
|
Hmom -= real(sum(trace(mommu*mommu)));
|
|
|
|
|
2015-07-26 02:54:38 +01:00
|
|
|
PokeIndex<LorentzIndex>(mom,mommu,mu);
|
2015-07-29 09:53:39 +01:00
|
|
|
|
|
|
|
// fourth order exponential approx
|
2016-11-03 11:40:26 +00:00
|
|
|
parallel_for(auto i=mom.begin();i<mom.end();i++) {
|
|
|
|
Uprime[i](mu) = U[i](mu);
|
|
|
|
Uprime[i](mu) += mom[i](mu)*U[i](mu)*dt ;
|
|
|
|
Uprime[i](mu) += mom[i](mu) *mom[i](mu) *U[i](mu)*(dt*dt/2.0);
|
|
|
|
Uprime[i](mu) += mom[i](mu) *mom[i](mu) *mom[i](mu) *U[i](mu)*(dt*dt*dt/6.0);
|
|
|
|
Uprime[i](mu) += mom[i](mu) *mom[i](mu) *mom[i](mu) *mom[i](mu) *U[i](mu)*(dt*dt*dt*dt/24.0);
|
|
|
|
Uprime[i](mu) += mom[i](mu) *mom[i](mu) *mom[i](mu) *mom[i](mu) *mom[i](mu) *U[i](mu)*(dt*dt*dt*dt*dt/120.0);
|
|
|
|
Uprime[i](mu) += mom[i](mu) *mom[i](mu) *mom[i](mu) *mom[i](mu) *mom[i](mu) *mom[i](mu) *U[i](mu)*(dt*dt*dt*dt*dt*dt/720.0);
|
2015-07-26 02:54:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-07-29 09:53:39 +01:00
|
|
|
std::cout << GridLogMessage <<"Initial mom hamiltonian is "<< Hmom <<std::endl;
|
2015-08-10 20:47:44 +01:00
|
|
|
Dw.ImportGauge(Uprime);
|
2015-07-26 02:54:38 +01:00
|
|
|
Dw.M (phi,MphiPrime);
|
|
|
|
|
|
|
|
ComplexD Sprime = innerProduct(MphiPrime ,MphiPrime);
|
|
|
|
|
|
|
|
//////////////////////////////////////////////
|
|
|
|
// Use derivative to estimate dS
|
|
|
|
//////////////////////////////////////////////
|
2015-07-29 09:53:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
for(int mu=0;mu<Nd;mu++){
|
|
|
|
std::cout << "" <<std::endl;
|
|
|
|
mommu = PeekIndex<LorentzIndex>(mom,mu);
|
|
|
|
std::cout << GridLogMessage<< " Mommu " << norm2(mommu)<<std::endl;
|
|
|
|
mommu = mommu+adj(mommu);
|
|
|
|
std::cout << GridLogMessage<< " Mommu + Mommudag " << norm2(mommu)<<std::endl;
|
|
|
|
mommu = PeekIndex<LorentzIndex>(UdSdU,mu);
|
|
|
|
std::cout << GridLogMessage<< " dsdumu " << norm2(mommu)<<std::endl;
|
|
|
|
mommu = mommu+adj(mommu);
|
|
|
|
std::cout << GridLogMessage<< " dsdumu + dag " << norm2(mommu)<<std::endl;
|
|
|
|
}
|
|
|
|
|
2015-07-26 02:54:38 +01:00
|
|
|
LatticeComplex dS(&Grid); dS = zero;
|
2015-07-29 09:53:39 +01:00
|
|
|
LatticeComplex dSmom(&Grid); dSmom = zero;
|
|
|
|
LatticeComplex dSmom2(&Grid); dSmom2 = zero;
|
2016-08-30 11:31:25 +01:00
|
|
|
|
2015-07-29 09:53:39 +01:00
|
|
|
for(int mu=0;mu<Nd;mu++){
|
|
|
|
mommu = PeekIndex<LorentzIndex>(UdSdU,mu);
|
|
|
|
mommu=Ta(mommu)*2.0;
|
|
|
|
PokeIndex<LorentzIndex>(UdSdU,mommu,mu);
|
|
|
|
}
|
2016-08-30 11:31:25 +01:00
|
|
|
|
2015-07-29 09:53:39 +01:00
|
|
|
|
|
|
|
for(int mu=0;mu<Nd;mu++){
|
|
|
|
mommu = PeekIndex<LorentzIndex>(mom,mu);
|
|
|
|
std::cout << GridLogMessage<< " Mommu " << norm2(mommu)<<std::endl;
|
|
|
|
mommu = mommu+adj(mommu);
|
|
|
|
std::cout << GridLogMessage<< " Mommu + Mommudag " << norm2(mommu)<<std::endl;
|
|
|
|
mommu = PeekIndex<LorentzIndex>(UdSdU,mu);
|
|
|
|
std::cout << GridLogMessage<< " dsdumu " << norm2(mommu)<<std::endl;
|
|
|
|
mommu = mommu+adj(mommu);
|
|
|
|
std::cout << GridLogMessage<< " dsdumu + dag " << norm2(mommu)<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int mu=0;mu<Nd;mu++){
|
|
|
|
forcemu = PeekIndex<LorentzIndex>(UdSdU,mu);
|
|
|
|
mommu = PeekIndex<LorentzIndex>(mom,mu);
|
|
|
|
|
|
|
|
// Update PF action density
|
|
|
|
dS = dS+trace(mommu*forcemu)*dt;
|
|
|
|
|
|
|
|
dSmom = dSmom - trace(mommu*forcemu) * dt;
|
|
|
|
dSmom2 = dSmom2 - trace(forcemu*forcemu) *(0.25* dt*dt);
|
|
|
|
|
|
|
|
// Update mom action density
|
2016-08-30 11:31:25 +01:00
|
|
|
mommu = mommu + forcemu*(dt * 0.5);
|
2015-07-29 09:53:39 +01:00
|
|
|
|
|
|
|
Hmomprime -= real(sum(trace(mommu*mommu)));
|
2015-07-26 02:54:38 +01:00
|
|
|
|
|
|
|
}
|
2015-07-29 09:53:39 +01:00
|
|
|
|
2015-07-26 02:54:38 +01:00
|
|
|
Complex dSpred = sum(dS);
|
2015-07-29 09:53:39 +01:00
|
|
|
Complex dSm = sum(dSmom);
|
|
|
|
Complex dSm2 = sum(dSmom2);
|
|
|
|
|
|
|
|
|
|
|
|
std::cout << GridLogMessage <<"Initial mom hamiltonian is "<< Hmom <<std::endl;
|
|
|
|
std::cout << GridLogMessage <<"Final mom hamiltonian is "<< Hmomprime <<std::endl;
|
|
|
|
std::cout << GridLogMessage <<"Delta mom hamiltonian is "<< Hmomprime-Hmom <<std::endl;
|
2015-07-26 02:54:38 +01:00
|
|
|
|
|
|
|
std::cout << GridLogMessage << " S "<<S<<std::endl;
|
|
|
|
std::cout << GridLogMessage << " Sprime "<<Sprime<<std::endl;
|
|
|
|
std::cout << GridLogMessage << "dS "<<Sprime-S<<std::endl;
|
|
|
|
std::cout << GridLogMessage << "predict dS "<< dSpred <<std::endl;
|
2015-07-29 09:53:39 +01:00
|
|
|
std::cout << GridLogMessage <<"dSm "<< dSm<<std::endl;
|
|
|
|
std::cout << GridLogMessage <<"dSm2"<< dSm2<<std::endl;
|
|
|
|
|
|
|
|
std::cout << GridLogMessage << "Total dS "<< Hmomprime - Hmom + Sprime - S <<std::endl;
|
|
|
|
|
2017-05-08 20:06:41 +01:00
|
|
|
assert( fabs(real(Sprime-S-dSpred)) < 1.0 ) ;
|
2015-07-26 02:54:38 +01:00
|
|
|
|
|
|
|
std::cout<< GridLogMessage << "Done" <<std::endl;
|
|
|
|
Grid_finalize();
|
|
|
|
}
|