summaryrefslogtreecommitdiff
path: root/volk/lib/qa_8s_convert_32f_aligned16.cc
diff options
context:
space:
mode:
Diffstat (limited to 'volk/lib/qa_8s_convert_32f_aligned16.cc')
-rw-r--r--volk/lib/qa_8s_convert_32f_aligned16.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/volk/lib/qa_8s_convert_32f_aligned16.cc b/volk/lib/qa_8s_convert_32f_aligned16.cc
index 522da0b9d..3b3aa6919 100644
--- a/volk/lib/qa_8s_convert_32f_aligned16.cc
+++ b/volk/lib/qa_8s_convert_32f_aligned16.cc
@@ -40,6 +40,14 @@ void qa_8s_convert_32f_aligned16::t1() {
end = clock();
total = (double)(end-start)/(double)CLOCKS_PER_SEC;
printf("generic_time: %f\n", total);
+
+ start = clock();
+ for(int count = 0; count < ITERS; ++count) {
+ volk_8s_convert_32f_aligned16_manual(output_generic, input0, 128.0, 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) {