diff --git a/Grid/qcd/action/fermion/Fermion.h b/Grid/qcd/action/fermion/Fermion.h index 59fc17d5..b988b306 100644 --- a/Grid/qcd/action/fermion/Fermion.h +++ b/Grid/qcd/action/fermion/Fermion.h @@ -115,6 +115,11 @@ typedef WilsonFermion WilsonFermionR; typedef WilsonFermion WilsonFermionF; typedef WilsonFermion WilsonFermionD; + +typedef WilsonFermion SpWilsonFermionR; +typedef WilsonFermion SpWilsonFermionF; +typedef WilsonFermion SpWilsonFermionD; + //typedef WilsonFermion WilsonFermionRL; //typedef WilsonFermion WilsonFermionFH; //typedef WilsonFermion WilsonFermionDF; diff --git a/Grid/qcd/action/fermion/WilsonFermion.h b/Grid/qcd/action/fermion/WilsonFermion.h index bf8926d0..4a2d1ddd 100644 --- a/Grid/qcd/action/fermion/WilsonFermion.h +++ b/Grid/qcd/action/fermion/WilsonFermion.h @@ -208,5 +208,7 @@ public: typedef WilsonFermion WilsonFermionF; typedef WilsonFermion WilsonFermionD; +//typedef WilsonFermion SpWilsonFermionF; +//typedef WilsonFermion SpWilsonFermionD; NAMESPACE_END(Grid); diff --git a/Grid/qcd/action/fermion/WilsonImpl.h b/Grid/qcd/action/fermion/WilsonImpl.h index 2685796d..01545d3b 100644 --- a/Grid/qcd/action/fermion/WilsonImpl.h +++ b/Grid/qcd/action/fermion/WilsonImpl.h @@ -267,6 +267,16 @@ typedef WilsonImpl W typedef WilsonImpl WilsonTwoIndexAntiSymmetricImplF; // Float typedef WilsonImpl WilsonTwoIndexAntiSymmetricImplD; // Double +//sp 2n + +typedef WilsonImpl SpWilsonImplR; // Real.. whichever prec +typedef WilsonImpl SpWilsonImplF; // Float +typedef WilsonImpl SpWilsonImplD; // Double + +//typedef WilsonImpl SpZWilsonImplR; // Real.. whichever prec +//typedef WilsonImpl SpZWilsonImplF; // Float +//typedef WilsonImpl SpZWilsonImplD; // Double + NAMESPACE_END(Grid); diff --git a/Grid/qcd/action/gauge/Gauge.h b/Grid/qcd/action/gauge/Gauge.h index b3b34eba..535f0845 100644 --- a/Grid/qcd/action/gauge/Gauge.h +++ b/Grid/qcd/action/gauge/Gauge.h @@ -39,6 +39,9 @@ NAMESPACE_BEGIN(Grid); typedef WilsonGaugeAction WilsonGaugeActionR; typedef WilsonGaugeAction WilsonGaugeActionF; typedef WilsonGaugeAction WilsonGaugeActionD; +typedef WilsonGaugeAction SymplWilsonGaugeActionR; +typedef WilsonGaugeAction SymplWilsonGaugeActionF; +typedef WilsonGaugeAction SymplWilsonGaugeActionD; typedef PlaqPlusRectangleAction PlaqPlusRectangleActionR; typedef PlaqPlusRectangleAction PlaqPlusRectangleActionF; typedef PlaqPlusRectangleAction PlaqPlusRectangleActionD; diff --git a/Grid/qcd/action/gauge/GaugeImplTypes.h b/Grid/qcd/action/gauge/GaugeImplTypes.h index 5c9405ab..64e32a7e 100644 --- a/Grid/qcd/action/gauge/GaugeImplTypes.h +++ b/Grid/qcd/action/gauge/GaugeImplTypes.h @@ -61,7 +61,8 @@ NAMESPACE_BEGIN(Grid); typedef typename Impl::Field Field; // hardcodes the exponential approximation in the template -template class GaugeImplTypes { +//template class GaugeImplTypes { +template class GaugeImplTypes { public: typedef S Simd; typedef typename Simd::scalar_type scalar_type; @@ -70,6 +71,7 @@ public: template using iImplGaugeLink = iScalar > >; template using iImplGaugeField = iVector >, Nd>; + typedef iImplScalar SiteComplex; typedef iImplGaugeLink SiteLink; typedef iImplGaugeField SiteField; @@ -119,8 +121,19 @@ public: // LinkField Pmu(P.Grid()); Pmu = Zero(); - for (int mu = 0; mu < Nd; mu++) { - Group::GaussianFundamentalLieAlgebraMatrix(pRNG, Pmu); + + for (int mu = 0; mu < Nd; mu++) + { + if (isSp2n == true) + { + const int nSp = Nrepresentation/2; + Sp::GaussianFundamentalLieAlgebraMatrix(pRNG, Pmu); + } else + { + + Group::GaussianFundamentalLieAlgebraMatrix(pRNG, Pmu); + } + RealD scale = ::sqrt(HMC_MOMENTUM_DENOMINATOR) ; Pmu = Pmu*scale; PokeIndex(P, Pmu, mu); @@ -137,14 +150,21 @@ public: autoView(P_v,P,AcceleratorRead); accelerator_for(ss, P.Grid()->oSites(),1,{ for (int mu = 0; mu < Nd; mu++) { - U_v[ss](mu) = ProjectOnGroup(Exponentiate(P_v[ss](mu), ep, Nexp) * U_v[ss](mu)); + if (isSp2n == true) + { + U_v[ss](mu) = ProjectOnSpGroup(Exponentiate(P_v[ss](mu), ep, Nexp) * U_v[ss](mu)); + } else + { + U_v[ss](mu) = ProjectOnGroup(Exponentiate(P_v[ss](mu), ep, Nexp) * U_v[ss](mu)); + } + } }); //auto end = std::chrono::high_resolution_clock::now(); // diff += end - start; // std::cout << "Time to exponentiate matrix " << diff.count() << " s\n"; } - + static inline RealD FieldSquareNorm(Field& U){ LatticeComplex Hloc(U.Grid()); Hloc = Zero(); @@ -156,21 +176,42 @@ public: return Hsum.real(); } - static inline void Project(Field &U) { - ProjectSUn(U); + static inline void Project(Field &U) + { + if (isSp2n == true) + { + ProjectSp2n(U); + } else + { + ProjectSUn(U); + } } - static inline void HotConfiguration(GridParallelRNG &pRNG, Field &U) { - Group::HotConfiguration(pRNG, U); + + + static inline void HotConfiguration(GridParallelRNG &pRNG, Field &U) + { + Group::HotConfiguration(pRNG, U); } static inline void TepidConfiguration(GridParallelRNG &pRNG, Field &U) { Group::TepidConfiguration(pRNG, U); } - static inline void ColdConfiguration(GridParallelRNG &pRNG, Field &U) { - Group::ColdConfiguration(pRNG, U); + + static inline void ColdConfiguration(GridParallelRNG &pRNG, Field &U) + { + if (isSp2n == true) + { + const int nSp = Nrepresentation/2; + Sp::ColdConfiguration(pRNG, U); + } else + { + Group::ColdConfiguration(pRNG, U); + } + } + }; @@ -178,9 +219,15 @@ typedef GaugeImplTypes GimplTypesR; typedef GaugeImplTypes GimplTypesF; typedef GaugeImplTypes GimplTypesD; -typedef GaugeImplTypes::AdjointDimension> GimplAdjointTypesR; -typedef GaugeImplTypes::AdjointDimension> GimplAdjointTypesF; -typedef GaugeImplTypes::AdjointDimension> GimplAdjointTypesD; +typedef GaugeImplTypes SymplGimplTypesR; +typedef GaugeImplTypes SymplGimplTypesF; +typedef GaugeImplTypes SymplGimplTypesD; + +typedef GaugeImplTypes GimplAdjointTypesR; +typedef GaugeImplTypes GimplAdjointTypesF; +typedef GaugeImplTypes GimplAdjointTypesD; + + NAMESPACE_END(Grid); diff --git a/Grid/qcd/action/gauge/GaugeImplementations.h b/Grid/qcd/action/gauge/GaugeImplementations.h index 16147c77..bc056263 100644 --- a/Grid/qcd/action/gauge/GaugeImplementations.h +++ b/Grid/qcd/action/gauge/GaugeImplementations.h @@ -155,6 +155,11 @@ typedef ConjugateGaugeImpl ConjugateGimplR; // Real.. whichever pre typedef ConjugateGaugeImpl ConjugateGimplF; // Float typedef ConjugateGaugeImpl ConjugateGimplD; // Double +typedef PeriodicGaugeImpl SymplPeriodicGimplR; // Real.. whichever prec +typedef PeriodicGaugeImpl SymplPeriodicGimplF; // Float +typedef PeriodicGaugeImpl SymplPeriodicGimplD; // Double + + NAMESPACE_END(Grid); #endif diff --git a/Grid/qcd/representations/Representations.h b/Grid/qcd/representations/Representations.h index 22311be0..d408b22a 100644 --- a/Grid/qcd/representations/Representations.h +++ b/Grid/qcd/representations/Representations.h @@ -4,6 +4,7 @@ #include #include #include +#include #include #endif diff --git a/Grid/qcd/representations/spfundamental.h b/Grid/qcd/representations/spfundamental.h new file mode 100644 index 00000000..bab9a005 --- /dev/null +++ b/Grid/qcd/representations/spfundamental.h @@ -0,0 +1,42 @@ + + +#ifndef SPFUNDAMENTAL_H +#define SPFUNDAMENTAL_H + +NAMESPACE_BEGIN(Grid); + +/* + * This is an helper class for the HMC + * Empty since HMC updates already the fundamental representation + */ + +template +class SpFundamentalRep { +public: + static const int Dimension = ncolour; + static const int nSp = ncolour/2; + static const bool isFundamental = true; + + // typdef to be used by the Representations class in HMC to get the + // types for the higher representation fields + typedef typename Sp::LatticeMatrix LatticeMatrix; + typedef LatticeGaugeField LatticeField; + + explicit SpFundamentalRep(GridBase* grid) {} //do nothing + void update_representation(const LatticeGaugeField& Uin) {} // do nothing + + LatticeField RtoFundamentalProject(const LatticeField& in, Real scale = 1.0) const{ + return (scale * in); + } + +}; + + + + + +typedef SpFundamentalRep SpFundamentalRepresentation; + +NAMESPACE_END(Grid); + +#endif diff --git a/Grid/qcd/utils/Sp2n.h b/Grid/qcd/utils/Sp2n.h index c8960383..51976146 100644 --- a/Grid/qcd/utils/Sp2n.h +++ b/Grid/qcd/utils/Sp2n.h @@ -6,6 +6,13 @@ NAMESPACE_BEGIN(Grid); // Sp(2N) // ncolour = N + +// need to be careful with n and 2n +// I am defining the Sp class for Sp(2n) to be such that the template variable ncolour +// is n inside 2n and the typedef at the end of the file should eliminate possible confusion. + +// the other routines, like projectOnSp2n, N will be the dimension of the actual number of colors for consistency with the sun routines + template class Sp { public: @@ -22,11 +29,31 @@ public: using iSp2nAlgebraVector = iScalar > >; typedef iSp2nMatrix Matrix; + typedef iSp2nMatrix MatrixF; + typedef iSp2nMatrix MatrixD; typedef iSp2nMatrix vMatrix; + typedef iSp2nMatrix vMatrixF; + typedef iSp2nMatrix vMatrixD; + typedef iSp2nAlgebraVector AlgebraVector; + typedef iSp2nAlgebraVector AlgebraVectorF; + typedef iSp2nAlgebraVector AlgebraVectorD; + + typedef iSp2nAlgebraVector vAlgebraVector; + typedef iSp2nAlgebraVector vAlgebraVectorF; + typedef iSp2nAlgebraVector vAlgebraVectorD; typedef Lattice LatticeMatrix; + typedef Lattice LatticeMatrixF; + typedef Lattice LatticeMatrixD; + + typedef Lattice LatticeAlgebraVector; + typedef Lattice LatticeAlgebraVectorF; + typedef Lattice LatticeAlgebraVectorD; + + + // Sp(2N) has N(2N+1) = 2N^2+N generators // // normalise the generators such that @@ -322,75 +349,113 @@ public: } } + +/* template + static void HotSpConfiguration(GridParallelRNG &pRNG, GaugeField &out) { + typedef typename GaugeField::vector_type vector_type; + typedef iSp2nMatrix vMatrixType; + typedef Lattice LatticeMatrixType; + + LatticeMatrixType Umu(out.Grid()); + for (int mu = 0; mu < Nd; mu++) { + LieRandomize(pRNG, Umu, 1.0); //def + PokeIndex(out, Umu, mu); + } + } + template + static void TepidSpConfiguration(GridParallelRNG &pRNG,GaugeField &out){ + typedef typename GaugeField::vector_type vector_type; + typedef iSp2nMatrix vMatrixType; + typedef Lattice LatticeMatrixType; + + LatticeMatrixType Umu(out.Grid()); + for(int mu=0;mu(out,Umu,mu); + } + } */ + + template + static void ColdConfiguration(GaugeField &out){ + typedef typename GaugeField::vector_type vector_type; + typedef iSp2nMatrix vMatrixType; + typedef Lattice LatticeMatrixType; + + LatticeMatrixType Umu(out.Grid()); + Umu=1.0; + for(int mu=0;mu(out,Umu,mu); + } + } + template + static void ColdConfiguration(GridParallelRNG &pRNG,GaugeField &out){ + ColdConfiguration(out); + } + }; // end of class Sp + +template //same of su + LatticeComplexD SpDeterminant(const Lattice > > > &Umu) + { + GridBase *grid=Umu.Grid(); + auto lvol = grid->lSites(); + LatticeComplexD ret(grid); + + autoView(Umu_v,Umu,CpuRead); + autoView(ret_v,ret,CpuWrite); + thread_for(site,lvol,{ + Eigen::MatrixXcd EigenU = Eigen::MatrixXcd::Zero(N,N); + Coordinate lcoor; + grid->LocalIndexToLocalCoor(site, lcoor); + iScalar > > Us; + peekLocalSite(Us, Umu_v, lcoor); + for(int i=0;i + static void ProjectSp2n(Lattice > > > &Umu) + { + Umu = ProjectOnSpGroup(Umu); + auto det = SpDeterminant(Umu); // ok ? + + det = conjugate(det); + + for(int i=0;i(Umu,N-1,i); + element = element * det; + PokeIndex(Umu,element,Nc-1,i); + } + } + template + static void ProjectSp2n(Lattice >,Nd> > &U) + { + GridBase *grid=U.Grid(); + for(int mu=0;mu(U,mu); + Umu = ProjectOnSpGroup(Umu); + ProjectSp2n(Umu); + PokeIndex(U,Umu,mu); + } + } + +typedef Sp<1> Sp2; typedef Sp<2> Sp4; typedef Sp<3> Sp6; typedef Sp<4> Sp8; NAMESPACE_END(Grid); #endif - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -/* } - sigxy = lieIndex & 0x1; // 1 if odd, 0 if even - su2Index = lieIndex >> 1 ; // where to put the sigma_x(y) - //for the even(odd) lieindex, sigmax(y) - if (sigxy) - //put sigmay at su2index - else - //put sigmax */ diff --git a/tests/core/test_sp2n_lie_gen.cc b/tests/core/test_sp2n_lie_gen.cc index 5dbba9d3..6c3766e6 100644 --- a/tests/core/test_sp2n_lie_gen.cc +++ b/tests/core/test_sp2n_lie_gen.cc @@ -2,7 +2,7 @@ #include -#include +#include using namespace Grid; @@ -13,6 +13,15 @@ int main(int argc, char** argv) { //GridCartesian* grid = SpaceTimeGrid::makeFourDimGrid( //latt, GridDefaultSimd(Nd, vComplex::Nsimd()), GridDefaultMpi()); //GridRedBlackCartesian* rbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(grid); + + std::cout << GridLogMessage << "*********************************************" + << std::endl; + std::cout << GridLogMessage << "* Generators for Sp(2)" << std::endl; + std::cout << GridLogMessage << "*********************************************" + << std::endl; + + Sp2::printGenerators(); + Sp2::testGenerators(); std::cout << GridLogMessage << "*********************************************" << std::endl;