diff --git a/lib/lattice/Lattice_overload.h b/lib/lattice/Lattice_overload.h index 0906b610..cb909128 100644 --- a/lib/lattice/Lattice_overload.h +++ b/lib/lattice/Lattice_overload.h @@ -1,4 +1,4 @@ - /************************************************************************************* +/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid @@ -23,116 +23,116 @@ Author: Peter Boyle 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 */ +*************************************************************************************/ +/* END LEGAL */ #ifndef GRID_LATTICE_OVERLOAD_H #define GRID_LATTICE_OVERLOAD_H -namespace Grid { +NAMESPACE_BEGIN(Grid); - ////////////////////////////////////////////////////////////////////////////////////////////////////// - // unary negation - ////////////////////////////////////////////////////////////////////////////////////////////////////// - template - inline Lattice operator -(const Lattice &r) - { - Lattice ret(r._grid); - parallel_for(int ss=0;ssoSites();ss++){ - vstream(ret._odata[ss], -r._odata[ss]); - } - return ret; - } - ///////////////////////////////////////////////////////////////////////////////////// - // Lattice BinOp Lattice, - //NB mult performs conformable check. Do not reapply here for performance. - ///////////////////////////////////////////////////////////////////////////////////// - template - inline auto operator * (const Lattice &lhs,const Lattice &rhs)-> Lattice - { - Lattice ret(rhs._grid); - mult(ret,lhs,rhs); - return ret; +////////////////////////////////////////////////////////////////////////////////////////////////////// +// unary negation +////////////////////////////////////////////////////////////////////////////////////////////////////// +template +inline Lattice operator -(const Lattice &r) +{ + Lattice ret(r._grid); + parallel_for(int ss=0;ssoSites();ss++){ + vstream(ret._odata[ss], -r._odata[ss]); } - template - inline auto operator + (const Lattice &lhs,const Lattice &rhs)-> Lattice - { - Lattice ret(rhs._grid); - add(ret,lhs,rhs); - return ret; - } - template - inline auto operator - (const Lattice &lhs,const Lattice &rhs)-> Lattice - { - Lattice ret(rhs._grid); - sub(ret,lhs,rhs); - return ret; - } - - // Scalar BinOp Lattice ;generate return type - template - inline auto operator * (const left &lhs,const Lattice &rhs) -> Lattice - { - Lattice ret(rhs._grid); - parallel_for(int ss=0;ssoSites(); ss++){ - decltype(lhs*rhs._odata[0]) tmp=lhs*rhs._odata[ss]; - vstream(ret._odata[ss],tmp); - // ret._odata[ss]=lhs*rhs._odata[ss]; - } - return ret; - } - template - inline auto operator + (const left &lhs,const Lattice &rhs) -> Lattice - { - Lattice ret(rhs._grid); - parallel_for(int ss=0;ssoSites(); ss++){ - decltype(lhs+rhs._odata[0]) tmp =lhs-rhs._odata[ss]; - vstream(ret._odata[ss],tmp); - // ret._odata[ss]=lhs+rhs._odata[ss]; - } - return ret; - } - template - inline auto operator - (const left &lhs,const Lattice &rhs) -> Lattice - { - Lattice ret(rhs._grid); - parallel_for(int ss=0;ssoSites(); ss++){ - decltype(lhs-rhs._odata[0]) tmp=lhs-rhs._odata[ss]; - vstream(ret._odata[ss],tmp); - } - return ret; - } - template - inline auto operator * (const Lattice &lhs,const right &rhs) -> Lattice - { - Lattice ret(lhs._grid); - parallel_for(int ss=0;ssoSites(); ss++){ - decltype(lhs._odata[0]*rhs) tmp =lhs._odata[ss]*rhs; - vstream(ret._odata[ss],tmp); - // ret._odata[ss]=lhs._odata[ss]*rhs; - } - return ret; - } - template - inline auto operator + (const Lattice &lhs,const right &rhs) -> Lattice - { - Lattice ret(lhs._grid); - parallel_for(int ss=0;ssoSites(); ss++){ - decltype(lhs._odata[0]+rhs) tmp=lhs._odata[ss]+rhs; - vstream(ret._odata[ss],tmp); - // ret._odata[ss]=lhs._odata[ss]+rhs; - } - return ret; - } - template - inline auto operator - (const Lattice &lhs,const right &rhs) -> Lattice - { - Lattice ret(lhs._grid); - parallel_for(int ss=0;ssoSites(); ss++){ - decltype(lhs._odata[0]-rhs) tmp=lhs._odata[ss]-rhs; - vstream(ret._odata[ss],tmp); - // ret._odata[ss]=lhs._odata[ss]-rhs; - } - return ret; - } + return ret; +} +///////////////////////////////////////////////////////////////////////////////////// +// Lattice BinOp Lattice, +//NB mult performs conformable check. Do not reapply here for performance. +///////////////////////////////////////////////////////////////////////////////////// +template +inline auto operator * (const Lattice &lhs,const Lattice &rhs)-> Lattice +{ + Lattice ret(rhs._grid); + mult(ret,lhs,rhs); + return ret; } +template +inline auto operator + (const Lattice &lhs,const Lattice &rhs)-> Lattice +{ + Lattice ret(rhs._grid); + add(ret,lhs,rhs); + return ret; +} +template +inline auto operator - (const Lattice &lhs,const Lattice &rhs)-> Lattice +{ + Lattice ret(rhs._grid); + sub(ret,lhs,rhs); + return ret; +} + +// Scalar BinOp Lattice ;generate return type +template +inline auto operator * (const left &lhs,const Lattice &rhs) -> Lattice +{ + Lattice ret(rhs._grid); + parallel_for(int ss=0;ssoSites(); ss++){ + decltype(lhs*rhs._odata[0]) tmp=lhs*rhs._odata[ss]; + vstream(ret._odata[ss],tmp); + // ret._odata[ss]=lhs*rhs._odata[ss]; + } + return ret; +} +template +inline auto operator + (const left &lhs,const Lattice &rhs) -> Lattice +{ + Lattice ret(rhs._grid); + parallel_for(int ss=0;ssoSites(); ss++){ + decltype(lhs+rhs._odata[0]) tmp =lhs-rhs._odata[ss]; + vstream(ret._odata[ss],tmp); + // ret._odata[ss]=lhs+rhs._odata[ss]; + } + return ret; +} +template +inline auto operator - (const left &lhs,const Lattice &rhs) -> Lattice +{ + Lattice ret(rhs._grid); + parallel_for(int ss=0;ssoSites(); ss++){ + decltype(lhs-rhs._odata[0]) tmp=lhs-rhs._odata[ss]; + vstream(ret._odata[ss],tmp); + } + return ret; +} +template +inline auto operator * (const Lattice &lhs,const right &rhs) -> Lattice +{ + Lattice ret(lhs._grid); + parallel_for(int ss=0;ssoSites(); ss++){ + decltype(lhs._odata[0]*rhs) tmp =lhs._odata[ss]*rhs; + vstream(ret._odata[ss],tmp); + // ret._odata[ss]=lhs._odata[ss]*rhs; + } + return ret; +} +template +inline auto operator + (const Lattice &lhs,const right &rhs) -> Lattice +{ + Lattice ret(lhs._grid); + parallel_for(int ss=0;ssoSites(); ss++){ + decltype(lhs._odata[0]+rhs) tmp=lhs._odata[ss]+rhs; + vstream(ret._odata[ss],tmp); + // ret._odata[ss]=lhs._odata[ss]+rhs; + } + return ret; +} +template +inline auto operator - (const Lattice &lhs,const right &rhs) -> Lattice +{ + Lattice ret(lhs._grid); + parallel_for(int ss=0;ssoSites(); ss++){ + decltype(lhs._odata[0]-rhs) tmp=lhs._odata[ss]-rhs; + vstream(ret._odata[ss],tmp); + // ret._odata[ss]=lhs._odata[ss]-rhs; + } + return ret; +} +NAMESPACE_END(Grid); #endif