mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
59 lines
1.7 KiB
C++
59 lines
1.7 KiB
C++
|
#include "Grid.h"
|
||
|
|
||
|
|
||
|
using namespace std;
|
||
|
using namespace Grid;
|
||
|
using namespace Grid::QCD;
|
||
|
|
||
|
int main (int argc, char ** argv)
|
||
|
{
|
||
|
Grid_init(&argc,&argv);
|
||
|
|
||
|
std::vector<int> latt_size = GridDefaultLatt();
|
||
|
std::vector<int> simd_layout = GridDefaultSimd(4,vComplex::Nsimd());
|
||
|
std::vector<int> mpi_layout = GridDefaultMpi();
|
||
|
|
||
|
GridCartesian Fine(latt_size,simd_layout,mpi_layout);
|
||
|
GridRedBlackCartesian RBFine(latt_size,simd_layout,mpi_layout);
|
||
|
GridParallelRNG pRNG(&Fine);
|
||
|
pRNG.SeedRandomDevice();
|
||
|
LatticeLorentzColourMatrix U(&Fine);
|
||
|
|
||
|
SU3::HotConfiguration(pRNG, U);
|
||
|
|
||
|
// simplify template declaration? Strip the lorentz from the second template
|
||
|
WilsonGaugeAction<LatticeLorentzColourMatrix, LatticeColourMatrix> Waction(5.6);
|
||
|
|
||
|
Real mass=-0.77;
|
||
|
WilsonFermion FermOp(U,Fine,RBFine,mass);
|
||
|
|
||
|
ConjugateGradient<LatticeFermion> CG(1.0e-8,10000);
|
||
|
ConjugateGradient<LatticeFermion> CGmd(1.0e-6,10000);
|
||
|
|
||
|
TwoFlavourEvenOddPseudoFermionAction<LatticeLorentzColourMatrix, LatticeColourMatrix,LatticeFermion>
|
||
|
WilsonNf2(FermOp,CG,CG);
|
||
|
|
||
|
//Collect actions
|
||
|
ActionLevel Level1;
|
||
|
Level1.push_back(&WilsonNf2);
|
||
|
ActionLevel Level2(3);
|
||
|
Level2.push_back(&Waction);
|
||
|
ActionSet FullSet;
|
||
|
FullSet.push_back(Level1);
|
||
|
FullSet.push_back(Level2);
|
||
|
|
||
|
// Create integrator
|
||
|
typedef MinimumNorm2 IntegratorAlgorithm;// change here to change the algorithm
|
||
|
// typedef LeapFrog IntegratorAlgorithm;// change here to change the algorithm
|
||
|
IntegratorParameters MDpar(12,20,1.0);
|
||
|
std::vector<int> rel ={1};
|
||
|
Integrator<IntegratorAlgorithm> MDynamics(&Fine,MDpar, FullSet);
|
||
|
|
||
|
// Create HMC
|
||
|
HMCparameters HMCpar;
|
||
|
HybridMonteCarlo<IntegratorAlgorithm> HMC(HMCpar, MDynamics);
|
||
|
|
||
|
HMC.evolve(U);
|
||
|
|
||
|
}
|