From a976fa6746f463cdf85836df7c1fe834e3b6645a Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Tue, 5 Oct 2021 14:19:47 +0100 Subject: [PATCH] expose gauge group in GImpl and generic Nc fix --- Grid/qcd/action/gauge/GaugeImplTypes.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Grid/qcd/action/gauge/GaugeImplTypes.h b/Grid/qcd/action/gauge/GaugeImplTypes.h index 2499e0e9..5c9405ab 100644 --- a/Grid/qcd/action/gauge/GaugeImplTypes.h +++ b/Grid/qcd/action/gauge/GaugeImplTypes.h @@ -78,6 +78,8 @@ public: typedef Lattice LinkField; typedef Lattice Field; + typedef SU Group; + // Guido: we can probably separate the types from the HMC functions // this will create 2 kind of implementations // probably confusing the users @@ -118,7 +120,7 @@ public: LinkField Pmu(P.Grid()); Pmu = Zero(); for (int mu = 0; mu < Nd; mu++) { - SU::GaussianFundamentalLieAlgebraMatrix(pRNG, Pmu); + Group::GaussianFundamentalLieAlgebraMatrix(pRNG, Pmu); RealD scale = ::sqrt(HMC_MOMENTUM_DENOMINATOR) ; Pmu = Pmu*scale; PokeIndex(P, Pmu, mu); @@ -159,15 +161,15 @@ public: } static inline void HotConfiguration(GridParallelRNG &pRNG, Field &U) { - SU::HotConfiguration(pRNG, U); + Group::HotConfiguration(pRNG, U); } static inline void TepidConfiguration(GridParallelRNG &pRNG, Field &U) { - SU::TepidConfiguration(pRNG, U); + Group::TepidConfiguration(pRNG, U); } static inline void ColdConfiguration(GridParallelRNG &pRNG, Field &U) { - SU::ColdConfiguration(pRNG, U); + Group::ColdConfiguration(pRNG, U); } };