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_32f_max_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_32f_max_aligned16.cc')
-rw-r--r-- | volk/lib/qa_32f_max_aligned16.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/volk/lib/qa_32f_max_aligned16.cc b/volk/lib/qa_32f_max_aligned16.cc index 3ef375176..cb1fd3627 100644 --- a/volk/lib/qa_32f_max_aligned16.cc +++ b/volk/lib/qa_32f_max_aligned16.cc @@ -25,6 +25,7 @@ void qa_32f_max_aligned16::t1() { float output0[vlen] __attribute__ ((aligned (16))); float output01[vlen] __attribute__ ((aligned (16))); + float output02[vlen] __attribute__ ((aligned (16))); for(int i = 0; i < vlen; ++i) { input0[i] = ((float) (rand() - (RAND_MAX/2))) / static_cast<float>((RAND_MAX/2)); @@ -41,6 +42,13 @@ void qa_32f_max_aligned16::t1() { printf("generic_time: %f\n", total); start = clock(); for(int count = 0; count < ITERS; ++count) { + volk_32f_max_aligned16_manual(output02, input0, input1, 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_32f_max_aligned16_manual(output01, input0, input1, vlen, "sse"); } end = clock(); @@ -54,6 +62,7 @@ void qa_32f_max_aligned16::t1() { for(int i = 0; i < vlen; ++i) { //printf("%d...%d\n", output0[i], output01[i]); CPPUNIT_ASSERT_EQUAL(output0[i], output01[i]); + CPPUNIT_ASSERT_EQUAL(output0[i], output02[i]); } } |