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;
|
|
|
|
|
|
|
|
int main (int argc, char ** argv)
|
|
|
|
{
|
|
|
|
Grid_init(&argc,&argv);
|
|
|
|
|
2018-02-24 22:19:28 +00:00
|
|
|
Coordinate latt_size = GridDefaultLatt();
|
|
|
|
Coordinate simd_layout = GridDefaultSimd(Nd,vComplex::Nsimd());
|
|
|
|
Coordinate mpi_layout = GridDefaultMpi();
|
2015-07-26 02:54:38 +01:00
|
|
|
|
|
|
|
GridCartesian Grid(latt_size,simd_layout,mpi_layout);
|
2017-06-22 08:14:34 +01:00
|
|
|
GridRedBlackCartesian RBGrid(&Grid);
|
2015-07-26 02:54:38 +01:00
|
|
|
|
|
|
|
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-10-26 18:23:55 +01:00
|
|
|
std::vector<int> vrand(4);
|
|
|
|
std::srand(std::time(0));
|
|
|
|
std::generate(vrand.begin(), vrand.end(), std::rand);
|
|
|
|
std::cout << GridLogMessage << vrand << std::endl;
|
|
|
|
pRNG.SeedFixedIntegers(vrand);
|
|
|
|
//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);
|
2020-10-07 18:07:00 +01:00
|
|
|
SU<Nc>::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;
|
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
|
2020-10-07 18:07:00 +01:00
|
|
|
SU<Nc>::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
|
2020-06-05 23:52:35 +01:00
|
|
|
autoView( U_v , U, CpuRead);
|
|
|
|
autoView( mom_v, mom, CpuRead);
|
|
|
|
autoView(Uprime_v, Uprime, CpuWrite);
|
2019-06-15 12:53:27 +01:00
|
|
|
thread_foreach( i,mom_v,{
|
2018-03-04 16:40:11 +00:00
|
|
|
Uprime_v[i](mu) = U_v[i](mu);
|
|
|
|
Uprime_v[i](mu) += mom_v[i](mu)*U_v[i](mu)*dt ;
|
|
|
|
Uprime_v[i](mu) += mom_v[i](mu) *mom_v[i](mu) *U_v[i](mu)*(dt*dt/2.0);
|
|
|
|
Uprime_v[i](mu) += mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *U_v[i](mu)*(dt*dt*dt/6.0);
|
|
|
|
Uprime_v[i](mu) += mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *U_v[i](mu)*(dt*dt*dt*dt/24.0);
|
|
|
|
Uprime_v[i](mu) += mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *U_v[i](mu)*(dt*dt*dt*dt*dt/120.0);
|
|
|
|
Uprime_v[i](mu) += mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *U_v[i](mu)*(dt*dt*dt*dt*dt*dt/720.0);
|
2018-01-28 01:00:55 +00:00
|
|
|
});
|
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;
|
|
|
|
}
|
|
|
|
|
2018-01-27 23:46:02 +00:00
|
|
|
LatticeComplex dS(&Grid); dS = Zero();
|
|
|
|
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;
|
|
|
|
|
2019-02-24 15:23:20 +00:00
|
|
|
// Smom = - P^2 ;
|
|
|
|
// dSmom = trace ( (mom+f/2dt)(mom+f/2dt) ) - trace mom*mom
|
|
|
|
// = trace(mom*f) dt + 0.25*dt*dt * trace(f*f).
|
|
|
|
//
|
|
|
|
// can we improve on this in HMC???
|
|
|
|
//
|
|
|
|
//
|
2015-07-29 09:53:39 +01:00
|
|
|
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
|
|
|
|
2017-05-30 23:37:02 +01:00
|
|
|
ComplexD dSpred = sum(dS);
|
|
|
|
ComplexD dSm = sum(dSmom);
|
|
|
|
ComplexD dSm2 = sum(dSmom2);
|
2015-07-29 09:53:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|