diff options
author | Nick Foster | 2011-05-12 17:39:11 -0700 |
---|---|---|
committer | Nick Foster | 2011-05-12 17:39:11 -0700 |
commit | 7d349848c60f99f9906cb57d0ebe3c7dd35096bd (patch) | |
tree | 65dbdfd211413857803e2833b17254b67f023a8f /volk/apps | |
parent | bfb812a4ae8ec750d4452be7ce6b31d33de5796d (diff) | |
download | gnuradio-7d349848c60f99f9906cb57d0ebe3c7dd35096bd.tar.gz gnuradio-7d349848c60f99f9906cb57d0ebe3c7dd35096bd.tar.bz2 gnuradio-7d349848c60f99f9906cb57d0ebe3c7dd35096bd.zip |
Volk: avx impl for 32f_s32f_convert_32i
Diffstat (limited to 'volk/apps')
-rw-r--r-- | volk/apps/volk_profile.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/volk/apps/volk_profile.cc b/volk/apps/volk_profile.cc index fd9507207..c091a6289 100644 --- a/volk/apps/volk_profile.cc +++ b/volk/apps/volk_profile.cc @@ -13,7 +13,7 @@ extern "C" { int main(int argc, char *argv[]) { std::vector<std::string> results; - + /* //VOLK_PROFILE(volk_16i_x5_add_quad_16i_x4_a16, 1e-4, 2046, 10000, &results); //VOLK_PROFILE(volk_16i_branch_4_state_8_a16, 1e-4, 2046, 10000, &results); VOLK_PROFILE(volk_16ic_s32f_deinterleave_real_32f_a16, 1e-5, 32768.0, 204600, 10000, &results); @@ -52,6 +52,7 @@ int main(int argc, char *argv[]) { VOLK_PROFILE(volk_32fc_x2_multiply_32fc_a16, 1e-4, 0, 204600, 1000, &results); VOLK_PROFILE(volk_32f_s32f_convert_16i_a16, 1, 32768, 204600, 10000, &results); VOLK_PROFILE(volk_32f_s32f_convert_16i_u, 1, 32768, 204600, 10000, &results); + */ VOLK_PROFILE(volk_32f_s32f_convert_32i_a16, 1, 2<<31, 204600, 10000, &results); VOLK_PROFILE(volk_32f_s32f_convert_32i_u, 1, 2<<31, 204600, 10000, &results); VOLK_PROFILE(volk_32f_convert_64f_a16, 1e-4, 0, 204600, 10000, &results); |