Skip to content

Commit

Permalink
Merge pull request gnuradio#447 from jdemel/fix-impl-names
Browse files Browse the repository at this point in the history
kernel: Fix typo in implementation name
  • Loading branch information
michaelld authored Feb 14, 2021
2 parents 72a044d + 8c8b3e4 commit cf44693
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernels/volk/volk_16ic_x2_dot_prod_16ic.h
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ static inline void volk_16ic_x2_dot_prod_16ic_u_sse2(lv_16sc_t* out,
#ifdef LV_HAVE_AVX2
#include <immintrin.h>

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)
Expand Down Expand Up @@ -386,7 +386,7 @@ static inline void volk_16ic_x2_dot_prod_16ic_u_axv2(lv_16sc_t* out,
#ifdef LV_HAVE_AVX2
#include <immintrin.h>

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)
Expand Down

0 comments on commit cf44693

Please sign in to comment.