From 8c8b3e4e7da253718d94fc7e9a94a78d2554bf7a Mon Sep 17 00:00:00 2001 From: Johannes Demel Date: Sun, 14 Feb 2021 19:23:43 +0100 Subject: [PATCH] kernel: Fix typo in implementation name The AVX2 kernels in `volk_16ic_x2_dot_prod_16ic` were named incorrectly. Instead of `_avx2` the function names ended with `_axv2`. This commit fixes the typo. However, this does change two function names in files that we install. This might require us to add a wrapper with the old name that just calls the new, and correct, name. --- kernels/volk/volk_16ic_x2_dot_prod_16ic.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernels/volk/volk_16ic_x2_dot_prod_16ic.h b/kernels/volk/volk_16ic_x2_dot_prod_16ic.h index 8dfd099e7..f8f9aa06d 100644 --- a/kernels/volk/volk_16ic_x2_dot_prod_16ic.h +++ b/kernels/volk/volk_16ic_x2_dot_prod_16ic.h @@ -244,7 +244,7 @@ static inline void volk_16ic_x2_dot_prod_16ic_u_sse2(lv_16sc_t* out, #ifdef LV_HAVE_AVX2 #include -static inline void volk_16ic_x2_dot_prod_16ic_u_axv2(lv_16sc_t* out, +static inline void volk_16ic_x2_dot_prod_16ic_u_avx2(lv_16sc_t* out, const lv_16sc_t* in_a, const lv_16sc_t* in_b, unsigned int num_points) @@ -386,7 +386,7 @@ static inline void volk_16ic_x2_dot_prod_16ic_u_axv2(lv_16sc_t* out, #ifdef LV_HAVE_AVX2 #include -static inline void volk_16ic_x2_dot_prod_16ic_a_axv2(lv_16sc_t* out, +static inline void volk_16ic_x2_dot_prod_16ic_a_avx2(lv_16sc_t* out, const lv_16sc_t* in_a, const lv_16sc_t* in_b, unsigned int num_points)