mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-16 08:56:45 -05:00
fmt-ops: add avx2 optimized version
Only one optimized version but the sse2 version are compiled with the avx2 flags so that they get optimized better.
This commit is contained in:
parent
6eca935e61
commit
3a911dfe3b
7 changed files with 821 additions and 28 deletions
|
|
@ -200,5 +200,13 @@ DEFINE_FUNCTION(s24_to_f32d, ssse3);
|
|||
#endif
|
||||
#if defined(HAVE_SSE41)
|
||||
DEFINE_FUNCTION(s24_to_f32d, sse41);
|
||||
|
||||
#endif
|
||||
#if defined(HAVE_AVX2)
|
||||
DEFINE_FUNCTION(s16_to_f32d_2, avx2);
|
||||
DEFINE_FUNCTION(s16_to_f32d, avx2);
|
||||
DEFINE_FUNCTION(s24_to_f32d, avx2);
|
||||
DEFINE_FUNCTION(s32_to_f32d, avx2);
|
||||
DEFINE_FUNCTION(f32d_to_s32, avx2);
|
||||
DEFINE_FUNCTION(f32d_to_s16_2, avx2);
|
||||
DEFINE_FUNCTION(f32d_to_s16, avx2);
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue