diff options
author | Tom Rondeau <tom@trondeau.com> | 2013-11-17 16:09:31 -0500 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2013-11-17 16:09:31 -0500 |
commit | f38a7ce4cbde705c72183bf2713612be773e3b0f (patch) | |
tree | c9a2c13490923c2be0b4a76cb55578ce086d3789 /gr-blocks/lib/multiply_conjugate_cc_impl.cc | |
parent | a2f687824fa2887e116ab1e01d054b5e883e901c (diff) |
blocks: switch all blocks to use the VOLK dispatchers for alignment handling.
Diffstat (limited to 'gr-blocks/lib/multiply_conjugate_cc_impl.cc')
-rw-r--r-- | gr-blocks/lib/multiply_conjugate_cc_impl.cc | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gr-blocks/lib/multiply_conjugate_cc_impl.cc b/gr-blocks/lib/multiply_conjugate_cc_impl.cc index 671e1160f6..7f9652152b 100644 --- a/gr-blocks/lib/multiply_conjugate_cc_impl.cc +++ b/gr-blocks/lib/multiply_conjugate_cc_impl.cc @@ -57,12 +57,7 @@ namespace gr { gr_complex *out = (gr_complex *) output_items[0]; int noi = d_vlen*noutput_items; - if(is_unaligned()) { - volk_32fc_x2_multiply_conjugate_32fc_u(out, in0, in1, noi); - } - else { - volk_32fc_x2_multiply_conjugate_32fc_a(out, in0, in1, noi); - } + volk_32fc_x2_multiply_conjugate_32fc(out, in0, in1, noi); return noutput_items; } |