diff options
author | Nick Foster | 2010-12-17 11:14:41 -0800 |
---|---|---|
committer | Nick Foster | 2010-12-17 11:14:41 -0800 |
commit | c6fff77de9b686761f93f0e1de237f8543f5e919 (patch) | |
tree | 91e8927ba4a30db3d6b93d6b14489b733b23eecb /volk/lib/qa_16sc_deinterleave_16s_aligned16.cc | |
parent | 15ad4b5398e474bfb52fdb7e826b69f3e398c0b0 (diff) | |
download | gnuradio-c6fff77de9b686761f93f0e1de237f8543f5e919.tar.gz gnuradio-c6fff77de9b686761f93f0e1de237f8543f5e919.tar.bz2 gnuradio-c6fff77de9b686761f93f0e1de237f8543f5e919.zip |
Volk: A bunch of new Orc routines plus a couple of build changes.
32fc_magnitude_16s fails test_all right now.
Diffstat (limited to 'volk/lib/qa_16sc_deinterleave_16s_aligned16.cc')
-rw-r--r-- | volk/lib/qa_16sc_deinterleave_16s_aligned16.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/volk/lib/qa_16sc_deinterleave_16s_aligned16.cc b/volk/lib/qa_16sc_deinterleave_16s_aligned16.cc index e700ac72c..7e9e31df5 100644 --- a/volk/lib/qa_16sc_deinterleave_16s_aligned16.cc +++ b/volk/lib/qa_16sc_deinterleave_16s_aligned16.cc @@ -26,6 +26,8 @@ void qa_16sc_deinterleave_16s_aligned16::t1() { int16_t output_generic1[vlen] __attribute__ ((aligned (16))); int16_t output_sse2[vlen] __attribute__ ((aligned (16))); int16_t output_sse21[vlen] __attribute__ ((aligned (16))); + int16_t output_orc[vlen] __attribute__ ((aligned (16))); + int16_t output_orc1[vlen] __attribute__ ((aligned (16))); int16_t output_ssse3[vlen] __attribute__ ((aligned (16))); int16_t output_ssse31[vlen] __attribute__ ((aligned (16))); @@ -44,6 +46,13 @@ void qa_16sc_deinterleave_16s_aligned16::t1() { printf("generic_time: %f\n", total); start = clock(); for(int count = 0; count < ITERS; ++count) { + volk_16sc_deinterleave_16s_aligned16_manual(output_orc, output_orc1, input0, vlen, "orc"); + } + end = clock(); + total = (double)(end-start)/(double)CLOCKS_PER_SEC; + printf("orc_time: %f\n", total); + start = clock(); + for(int count = 0; count < ITERS; ++count) { volk_16sc_deinterleave_16s_aligned16_manual(output_sse2, output_sse21, input0, vlen, "sse2"); } end = clock(); @@ -70,6 +79,9 @@ void qa_16sc_deinterleave_16s_aligned16::t1() { CPPUNIT_ASSERT_EQUAL(output_generic[i], output_ssse3[i]); CPPUNIT_ASSERT_EQUAL(output_generic1[i], output_ssse31[i]); + + CPPUNIT_ASSERT_EQUAL(output_generic[i], output_orc[i]); + CPPUNIT_ASSERT_EQUAL(output_generic1[i], output_orc1[i]); } } |