summaryrefslogtreecommitdiff
path: root/volk/lib/qa_32f_max_aligned16.cc
diff options
context:
space:
mode:
authorNick Foster2010-12-17 11:14:41 -0800
committerNick Foster2010-12-17 11:14:41 -0800
commitc6fff77de9b686761f93f0e1de237f8543f5e919 (patch)
tree91e8927ba4a30db3d6b93d6b14489b733b23eecb /volk/lib/qa_32f_max_aligned16.cc
parent15ad4b5398e474bfb52fdb7e826b69f3e398c0b0 (diff)
downloadgnuradio-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.cc9
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]);
}
}