Skip to content

Commit

Permalink
Use absolute tolerances for accumulator and dot product
Browse files Browse the repository at this point in the history
Signed-off-by: Clayton Smith <[email protected]>
  • Loading branch information
argilo committed Nov 10, 2023
1 parent 56a893c commit b6fa59f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/kernel_tests.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ std::vector<volk_test_case_t> init_test_list(volk_test_params_t test_params)
QA(VOLK_INIT_TEST(volk_16i_s32f_convert_32f, test_params))
QA(VOLK_INIT_TEST(volk_16i_convert_8i, test_params))
QA(VOLK_INIT_TEST(volk_16i_32fc_dot_prod_32fc, test_params.make_absolute(1e-1)))
QA(VOLK_INIT_TEST(volk_32f_accumulator_s32f, test_params_inacc))
QA(VOLK_INIT_TEST(volk_32f_accumulator_s32f, test_params.make_absolute(2e-2)))
QA(VOLK_INIT_TEST(volk_32f_x2_add_32f, test_params))
QA(VOLK_INIT_TEST(volk_32f_index_max_16u, test_params))
QA(VOLK_INIT_TEST(volk_32f_index_max_32u, test_params))
Expand Down Expand Up @@ -126,7 +126,7 @@ std::vector<volk_test_case_t> init_test_list(volk_test_params_t test_params)
QA(VOLK_INIT_TEST(volk_32fc_x2_square_dist_32f, test_params))
QA(VOLK_INIT_TEST(volk_32fc_x2_s32f_square_dist_scalar_mult_32f, test_params))
QA(VOLK_INIT_TEST(volk_32f_x2_divide_32f, test_params))
QA(VOLK_INIT_TEST(volk_32f_x2_dot_prod_32f, test_params_inacc))
QA(VOLK_INIT_TEST(volk_32f_x2_dot_prod_32f, test_params.make_absolute(1.5e-2)))
QA(VOLK_INIT_TEST(volk_32f_x2_s32f_interleave_16ic, test_params))
QA(VOLK_INIT_TEST(volk_32f_x2_interleave_32fc, test_params))
QA(VOLK_INIT_TEST(volk_32f_x2_max_32f, test_params))
Expand Down

0 comments on commit b6fa59f

Please sign in to comment.