commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] [gnuradio] 01/01: blocks: agc3 invsqrt volk kernel ali


From: git
Subject: [Commit-gnuradio] [gnuradio] 01/01: blocks: agc3 invsqrt volk kernel aligned assumption is not safe
Date: Fri, 23 May 2014 17:35:55 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

jcorgan pushed a commit to branch maint
in repository gnuradio.

commit 220ddfabab53c4b321b42b1769c21eead0eae44e
Author: Tim O'Shea <address@hidden>
Date:   Mon May 19 15:56:10 2014 -0400

    blocks: agc3 invsqrt volk kernel aligned assumption is not safe
---
 gr-analog/lib/agc3_cc_impl.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gr-analog/lib/agc3_cc_impl.cc b/gr-analog/lib/agc3_cc_impl.cc
index 86e2212..86da630 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++){



reply via email to

[Prev in Thread] Current Thread [Next in Thread]