fmt-ops: add RVV optimizations for f32d_s16d

This commit is contained in:
sunyuechi 2024-09-23 10:22:44 +08:00 committed by Wim Taymans
parent 9348ad8115
commit 852de6c35c
5 changed files with 50 additions and 25 deletions

View file

@ -136,6 +136,7 @@ static void test_f32_s16(void)
#if defined (HAVE_RVV)
if (cpu_flags & SPA_CPU_FLAG_RISCV_V) {
run_test("test_f32_s16", "rvv", true, true, conv_f32_to_s16_rvv);
run_test("test_f32d_s16d", "rvv", false, false, conv_f32d_to_s16d_rvv);
}
#endif
run_test("test_f32_s16d", "c", true, false, conv_f32_to_s16d_c);