2016-01-02 14:51:32 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./lib/qcd/action/gauge/GaugeImpl.h
|
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
|
|
|
|
Author: paboyle <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-01-02 13:37:25 +00:00
|
|
|
#ifndef GRID_QCD_GAUGE_IMPL_H
|
|
|
|
#define GRID_QCD_GAUGE_IMPL_H
|
|
|
|
|
|
|
|
namespace Grid {
|
|
|
|
|
|
|
|
namespace QCD {
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// Implementation dependent gauge types
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
template<class Gimpl> class WilsonLoops;
|
|
|
|
|
|
|
|
#define INHERIT_GIMPL_TYPES(GImpl) \
|
|
|
|
typedef typename GImpl::Simd Simd;\
|
|
|
|
typedef typename GImpl::GaugeLinkField GaugeLinkField;\
|
|
|
|
typedef typename GImpl::GaugeField GaugeField;
|
|
|
|
|
2016-01-03 01:38:11 +00:00
|
|
|
//
|
2016-01-02 13:37:25 +00:00
|
|
|
template<class S,int Nrepresentation=Nc>
|
2016-01-03 01:38:11 +00:00
|
|
|
class GaugeImplTypes {
|
2016-01-02 13:37:25 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
typedef S Simd;
|
|
|
|
|
|
|
|
template<typename vtype> using iImplGaugeLink = iScalar<iScalar<iMatrix<vtype, Nrepresentation> > >;
|
|
|
|
template<typename vtype> using iImplGaugeField = iVector<iScalar<iMatrix<vtype, Nrepresentation> >, Nd >;
|
|
|
|
|
|
|
|
typedef iImplGaugeLink <Simd> SiteGaugeLink;
|
|
|
|
typedef iImplGaugeField <Simd> SiteGaugeField;
|
|
|
|
|
|
|
|
typedef Lattice<SiteGaugeLink> GaugeLinkField; // bit ugly naming; polarised gauge field, lorentz... all ugly
|
|
|
|
typedef Lattice<SiteGaugeField> GaugeField;
|
2016-01-03 01:38:11 +00:00
|
|
|
|
2016-02-23 18:16:50 +00:00
|
|
|
// Move this elsewhere?
|
2016-02-24 17:43:59 +00:00
|
|
|
static inline void AddGaugeLink(GaugeField& U, GaugeLinkField& W, int mu){ // U[mu] += W
|
2016-02-23 18:16:50 +00:00
|
|
|
PARALLEL_FOR_LOOP
|
|
|
|
for(auto ss=0;ss<U._grid->oSites();ss++){
|
|
|
|
U._odata[ss]._internal[mu] = U._odata[ss]._internal[mu] + W._odata[ss]._internal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-03 01:38:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Composition with smeared link, bc's etc.. probably need multiple inheritance
|
|
|
|
// Variable precision "S" and variable Nc
|
|
|
|
template<class GimplTypes>
|
|
|
|
class PeriodicGaugeImpl : public GimplTypes {
|
|
|
|
public:
|
|
|
|
|
|
|
|
INHERIT_GIMPL_TYPES(GimplTypes);
|
|
|
|
|
2016-01-02 13:37:25 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Support needed for the assembly of loops including all boundary condition effects such as conjugate bcs
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
template<class covariant> static inline
|
|
|
|
Lattice<covariant> CovShiftForward (const GaugeLinkField &Link, int mu, const Lattice<covariant> &field) {
|
|
|
|
return PeriodicBC::CovShiftForward(Link,mu,field);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class covariant> static inline
|
|
|
|
Lattice<covariant> CovShiftBackward(const GaugeLinkField &Link, int mu,const Lattice<covariant> &field) {
|
|
|
|
return PeriodicBC::CovShiftBackward(Link,mu,field);
|
|
|
|
}
|
|
|
|
static inline
|
|
|
|
GaugeLinkField CovShiftIdentityBackward(const GaugeLinkField &Link, int mu) {
|
|
|
|
return Cshift(adj(Link),mu,-1);
|
|
|
|
}
|
|
|
|
static inline
|
|
|
|
GaugeLinkField CovShiftIdentityForward(const GaugeLinkField &Link, int mu) {
|
|
|
|
return Link;
|
|
|
|
}
|
|
|
|
static inline
|
|
|
|
GaugeLinkField ShiftStaple(const GaugeLinkField &Link, int mu) {
|
|
|
|
return Cshift(Link,mu,1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isPeriodicGaugeField(void) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Composition with smeared link, bc's etc.. probably need multiple inheritance
|
|
|
|
// Variable precision "S" and variable Nc
|
2016-01-03 01:38:11 +00:00
|
|
|
template<class GimplTypes>
|
|
|
|
class ConjugateGaugeImpl : public GimplTypes {
|
2016-01-02 13:37:25 +00:00
|
|
|
public:
|
2016-01-03 01:38:11 +00:00
|
|
|
|
|
|
|
INHERIT_GIMPL_TYPES(GimplTypes);
|
2016-01-02 13:37:25 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Support needed for the assembly of loops including all boundary condition effects such as Gparity.
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
template<class covariant> static
|
|
|
|
Lattice<covariant> CovShiftForward (const GaugeLinkField &Link, int mu, const Lattice<covariant> &field) {
|
2016-01-03 01:38:11 +00:00
|
|
|
return ConjugateBC::CovShiftForward(Link,mu,field);
|
2016-01-02 13:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<class covariant> static
|
|
|
|
Lattice<covariant> CovShiftBackward(const GaugeLinkField &Link, int mu,const Lattice<covariant> &field) {
|
2016-01-03 01:38:11 +00:00
|
|
|
return ConjugateBC::CovShiftBackward(Link,mu,field);
|
2016-01-02 13:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
GaugeLinkField CovShiftIdentityBackward(const GaugeLinkField &Link, int mu) {
|
|
|
|
GridBase *grid = Link._grid;
|
|
|
|
int Lmu = grid->GlobalDimensions()[mu]-1;
|
|
|
|
|
|
|
|
Lattice<iScalar<vInteger> > coor(grid); LatticeCoordinate(coor,mu);
|
|
|
|
|
|
|
|
GaugeLinkField tmp (grid);
|
|
|
|
tmp=adj(Link);
|
|
|
|
tmp = where(coor==Lmu,conjugate(tmp),tmp);
|
|
|
|
return Cshift(tmp,mu,-1);// moves towards positive mu
|
|
|
|
}
|
|
|
|
static inline
|
|
|
|
GaugeLinkField CovShiftIdentityForward(const GaugeLinkField &Link, int mu) {
|
|
|
|
return Link;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
GaugeLinkField ShiftStaple(const GaugeLinkField &Link, int mu) {
|
|
|
|
GridBase *grid = Link._grid;
|
|
|
|
int Lmu = grid->GlobalDimensions()[mu]-1;
|
|
|
|
|
|
|
|
Lattice<iScalar<vInteger> > coor(grid); LatticeCoordinate(coor,mu);
|
|
|
|
|
|
|
|
GaugeLinkField tmp (grid);
|
|
|
|
tmp=Cshift(Link,mu,1);
|
|
|
|
tmp=where(coor==Lmu,conjugate(tmp),tmp);
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isPeriodicGaugeField(void) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-01-03 01:38:11 +00:00
|
|
|
typedef GaugeImplTypes<vComplex,Nc> GimplTypesR;
|
|
|
|
typedef GaugeImplTypes<vComplexF,Nc> GimplTypesF;
|
|
|
|
typedef GaugeImplTypes<vComplexD,Nc> GimplTypesD;
|
2016-01-02 13:37:25 +00:00
|
|
|
|
2016-01-03 01:38:11 +00:00
|
|
|
typedef PeriodicGaugeImpl<GimplTypesR> PeriodicGimplR; // Real.. whichever prec
|
|
|
|
typedef PeriodicGaugeImpl<GimplTypesF> PeriodicGimplF; // Float
|
|
|
|
typedef PeriodicGaugeImpl<GimplTypesD> PeriodicGimplD; // Double
|
2016-01-02 13:37:25 +00:00
|
|
|
|
2016-01-03 01:38:11 +00:00
|
|
|
typedef ConjugateGaugeImpl<GimplTypesR> ConjugateGimplR; // Real.. whichever prec
|
|
|
|
typedef ConjugateGaugeImpl<GimplTypesF> ConjugateGimplF; // Float
|
|
|
|
typedef ConjugateGaugeImpl<GimplTypesD> ConjugateGimplD; // Double
|
2016-01-02 13:37:25 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|