diff options
author | Tim O'Shea <tim.oshea753@gmail.com> | 2014-05-19 15:56:10 -0400 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2014-05-23 09:19:40 -0700 |
commit | 220ddfabab53c4b321b42b1769c21eead0eae44e (patch) | |
tree | 9d7f9d4a753ff2227a89eef955b7ce58675e9cb0 | |
parent | cb0bc7f070c41825ab7aee7f093dc326e62e2fdb (diff) |
blocks: agc3 invsqrt volk kernel aligned assumption is not safe
-rw-r--r-- | gr-analog/lib/agc3_cc_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-analog/lib/agc3_cc_impl.cc b/gr-analog/lib/agc3_cc_impl.cc index 86e2212927..86da630d8f 100644 --- a/gr-analog/lib/agc3_cc_impl.cc +++ b/gr-analog/lib/agc3_cc_impl.cc @@ -118,7 +118,7 @@ namespace gr { } // compute inverse square roots - volk_32f_invsqrt_32f_a(&inv_mag[0], &mag_sq[0], noutput_items/d_iir_update_decim); + volk_32f_invsqrt_32f(&inv_mag[0], &mag_sq[0], noutput_items/d_iir_update_decim); // apply updates for(int i=0; i<noutput_items/d_iir_update_decim; i++){ |