Skip to content

Commit

Permalink
Fix issue in ARM NEON
Browse files Browse the repository at this point in the history
  • Loading branch information
tjhancocks committed Oct 31, 2023
1 parent 867399a commit db5c1a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/libSIMD/arm/arm_neon.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ namespace simd
SIMD_FUNCTION
static inline auto vector_shuffle_lower_higher(f32x4 a, f32x4 b) -> f32x4
{
return vcombine_f32(vget_high_f32(b), vget_low_f32(a));
return vcombine_f32(vget_low_f32(a), vget_high_f32(b));
}

SIMD_FUNCTION
Expand Down

0 comments on commit db5c1a5

Please sign in to comment.