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 e82c6db commit 2324338
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ namespace Langulus::SIMD
SIMDE_MM_SHUFFLE(3, 1, 2, 0)
);

return V128<std::int32_t> {simde_mm256_castpd_si256(ordered)};
return V256<std::int32_t> {simde_mm256_castpd_si256(ordered)};
#endif
}
else if constexpr (CT::UnsignedInteger64<T>) {
Expand All @@ -623,7 +623,7 @@ namespace Langulus::SIMD
SIMDE_MM_SHUFFLE(3, 1, 2, 0)
);

return V128<std::uint32_t> {simde_mm256_castpd_si256(ordered)};
return V256<std::uint32_t> {simde_mm256_castpd_si256(ordered)};
#endif
}
else LANGULUS_ERROR("Can't unpack this type");
Expand Down

0 comments on commit 2324338

Please sign in to comment.