From 06ab7f5661c117fbb45f8c2719ac6b400d4c1a20 Mon Sep 17 00:00:00 2001 From: paboyle Date: Sun, 14 Jan 2018 23:53:31 +0000 Subject: [PATCH] Namespace --- lib/lattice/Lattice_transpose.h | 57 +++++++++++++++++---------------- 1 file changed, 29 insertions(+), 28 deletions(-) diff --git a/lib/lattice/Lattice_transpose.h b/lib/lattice/Lattice_transpose.h index 0ae7c6b3..945d1194 100644 --- a/lib/lattice/Lattice_transpose.h +++ b/lib/lattice/Lattice_transpose.h @@ -1,4 +1,4 @@ - /************************************************************************************* +/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid @@ -24,8 +24,8 @@ 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_TRANSPOSE_H #define GRID_LATTICE_TRANSPOSE_H @@ -33,31 +33,32 @@ Author: Peter Boyle // Transpose /////////////////////////////////////////////// -namespace Grid { +NAMESPACE_BEGIN(Grid); - //////////////////////////////////////////////////////////////////////////////////////////////////// - // Transpose - //////////////////////////////////////////////////////////////////////////////////////////////////// - template - inline Lattice transpose(const Lattice &lhs){ - Lattice ret(lhs._grid); - parallel_for(int ss=0;ssoSites();ss++){ - ret._odata[ss] = transpose(lhs._odata[ss]); - } - return ret; - }; +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Transpose +//////////////////////////////////////////////////////////////////////////////////////////////////// +template +inline Lattice transpose(const Lattice &lhs){ + Lattice ret(lhs._grid); + parallel_for(int ss=0;ssoSites();ss++){ + ret._odata[ss] = transpose(lhs._odata[ss]); + } + return ret; +}; - //////////////////////////////////////////////////////////////////////////////////////////////////// - // Index level dependent transpose - //////////////////////////////////////////////////////////////////////////////////////////////////// - template - inline auto TransposeIndex(const Lattice &lhs) -> Lattice(lhs._odata[0]))> - { - Lattice(lhs._odata[0]))> ret(lhs._grid); - parallel_for(int ss=0;ssoSites();ss++){ - ret._odata[ss] = transposeIndex(lhs._odata[ss]); - } - return ret; - }; -} +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Index level dependent transpose +//////////////////////////////////////////////////////////////////////////////////////////////////// +template +inline auto TransposeIndex(const Lattice &lhs) -> Lattice(lhs._odata[0]))> +{ + Lattice(lhs._odata[0]))> ret(lhs._grid); + parallel_for(int ss=0;ssoSites();ss++){ + ret._odata[ss] = transposeIndex(lhs._odata[ss]); + } + return ret; +}; + +NAMESPACE_END(Grid); #endif