diff options
author | Nick Foster <nick@ettus.com> | 2012-02-21 15:41:27 -0800 |
---|---|---|
committer | Nick Foster <nick@ettus.com> | 2012-02-21 15:41:27 -0800 |
commit | fa8ab7cb146287a9f0d8db67e3126ab4a867a201 (patch) | |
tree | 0577a86c04ff6b6113282e2c9a4a1324fca136cc /volk/apps | |
parent | e4693dfbab735914db1947031c62eef7844e7393 (diff) |
Volk: add scalar const support to the profiler/QA code. Disabled volk_32fc_s32fc_multiply_32fc_a's Orc impl due to it not working.
Diffstat (limited to 'volk/apps')
-rw-r--r-- | volk/apps/volk_profile.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/volk/apps/volk_profile.cc b/volk/apps/volk_profile.cc index 10a6998727..5ad7727aae 100644 --- a/volk/apps/volk_profile.cc +++ b/volk/apps/volk_profile.cc @@ -102,8 +102,8 @@ int main(int argc, char *argv[]) { VOLK_PROFILE(volk_8i_convert_16i_u, 0, 0, 204600, 2000, &results); VOLK_PROFILE(volk_8i_s32f_convert_32f_a, 1e-4, 100, 204600, 2000, &results); VOLK_PROFILE(volk_8i_s32f_convert_32f_u, 1e-4, 100, 204600, 2000, &results); - VOLK_PROFILE(volk_32fc_s32fc_multiply_32fc_a, 1e-4, 0, 204600, 1000, &results); - VOLK_PROFILE(volk_32f_s32f_multiply_32f_a, 1e-4, 0, 204600, 1000, &results); + //VOLK_PROFILE(volk_32fc_s32fc_multiply_32fc_a, 1e-4, lv_32fc_t(1.0, 0.5), 204600, 1000, &results); + VOLK_PROFILE(volk_32f_s32f_multiply_32f_a, 1e-4, 1.0, 204600, 10000, &results); char path[256]; get_config_path(path); |