From 19e8d2809aeca8a3b5515ac2c9cec675725d35a7 Mon Sep 17 00:00:00 2001 From: Azusa Yamaguchi Date: Sun, 14 Jun 2015 00:59:07 +0100 Subject: [PATCH] Binop assist and real/complex improvements --- lib/simd/Grid_vector_types.h | 79 ++++++++++++++++++++++++++++++++++-- 1 file changed, 75 insertions(+), 4 deletions(-) diff --git a/lib/simd/Grid_vector_types.h b/lib/simd/Grid_vector_types.h index c670f531..034d5314 100644 --- a/lib/simd/Grid_vector_types.h +++ b/lib/simd/Grid_vector_types.h @@ -28,13 +28,19 @@ namespace Grid { + ////////////////////////////////////// // To take the floating point type of real/complex type + ////////////////////////////////////// template struct RealPart { typedef T type; }; template struct RealPart< std::complex >{ typedef T type; }; + + ////////////////////////////////////// + // demote a vector to real type + ////////////////////////////////////// // type alias used to simplify the syntax of std::enable_if template using Invoke = typename T::type; @@ -90,7 +96,7 @@ namespace Grid { Vector_type v; Scalar_type s[sizeof(Vector_type)/sizeof(Scalar_type)]; conv_t_union(){}; - } conv_t; + } conv_t; Vector_type v; @@ -205,7 +211,6 @@ namespace Grid { return *this; } - /////////////////////////////////////// // Not all functions are supported // through SIMD and must breakout to @@ -214,7 +219,6 @@ namespace Grid { /////////////////////////////////////// template friend inline Grid_simd SimdApply (const functor &func,const Grid_simd &v) { - Grid_simd ret; Grid_simd::conv_t conv; @@ -225,6 +229,19 @@ namespace Grid { ret.v = conv.v; return ret; } + template friend inline Grid_simd SimdApplyBinop (const functor &func,const Grid_simd &x,const Grid_simd &y) { + Grid_simd ret; + Grid_simd::conv_t cx; + Grid_simd::conv_t cy; + + cx.v = x.v; + cy.v = y.v; + for(int i=0;i(y,b,perm); } + };// end of Grid_simd class definition @@ -383,7 +401,6 @@ namespace Grid { return in; } - ///////////////////// // Inner, outer ///////////////////// @@ -405,6 +422,46 @@ namespace Grid { return arg; } + + //////////////////////////////////////////////////////////// + // copy/splat complex real parts into real; + // insert real into complex and zero imag; + //////////////////////////////////////////////////////////// + + //real = toReal( complex ) + template = 0> + inline Grid_simd toReal(const Grid_simd,V> &in) + { + typedef Grid_simd simd; + simd ret; + typename simd::conv_t conv; + conv.v = in.v; + for(int i=0;i = 0 > // must be a real arg + inline Grid_simd,V> toComplex (const Grid_simd &in) + { + typedef Grid_simd Rsimd; + typedef Grid_simd,V> Csimd; + typename Rsimd::conv_t conv;// address as real + + conv.v = in.v; + for(int i=0;i , SIMD_Ftype > vComplexF; typedef Grid_simd< std::complex< double >, SIMD_Dtype > vComplexD; typedef Grid_simd< Integer , SIMD_Itype > vInteger; + + ///////////////////////////////////////// + // Some traits to recognise the types + ///////////////////////////////////////// + template struct is_simd : public std::false_type{}; + template <> struct is_simd : public std::true_type {}; + template <> struct is_simd : public std::true_type {}; + template <> struct is_simd: public std::true_type {}; + template <> struct is_simd: public std::true_type {}; + template <> struct is_simd : public std::true_type {}; + + template using IfSimd = Invoke::value,int> > ; + template using IfNotSimd = Invoke::value,unsigned> > ; + } #endif