This commit is contained in:
Joachim Schoeberl 2022-11-20 19:21:25 +01:00
parent 2d022013ad
commit f457009083
2 changed files with 2 additions and 2 deletions

View File

@ -229,7 +229,7 @@ namespace ngcore
NETGEN_INLINE auto SwapPairs (SIMD<double,4> a)
{
reutrn _mm256_shuffle_pd (a.Data(), a.Data(), 0b0101);
return _mm256_shuffle_pd (a.Data(), a.Data(), 0b0101);
}

View File

@ -266,7 +266,7 @@ namespace ngcore
NETGEN_INLINE auto SwapPairs (SIMD<double,8> a)
{
reutrn _mm512_shuffle_pd (a.Data(), a.Data(), 0b01010101);
return _mm512_shuffle_pd (a.Data(), a.Data(), 0b01010101);
}
}