From 6a2eca2ec241d67079acee637ace06fbdcb4a8b9 Mon Sep 17 00:00:00 2001 From: paboyle Date: Fri, 12 Jan 2018 23:00:03 +0000 Subject: [PATCH] NAMESAPCE --- lib/simd/Grid_vector_types.h | 14 ++++++-------- lib/simd/Grid_vector_unops.h | 14 +++++++------- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/lib/simd/Grid_vector_types.h b/lib/simd/Grid_vector_types.h index c67e74cb..4768c734 100644 --- a/lib/simd/Grid_vector_types.h +++ b/lib/simd/Grid_vector_types.h @@ -31,7 +31,7 @@ directory /* END LEGAL */ //--------------------------------------------------------------------------- /*! @file Grid_vector_types.h - @brief Defines templated class Grid_simd to deal with inner vector types + @brief Defines templated class Grid_simd to deal with inner vector types */ // Time-stamp: <2015-07-10 17:45:33 neo> //--------------------------------------------------------------------------- @@ -62,7 +62,7 @@ directory #include "l1p.h" -namespace Grid { +NAMESPACE_BEGIN(Grid); ////////////////////////////////////// // To take the floating point type of real/complex type @@ -125,10 +125,10 @@ Out unary(Input src, Operation op) { /* @brief Grid_simd class for the SIMD vector type operations - */ +*/ template class Grid_simd { - public: +public: typedef typename RealPart::type Real; typedef Vector_type vector_type; typedef Scalar_type scalar_type; @@ -427,9 +427,6 @@ class Grid_simd { inline void putlane(const Scalar_type &S, int lane){ ((Scalar_type*)&v)[lane] = S; } - - - }; // end of Grid_simd class definition inline void permute(ComplexD &y,ComplexD b, int perm) { y=b; } @@ -863,6 +860,7 @@ template <> struct is_simd : public std::true_type {}; template using IfSimd = Invoke::value, int> >; template using IfNotSimd = Invoke::value, unsigned> >; -} + +NAMESPACE_END(Grid); #endif diff --git a/lib/simd/Grid_vector_unops.h b/lib/simd/Grid_vector_unops.h index 2244566f..bb8ab5a5 100644 --- a/lib/simd/Grid_vector_unops.h +++ b/lib/simd/Grid_vector_unops.h @@ -28,13 +28,13 @@ with this program; if not, write to the Free Software Foundation, Inc., See the full license in the file "LICENSE" in the top level distribution directory *************************************************************************************/ -/* END LEGAL */ + /* END LEGAL */ #ifndef GRID_VECTOR_UNOPS #define GRID_VECTOR_UNOPS #include -namespace Grid { +NAMESPACE_BEGIN(Grid); template struct SqrtRealFunctor { @@ -201,23 +201,23 @@ struct OrOrFunctor { //////////////////////////////// template inline Grid_simd operator&(const Grid_simd &x, - const Grid_simd &y) { + const Grid_simd &y) { return SimdApplyBinop(AndFunctor(), x, y); } template inline Grid_simd operator&&(const Grid_simd &x, - const Grid_simd &y) { + const Grid_simd &y) { return SimdApplyBinop(AndAndFunctor(), x, y); } template inline Grid_simd operator|(const Grid_simd &x, - const Grid_simd &y) { + const Grid_simd &y) { return SimdApplyBinop(OrFunctor(), x, y); } template inline Grid_simd operator||(const Grid_simd &x, - const Grid_simd &y) { + const Grid_simd &y) { return SimdApplyBinop(OrOrFunctor(), x, y); } -} +NAMESPACE_END(Grid); #endif