Skip to content

Commit

Permalink
Build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Epixu committed Jun 13, 2024
1 parent 8b8422e commit 4f4dc26
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/Common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -588,8 +588,8 @@ namespace Langulus::SIMD
#else
// Grab the 32-bit low halves of 64-bit elements
auto combined = _mm256_shuffle_ps(
_mm256_castsi256_ps(a.m),
_mm256_castsi256_ps(b.m),
_mm256_castsi256_ps(m),
_mm256_castsi256_ps(m),
_MM_SHUFFLE(2, 0, 2, 0)
);

Expand All @@ -610,8 +610,8 @@ namespace Langulus::SIMD
#else
// Grab the 32-bit low halves of 64-bit elements
auto combined = _mm256_shuffle_ps(
_mm256_castsi256_ps(a.m),
_mm256_castsi256_ps(b.m),
_mm256_castsi256_ps(m),
_mm256_castsi256_ps(m),
_MM_SHUFFLE(2, 0, 2, 0)
);

Expand Down

0 comments on commit 4f4dc26

Please sign in to comment.