Skip to content

Commit

Permalink
Merge pull request #716 from argilo/fix-mod-range-test
Browse files Browse the repository at this point in the history
Fix flaky mod_range test
  • Loading branch information
jdemel authored Dec 12, 2023
2 parents f210701 + 2561b46 commit 2eca94b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions kernels/volk/volk_32f_s32f_mod_rangepuppet_32f.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static inline void volk_32f_s32f_mod_rangepuppet_32f_generic(float* output,
unsigned int num_points)
{
volk_32f_s32f_s32f_mod_range_32f_generic(
output, input, bound - 3.141f, bound, num_points);
output, input, bound - 3.131f, bound, num_points);
}
#endif

Expand All @@ -31,7 +31,7 @@ static inline void volk_32f_s32f_mod_rangepuppet_32f_u_sse(float* output,
unsigned int num_points)
{
volk_32f_s32f_s32f_mod_range_32f_u_sse(
output, input, bound - 3.141f, bound, num_points);
output, input, bound - 3.131f, bound, num_points);
}
#endif
#ifdef LV_HAVE_SSE
Expand All @@ -41,7 +41,7 @@ static inline void volk_32f_s32f_mod_rangepuppet_32f_a_sse(float* output,
unsigned int num_points)
{
volk_32f_s32f_s32f_mod_range_32f_a_sse(
output, input, bound - 3.141f, bound, num_points);
output, input, bound - 3.131f, bound, num_points);
}
#endif

Expand All @@ -52,7 +52,7 @@ static inline void volk_32f_s32f_mod_rangepuppet_32f_u_sse2(float* output,
unsigned int num_points)
{
volk_32f_s32f_s32f_mod_range_32f_u_sse2(
output, input, bound - 3.141f, bound, num_points);
output, input, bound - 3.131f, bound, num_points);
}
#endif
#ifdef LV_HAVE_SSE2
Expand All @@ -62,7 +62,7 @@ static inline void volk_32f_s32f_mod_rangepuppet_32f_a_sse2(float* output,
unsigned int num_points)
{
volk_32f_s32f_s32f_mod_range_32f_a_sse2(
output, input, bound - 3.141f, bound, num_points);
output, input, bound - 3.131f, bound, num_points);
}
#endif

Expand All @@ -73,7 +73,7 @@ static inline void volk_32f_s32f_mod_rangepuppet_32f_u_avx(float* output,
unsigned int num_points)
{
volk_32f_s32f_s32f_mod_range_32f_u_avx(
output, input, bound - 3.141f, bound, num_points);
output, input, bound - 3.131f, bound, num_points);
}
#endif
#ifdef LV_HAVE_AVX
Expand All @@ -83,7 +83,7 @@ static inline void volk_32f_s32f_mod_rangepuppet_32f_a_avx(float* output,
unsigned int num_points)
{
volk_32f_s32f_s32f_mod_range_32f_a_avx(
output, input, bound - 3.141f, bound, num_points);
output, input, bound - 3.131f, bound, num_points);
}
#endif
#endif

0 comments on commit 2eca94b

Please sign in to comment.