From 685eea3d0f9d5d1083c3793863b0487b1144feff Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Tue, 4 Jun 2019 20:58:14 +0100 Subject: [PATCH] Small cosmetic --- Grid/qcd/action/fermion/StaggeredImpl.h | 175 ++++++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 Grid/qcd/action/fermion/StaggeredImpl.h diff --git a/Grid/qcd/action/fermion/StaggeredImpl.h b/Grid/qcd/action/fermion/StaggeredImpl.h new file mode 100644 index 00000000..8adf45a4 --- /dev/null +++ b/Grid/qcd/action/fermion/StaggeredImpl.h @@ -0,0 +1,175 @@ +/************************************************************************************* + +Grid physics library, www.github.com/paboyle/Grid + +Source file: ./lib/qcd/action/fermion/FermionOperatorImpl.h + +Copyright (C) 2015 + +Author: Peter Boyle + +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 */ +#pragma once + +NAMESPACE_BEGIN(Grid); + +template +class StaggeredImpl : public PeriodicGaugeImpl > +{ + +public: + + typedef RealD _Coeff_t ; + static const int Dimension = Representation::Dimension; + static const bool isFundamental = Representation::isFundamental; + static const bool LsVectorised=false; + typedef PeriodicGaugeImpl > Gimpl; + + //Necessary? + constexpr bool is_fundamental() const{return Dimension == Nc ? 1 : 0;} + + typedef _Coeff_t Coeff_t; + + INHERIT_GIMPL_TYPES(Gimpl); + + template using iImplSpinor = iScalar > >; + template using iImplHalfSpinor = iScalar > >; + template using iImplDoubledGaugeField = iVector >, Nds>; + template using iImplPropagator = iScalar > >; + + typedef iImplSpinor SiteSpinor; + typedef iImplHalfSpinor SiteHalfSpinor; + typedef iImplDoubledGaugeField SiteDoubledGaugeField; + typedef iImplPropagator SitePropagator; + + typedef Lattice FermionField; + typedef Lattice DoubledGaugeField; + typedef Lattice PropagatorField; + + typedef StaggeredImplParams ImplParams; + typedef SimpleCompressor Compressor; + typedef CartesianStencil StencilImpl; + typedef typename StencilImpl::View_type StencilView; + + ImplParams Params; + + StaggeredImpl(const ImplParams &p = ImplParams()) : Params(p){}; + + static accelerator_inline void multLink(SiteSpinor &phi, + const SiteDoubledGaugeField &U, + const SiteSpinor &chi, + int mu) + { + mult(&phi(), &U(mu), &chi()); + } + static accelerator_inline void multLinkAdd(SiteSpinor &phi, + const SiteDoubledGaugeField &U, + const SiteSpinor &chi, + int mu) + { + mac(&phi(), &U(mu), &chi()); + } + + template + static accelerator_inline void loadLinkElement(Simd ®, ref &memory) + { + reg = memory; + } + + inline void InsertGaugeField(DoubledGaugeField &U_ds, + const GaugeLinkField &U,int mu) + { + PokeIndex(U_ds, U, mu); + } + inline void DoubleStore(GridBase *GaugeGrid, + DoubledGaugeField &UUUds, // for Naik term + DoubledGaugeField &Uds, + const GaugeField &Uthin, + const GaugeField &Ufat) { + conformable(Uds.Grid(), GaugeGrid); + conformable(Uthin.Grid(), GaugeGrid); + conformable(Ufat.Grid(), GaugeGrid); + GaugeLinkField U(GaugeGrid); + GaugeLinkField UU(GaugeGrid); + GaugeLinkField UUU(GaugeGrid); + GaugeLinkField Udag(GaugeGrid); + GaugeLinkField UUUdag(GaugeGrid); + for (int mu = 0; mu < Nd; mu++) { + + // Staggered Phase. + Lattice > coor(GaugeGrid); + Lattice > x(GaugeGrid); LatticeCoordinate(x,0); + Lattice > y(GaugeGrid); LatticeCoordinate(y,1); + Lattice > z(GaugeGrid); LatticeCoordinate(z,2); + Lattice > t(GaugeGrid); LatticeCoordinate(t,3); + + Lattice > lin_z(GaugeGrid); lin_z=x+y; + Lattice > lin_t(GaugeGrid); lin_t=x+y+z; + + ComplexField phases(GaugeGrid); phases=1.0; + + if ( mu == 1 ) phases = where( mod(x ,2)==(Integer)0, phases,-phases); + if ( mu == 2 ) phases = where( mod(lin_z,2)==(Integer)0, phases,-phases); + if ( mu == 3 ) phases = where( mod(lin_t,2)==(Integer)0, phases,-phases); + + // 1 hop based on fat links + U = PeekIndex(Ufat, mu); + Udag = adj( Cshift(U, mu, -1)); + + U = U *phases; + Udag = Udag *phases; + + InsertGaugeField(Uds,U,mu); + InsertGaugeField(Uds,Udag,mu+4); + // PokeIndex(Uds, U, mu); + // PokeIndex(Uds, Udag, mu + 4); + + // 3 hop based on thin links. Crazy huh ? + U = PeekIndex(Uthin, mu); + UU = Gimpl::CovShiftForward(U,mu,U); + UUU= Gimpl::CovShiftForward(U,mu,UU); + + UUUdag = adj( Cshift(UUU, mu, -3)); + + UUU = UUU *phases; + UUUdag = UUUdag *phases; + + InsertGaugeField(UUUds,UUU,mu); + InsertGaugeField(UUUds,UUUdag,mu+4); + + } + } + + inline void InsertForce4D(GaugeField &mat, FermionField &Btilde, FermionField &A,int mu){ + GaugeLinkField link(mat.Grid()); + link = TraceIndex(outerProduct(Btilde,A)); + PokeIndex(mat,link,mu); + } + + inline void InsertForce5D(GaugeField &mat, FermionField &Btilde, FermionField Ã,int mu){ + assert (0); + // Must never hit + } +}; +typedef StaggeredImpl StaggeredImplR; // Real.. whichever prec +typedef StaggeredImpl StaggeredImplF; // Float +typedef StaggeredImpl StaggeredImplD; // Double + +NAMESPACE_END(Grid);