diff options
author | Sylvain Munaut <tnt@246tNt.com> | 2014-01-28 20:32:25 +0100 |
---|---|---|
committer | Sylvain Munaut <tnt@246tNt.com> | 2014-01-28 20:32:25 +0100 |
commit | eac68237d5bb876bb1ecbe0c73555be5dbb838fc (patch) | |
tree | 3cedb302a0c5d7bb8fd89685f6f5a18cea913eb1 | |
parent | 65e2468cc7e3142a7bbc8b4af645255d5dc3d604 (diff) |
volk/rotator: Use more precise phase_inc in volk_profile
The kernels all expect the phase_inc to be a unity vector. Any error on
this will compound and ultimatly make it fail
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
-rw-r--r-- | volk/apps/volk_profile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/volk/apps/volk_profile.cc b/volk/apps/volk_profile.cc index a857d26676..893cb55ec9 100644 --- a/volk/apps/volk_profile.cc +++ b/volk/apps/volk_profile.cc @@ -20,7 +20,7 @@ int main(int argc, char *argv[]) { //VOLK_PROFILE(volk_16i_x5_add_quad_16i_x4, 1e-4, 2046, 10000, &results); //VOLK_PROFILE(volk_16i_branch_4_state_8, 1e-4, 2046, 10000, &results); - VOLK_PUPPET_PROFILE(volk_32fc_s32fc_rotatorpuppet_32fc, volk_32fc_s32fc_x2_rotator_32fc, 1e-2, (lv_32fc_t)lv_cmake(.95393, .3), 20462, 10000, &results); + VOLK_PUPPET_PROFILE(volk_32fc_s32fc_rotatorpuppet_32fc, volk_32fc_s32fc_x2_rotator_32fc, 1e-2, (lv_32fc_t)lv_cmake(0.953939201, 0.3), 20462, 10000, &results); VOLK_PROFILE(volk_16ic_s32f_deinterleave_real_32f, 1e-5, 32768.0, 204602, 10000, &results); VOLK_PROFILE(volk_16ic_deinterleave_real_8i, 0, 0, 204602, 10000, &results); VOLK_PROFILE(volk_16ic_deinterleave_16i_x2, 0, 0, 204602, 10000, &results); |