fmt-ops: add RVV optimizations for f32d_s16

This commit is contained in:
sunyuechi 2024-09-23 10:53:01 +08:00 committed by Wim Taymans
parent 852de6c35c
commit 8a8843ba20
5 changed files with 54 additions and 0 deletions

View file

@ -180,6 +180,7 @@ static struct conv_info conv_table[] =
#if defined (HAVE_RVV)
MAKE(F32, S16, 0, conv_f32_to_s16_rvv, SPA_CPU_FLAG_RISCV_V),
MAKE(F32P, S16P, 0, conv_f32d_to_s16d_rvv, SPA_CPU_FLAG_RISCV_V),
MAKE(F32P, S16, 0, conv_f32d_to_s16_rvv, SPA_CPU_FLAG_RISCV_V),
#endif
MAKE(F32, S16, 0, conv_f32_to_s16_c),