diff --git a/Grid/simd/Grid_a64fx-fixedsize.h b/Grid/simd/Grid_a64fx-fixedsize.h index 2a6533fe..6b450012 100644 --- a/Grid/simd/Grid_a64fx-fixedsize.h +++ b/Grid/simd/Grid_a64fx-fixedsize.h @@ -33,9 +33,6 @@ // Using SVE ACLE with fixed-size data types ///////////////////////////////////////////////////// -/* TODO - * Exchange1 -*/ // gcc 10 features #if __ARM_FEATURE_SVE_BITS==512 diff --git a/Grid/simd/Grid_vector_types.h b/Grid/simd/Grid_vector_types.h index 246c6a6a..d42396cb 100644 --- a/Grid/simd/Grid_vector_types.h +++ b/Grid/simd/Grid_vector_types.h @@ -187,6 +187,12 @@ template struct is_complex : public std::false_type {}; template <> struct is_complex : public std::true_type {}; template <> struct is_complex : public std::true_type {}; +template struct is_ComplexD : public std::false_type {}; +template <> struct is_ComplexD : public std::true_type {}; + +template struct is_ComplexF : public std::false_type {}; +template <> struct is_ComplexF : public std::true_type {}; + template struct is_real : public std::false_type {}; template struct is_real::value, void>::type> : public std::true_type {}; @@ -262,6 +268,7 @@ public: return *this; }; + /* template accelerator_inline Grid_simd &operator=(const Grid_simd::value, S>::type, Vector_type> &&rhs) { //v = rhs.v; @@ -275,6 +282,37 @@ public: svst1(svptrue_b8(), (int8_t*)this, svld1(svptrue_b8(), (int8_t*)&(rhs.v))); return *this; }; + */ + + // ComplexF + template + accelerator_inline Grid_simd &operator=(const Grid_simd::value, S>::type, Vector_type> &&rhs) { + //v = rhs.v; + svst1(svptrue_b8(), (float32_t*)this, svld1(svptrue_b8(), (float32_t*)&(rhs.v))); + return *this; + }; + + template + accelerator_inline Grid_simd &operator=(const Grid_simd::value, S>::type, Vector_type> &rhs) { + //v = rhs.v; + svst1(svptrue_b8(), (float32_t*)this, svld1(svptrue_b8(), (float32_t*)&(rhs.v))); + return *this; + }; + + // ComplexD + template + accelerator_inline Grid_simd &operator=(const Grid_simd::value, S>::type, Vector_type> &&rhs) { + //v = rhs.v; + svst1(svptrue_b8(), (float64_t*)this, svld1(svptrue_b8(), (float64_t*)&(rhs.v))); + return *this; + }; + + template + accelerator_inline Grid_simd &operator=(const Grid_simd::value, S>::type, Vector_type> &rhs) { + //v = rhs.v; + svst1(svptrue_b8(), (float64_t*)this, svld1(svptrue_b8(), (float64_t*)&(rhs.v))); + return *this; + }; #else