fmt-ops: add RVV optimizations for s32_to_f32d

This commit is contained in:
sunyuechi 2024-09-29 11:17:18 +08:00 committed by hleft
parent 0e5d8fdc3b
commit 245adda985
5 changed files with 64 additions and 0 deletions

View file

@ -105,6 +105,9 @@ static struct conv_info conv_table[] =
#endif
#if defined (HAVE_SSE2)
MAKE(S32, F32P, 0, conv_s32_to_f32d_sse2, SPA_CPU_FLAG_SSE2),
#endif
#if defined (HAVE_RVV)
MAKE(S32, F32P, 0, conv_s32_to_f32d_rvv, SPA_CPU_FLAG_RISCV_V),
#endif
MAKE(S32, F32, 0, conv_s32_to_f32_c),
MAKE(S32P, F32P, 0, conv_s32d_to_f32d_c),