Skip to content

Commit

Permalink
Fix clang-format issue
Browse files Browse the repository at this point in the history
Signed-off-by: tinyboxvk <[email protected]>
  • Loading branch information
tinyboxvk committed Nov 17, 2024
1 parent 99d92ad commit 4451fdd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/volk/volk_avx_intrinsics.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,10 @@ static inline __m256 _mm256_polar_sign_mask(__m128i fbits)
__m256 sign_mask =
_mm256_insertf128_ps(sign_mask_dummy, _mm_castsi128_ps(sign_bits0), 0x0);
return _mm256_insertf128_ps(sign_mask, _mm_castsi128_ps(sign_bits1), 0x1);
// // This is the desired function call. Though it seems to be missing in GCC.
// // Compare: https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html
// return _mm256_set_m128(_mm_castsi128_ps(sign_bits1),
// _mm_castsi128_ps(sign_bits0));
// This is the desired function call. Though it seems to be missing in GCC.
// Compare: https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html
// return _mm256_set_m128(_mm_castsi128_ps(sign_bits1),
// _mm_castsi128_ps(sign_bits0));
}

static inline void
Expand Down

0 comments on commit 4451fdd

Please sign in to comment.