From eda4dd622e6470af3ee260a2d8568f8a2f40e985 Mon Sep 17 00:00:00 2001 From: Guido Cossu Date: Tue, 11 Oct 2016 15:45:20 +0100 Subject: [PATCH] Some more edit --- lib/parallelIO/BinaryIO.h | 2 +- lib/qcd/QCD.h | 87 +++++++++++++++++++++++++++++----- lib/qcd/hmc/GenericHMCrunner.h | 11 +---- lib/tensors/Tensor_outer.h | 3 ++ 4 files changed, 82 insertions(+), 21 deletions(-) diff --git a/lib/parallelIO/BinaryIO.h b/lib/parallelIO/BinaryIO.h index f9a8ae3c..3265ba54 100644 --- a/lib/parallelIO/BinaryIO.h +++ b/lib/parallelIO/BinaryIO.h @@ -505,7 +505,7 @@ class BinaryIO { // available (how short sighted is that?) ////////////////////////////////////////////////////////// Umu = zero; - static uint32_t csum=0; + static uint32_t csum; csum=0;//static for SHMEM fobj fileObj; static sobj siteObj; // Static to place in symmetric region for SHMEM diff --git a/lib/qcd/QCD.h b/lib/qcd/QCD.h index 74107a3e..61313f33 100644 --- a/lib/qcd/QCD.h +++ b/lib/qcd/QCD.h @@ -33,6 +33,71 @@ Author: paboyle #define GRID_QCD_H namespace Grid{ +// First steps in the complete generalization of the Physics part +namespace LatticeTheories { + +template +struct LatticeTheory { + static const int Nd = Dimensions; + static const int Nds = Dimensions * 2; // double stored field + template + using iSinglet = iScalar > >; +}; + +template +struct LatticeGaugeTheory : public LatticeTheory { + static const int Nds = Dimensions * 2; + static const int Nd = Dimensions; + static const int Nc = Colours; + + template + using iColourMatrix = iScalar > >; + template + using iLorentzColourMatrix = iVector >, Nd>; + template + using iDoubleStoredColourMatrix = iVector >, Nds>; + template + using iColourVector = iScalar > >; +}; + +template +struct FermionicLatticeGaugeTheory + : public LatticeGaugeTheory { + static const int Nd = Dimensions; + static const int Nds = Dimensions * 2; + static const int Nc = Colours; + static const int Ns = Spin; + + template + using iSpinMatrix = iScalar, Ns> >; + template + using iSpinColourMatrix = iScalar, Ns> >; + template + using iSpinVector = iScalar, Ns> >; + template + using iSpinColourVector = iScalar, Ns> >; + // These 2 only is Spin is a multiple of 2 + static const int Nhs = Spin / 2; + template + using iHalfSpinVector = iScalar, Nhs> >; + template + using iHalfSpinColourVector = iScalar, Nhs> >; +}; + +struct QCD : public FermionicLatticeGaugeTheory<4, 3, 4> { + typedef FermionicLatticeGaugeTheory FLGT; + typedef FLGT::iSpinMatrix SpinMatrix; + typedef FLGT::iSpinMatrix SpinMatrixF; + typedef FLGT::iSpinMatrix SpinMatrixD; + +}; +struct QED : public FermionicLatticeGaugeTheory<4, 1, 4> {}; + +template +struct Scalar : public LatticeTheory {}; + +} // LatticeTheories + namespace QCD { @@ -355,36 +420,36 @@ namespace QCD { ////////////////////////////////////////////// template void pokeColour(Lattice &lhs, - const Lattice(lhs._odata[0],0))> & rhs, - int i) + const Lattice(lhs._odata[0],0))> & rhs, + int i) { PokeIndex(lhs,rhs,i); } template void pokeColour(Lattice &lhs, - const Lattice(lhs._odata[0],0,0))> & rhs, - int i,int j) + const Lattice(lhs._odata[0],0,0))> & rhs, + int i,int j) { PokeIndex(lhs,rhs,i,j); } template void pokeSpin(Lattice &lhs, - const Lattice(lhs._odata[0],0))> & rhs, - int i) + const Lattice(lhs._odata[0],0))> & rhs, + int i) { PokeIndex(lhs,rhs,i); } template void pokeSpin(Lattice &lhs, - const Lattice(lhs._odata[0],0,0))> & rhs, - int i,int j) + const Lattice(lhs._odata[0],0,0))> & rhs, + int i,int j) { PokeIndex(lhs,rhs,i,j); } template void pokeLorentz(Lattice &lhs, - const Lattice(lhs._odata[0],0))> & rhs, - int i) + const Lattice(lhs._odata[0],0))> & rhs, + int i) { PokeIndex(lhs,rhs,i); } @@ -500,7 +565,7 @@ namespace QCD { #include #include -// Include representations +// Include representations #include #include #include diff --git a/lib/qcd/hmc/GenericHMCrunner.h b/lib/qcd/hmc/GenericHMCrunner.h index 8500cfb4..d627c47b 100644 --- a/lib/qcd/hmc/GenericHMCrunner.h +++ b/lib/qcd/hmc/GenericHMCrunner.h @@ -111,9 +111,11 @@ template > GridParallelRNG pRNG(UGrid); Field U(UGrid); + // This outside std::vector SerSeed({1, 2, 3, 4, 5}); std::vector ParSeed({6, 7, 8, 9, 10}); + // these decisions outside NoSmearing SmearingPolicy; typedef MinimumNorm2, RepresentationsPolicy> @@ -121,15 +123,6 @@ template > IntegratorParameters MDpar(20, 1.0); IntegratorType MDynamics(UGrid, MDpar, TheAction, SmearingPolicy); - // Checkpoint strategy - /* - int SaveInterval = 1; - std::string format = std::string("IEEE64BIG"); - std::string conf_prefix = std::string("ckpoint_lat"); - std::string rng_prefix = std::string("ckpoint_rng"); - IOCheckpointer Checkpoint(conf_prefix, rng_prefix, SaveInterval, format); - */ - HMCparameters HMCpar; HMCpar.StartTrajectory = StartTraj; HMCpar.Trajectories = NumTraj; diff --git a/lib/tensors/Tensor_outer.h b/lib/tensors/Tensor_outer.h index 896fb8ed..6429a190 100644 --- a/lib/tensors/Tensor_outer.h +++ b/lib/tensors/Tensor_outer.h @@ -44,6 +44,8 @@ auto outerProduct (const iVector& lhs,const iVector& rhs) -> iMatrix inline auto outerProduct (const iScalar& lhs,const iScalar& rhs) -> iScalar { @@ -53,6 +55,7 @@ auto outerProduct (const iScalar& lhs,const iScalar& rhs) -> iScalar