diff options
author | Josh Blum | 2012-07-04 11:16:02 -0700 |
---|---|---|
committer | Josh Blum | 2012-07-04 11:16:02 -0700 |
commit | 7c0f5550d06e9c5e2ab413e3e2b95a843a435135 (patch) | |
tree | 5ae238fb0764b5f6c0b7d3def2204e87a6541280 /volk/include | |
parent | dbc7a4c08ac27844e413a39a326bf1b50b09dd00 (diff) | |
download | gnuradio-7c0f5550d06e9c5e2ab413e3e2b95a843a435135.tar.gz gnuradio-7c0f5550d06e9c5e2ab413e3e2b95a843a435135.tar.bz2 gnuradio-7c0f5550d06e9c5e2ab413e3e2b95a843a435135.zip |
volk: fix volk_32f_x2_dot_prod_32f_u_sse tail case
Diffstat (limited to 'volk/include')
-rw-r--r-- | volk/include/volk/volk_32f_x2_dot_prod_32f_u.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/volk/include/volk/volk_32f_x2_dot_prod_32f_u.h b/volk/include/volk/volk_32f_x2_dot_prod_32f_u.h index ab33a2587..c43d229df 100644 --- a/volk/include/volk/volk_32f_x2_dot_prod_32f_u.h +++ b/volk/include/volk/volk_32f_x2_dot_prod_32f_u.h @@ -87,9 +87,6 @@ static inline void volk_32f_x2_dot_prod_32f_u_sse( float* result, const float* number = sixteenthPoints*16; for(;number < num_points; number++){ dotProduct += ((*aPtr++) * (*bPtr++)); - dotProduct += ((*aPtr++) * (*bPtr++)); - dotProduct += ((*aPtr++) * (*bPtr++)); - dotProduct += ((*aPtr++) * (*bPtr++)); } *result = dotProduct; |