#ifndef NETGEN_CORE_SIMD_HPP #define NETGEN_CORE_SIMD_HPP /**************************************************************************/ /* File: simd.hpp */ /* Author: Joachim Schoeberl, Matthias Hochsteger */ /* Date: 25. Mar. 16 */ /**************************************************************************/ #include #include #include "ngcore_api.hpp" #include "simd_generic.hpp" #ifndef __CUDA_ARCH__ #ifdef NETGEN_ARCH_AMD64 #ifndef __SSE__ #define __SSE__ #endif #include "simd_sse.hpp" #endif #ifdef __AVX__ #include "simd_avx.hpp" #endif #ifdef __AVX512F__ #include "simd_avx512.hpp" #endif #ifdef __aarch64__ #include "simd_arm64.hpp" #endif #endif // __CUDA_ARCH__ namespace ngcore { #ifndef __CUDA_ARCH__ #ifdef NETGEN_ARCH_AMD64 /* NETGEN_INLINE auto HSum (SIMD v1, SIMD v2, SIMD v3, SIMD v4) { SIMD hsum1 = my_mm_hadd_pd (v1.Data(), v2.Data()); SIMD hsum2 = my_mm_hadd_pd (v3.Data(), v4.Data()); return SIMD (hsum1, hsum2); } */ NETGEN_INLINE auto GetMaskFromBits( unsigned int i ) { return SIMD::GetMaskFromBits(i); } #endif #endif // __CUDA_ARCH__ NETGEN_INLINE void SIMDTranspose (SIMD a1, SIMD a2, SIMD a3, SIMD a4, SIMD & b1, SIMD & b2, SIMD & b3, SIMD & b4) { if constexpr (sizeof(a1.Lo()) == 16) { auto [h1,h2] = Unpack(a1,a2); auto [h3,h4] = Unpack(a3,a4); b1 = SIMD (h1.Lo(), h3.Lo()); b2 = SIMD (h2.Lo(), h4.Lo()); b3 = SIMD (h1.Hi(), h3.Hi()); b4 = SIMD (h2.Hi(), h4.Hi()); } else { b1 = SIMD (a1[0], a2[0], a3[0], a4[0]); b2 = SIMD (a1[1], a2[1], a3[1], a4[1]); b3 = SIMD (a1[2], a2[2], a3[2], a4[2]); b4 = SIMD (a1[3], a2[3], a3[3], a4[3]); } } template NETGEN_INLINE auto HSum (SIMD s1, SIMD s2) { return SIMD(HSum(s1), HSum(s2)); } template NETGEN_INLINE auto HSum (SIMD s1, SIMD s2, SIMD s3, SIMD s4 ) { // return SIMD(HSum(s1), HSum(s2), HSum(s3), HSum(s4)); return SIMD(HSum(s1, s2), HSum(s3,s4)); } template class MakeSimdCl; template auto MakeSimd (std::array aa) { return MakeSimdCl(aa).Get(); } template class MakeSimdCl { std::array a; public: MakeSimdCl (std::array aa) : a(aa) { ; } auto Get() const { SIMD sa( [this] (auto i) { return (this->a)[i]; }); return sa; } }; template class MakeSimdCl,S> { std::array,S> a; public: MakeSimdCl (std::array,S> aa) : a(aa) { ; } auto Get() const { std::array a0; for (int i = 0; i < S; i++) a0[i] = std::get<0> (a[i]); if constexpr (std::tuple_size>::value == 1) { return std::tuple(MakeSimd(a0)); } else { std::array,S> arest; for (int i = 0; i < S; i++) arest[i] = skip_first(a[i]); return std::tuple_cat ( std::tuple (MakeSimd(a0)), MakeSimd(arest) ); } } template static auto skip_first(const std::tuple& t) { return std::apply([](auto first, auto... rest) { return std::make_tuple(rest...); }, t); } }; } #include "simd_math.hpp" #endif // NETGEN_CORE_SIMD_HPP