diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-03-15 17:16:18 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-03-15 17:25:45 -0400 |
commit | 43224ac7be478cd93f46720377d95f1e53aef87e (patch) | |
tree | 67f4d87245845ec699cb520e4d42ddcd9af50ae1 /volk/include | |
parent | 313573dbf02749bc48fd48072f04df08374f2a54 (diff) |
volk: turning off sse implementation of complex dot product for 32-bit machines until it's fixed.
Diffstat (limited to 'volk/include')
-rw-r--r-- | volk/include/volk/volk_32fc_x2_dot_prod_32fc_a.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/volk/include/volk/volk_32fc_x2_dot_prod_32fc_a.h b/volk/include/volk/volk_32fc_x2_dot_prod_32fc_a.h index a865e07371..cde9240cc7 100644 --- a/volk/include/volk/volk_32fc_x2_dot_prod_32fc_a.h +++ b/volk/include/volk/volk_32fc_x2_dot_prod_32fc_a.h @@ -196,7 +196,10 @@ static inline void volk_32fc_x2_dot_prod_32fc_a_sse_64(lv_32fc_t* result, const #if LV_HAVE_SSE && LV_HAVE_32 static inline void volk_32fc_x2_dot_prod_32fc_a_sse_32(lv_32fc_t* result, const lv_32fc_t* input, const lv_32fc_t* taps, unsigned int num_bytes) { - + + volk_32fc_x2_dot_prod_32fc_a_generic(result, input, taps, num_bytes); + +#if 0 asm volatile ( " #pushl %%ebp\n\t" @@ -307,12 +310,7 @@ static inline void volk_32fc_x2_dot_prod_32fc_a_sse_32(lv_32fc_t* result, const } return; - - - - - - +#endif } #endif /*LV_HAVE_SSE*/ |