diff --git a/lib/qcd/spin/Dirac.h b/lib/qcd/spin/Dirac.h index b36ba67c..d03e0939 100644 --- a/lib/qcd/spin/Dirac.h +++ b/lib/qcd/spin/Dirac.h @@ -40,7 +40,7 @@ See the full license in the file "LICENSE" in the top level distribution directo NAMESPACE_BEGIN(Grid); // Dirac algebra adjoint operator (not in to overload other adj) -inline Gamma adj(const Gamma &g) +accelerator_inline Gamma adj(const Gamma &g) { return Gamma (Gamma::adj[g.g]); } @@ -48,14 +48,14 @@ inline Gamma adj(const Gamma &g) // Dirac algebra mutliplication operator -inline Gamma operator*(const Gamma &g1, const Gamma &g2) +accelerator_inline Gamma operator*(const Gamma &g1, const Gamma &g2) { return Gamma (Gamma::mul[g1.g][g2.g]); } // general left multiply template -inline auto operator*(const Gamma &G, const iScalar &arg) +accelerator_inline auto operator*(const Gamma &G, const iScalar &arg) ->typename std::enable_if,SpinorIndex>::notvalue,iScalar>::type { iScalar ret; @@ -64,7 +64,7 @@ inline auto operator*(const Gamma &G, const iScalar &arg) } template -inline auto operator*(const Gamma &G, const iVector &arg) +accelerator_inline auto operator*(const Gamma &G, const iVector &arg) ->typename std::enable_if,SpinorIndex>::notvalue,iVector>::type { iVector ret; @@ -75,7 +75,7 @@ inline auto operator*(const Gamma &G, const iVector &arg) } template -inline auto operator*(const Gamma &G, const iMatrix &arg) +accelerator_inline auto operator*(const Gamma &G, const iMatrix &arg) ->typename std::enable_if,SpinorIndex>::notvalue,iMatrix>::type { iMatrix ret; @@ -88,7 +88,7 @@ inline auto operator*(const Gamma &G, const iMatrix &arg) // general right multiply template -inline auto operator*(const iScalar &arg, const Gamma &G) +accelerator_inline auto operator*(const iScalar &arg, const Gamma &G) ->typename std::enable_if,SpinorIndex>::notvalue,iScalar>::type { iScalar ret; @@ -97,7 +97,7 @@ inline auto operator*(const iScalar &arg, const Gamma &G) } template -inline auto operator * (const iMatrix &arg, const Gamma &G) +accelerator_inline auto operator * (const iMatrix &arg, const Gamma &G) ->typename std::enable_if,SpinorIndex>::notvalue,iMatrix>::type { iMatrix ret; @@ -122,7 +122,7 @@ public: // vector multiply template -inline auto operator*(const GammaL &gl, const iVector &arg) +accelerator_inline auto operator*(const GammaL &gl, const iVector &arg) ->typename std::enable_if, SpinorIndex>::value, iVector>::type { iVector buf; @@ -137,7 +137,7 @@ inline auto operator*(const GammaL &gl, const iVector &arg) // matrix left multiply template -inline auto operator*(const GammaL &gl, const iMatrix &arg) +accelerator_inline auto operator*(const GammaL &gl, const iMatrix &arg) ->typename std::enable_if, SpinorIndex>::value, iMatrix>::type { iMatrix buf; @@ -155,7 +155,7 @@ inline auto operator*(const GammaL &gl, const iMatrix &arg) // matrix right multiply template -inline auto operator*(const iMatrix &arg, const GammaL &gl) +accelerator_inline auto operator*(const iMatrix &arg, const GammaL &gl) ->typename std::enable_if, SpinorIndex>::value, iMatrix>::type { iMatrix buf; @@ -174,7 +174,7 @@ inline auto operator*(const iMatrix &arg, const GammaL &gl) //general left multiply template -inline auto operator*(const GammaL &gl, const iScalar &arg) +accelerator_inline auto operator*(const GammaL &gl, const iScalar &arg) ->typename std::enable_if,SpinorIndex>::notvalue,iScalar>::type { iScalar ret; @@ -183,7 +183,7 @@ inline auto operator*(const GammaL &gl, const iScalar &arg) } template -inline auto operator*(const GammaL &gl, const iVector &arg) +accelerator_inline auto operator*(const GammaL &gl, const iVector &arg) ->typename std::enable_if,SpinorIndex>::notvalue,iVector>::type { iVector ret; @@ -194,7 +194,7 @@ inline auto operator*(const GammaL &gl, const iVector &arg) } template -inline auto operator*(const GammaL &gl, const iMatrix &arg) +accelerator_inline auto operator*(const GammaL &gl, const iMatrix &arg) ->typename std::enable_if,SpinorIndex>::notvalue,iMatrix>::type { iMatrix ret; @@ -207,7 +207,7 @@ inline auto operator*(const GammaL &gl, const iMatrix &arg) //general right multiply template -inline auto operator*(const iScalar &arg, const GammaL &gl) +accelerator_inline auto operator*(const iScalar &arg, const GammaL &gl) ->typename std::enable_if,SpinorIndex>::notvalue,iScalar>::type { iScalar ret; @@ -216,7 +216,7 @@ inline auto operator*(const iScalar &arg, const GammaL &gl) } template -inline auto operator * (const iMatrix &arg, const GammaL &gl) +accelerator_inline auto operator * (const iMatrix &arg, const GammaL &gl) ->typename std::enable_if,SpinorIndex>::notvalue,iMatrix>::type { iMatrix ret;