[PATCH 5/6] Fix flaky mod_range test
authorClayton Smith <argilo@gmail.com>
Sat, 9 Dec 2023 00:27:45 +0000 (19:27 -0500)
committerA. Maitland Bottoms <bottoms@debian.org>
Sat, 16 Dec 2023 14:31:28 +0000 (09:31 -0500)
Signed-off-by: Clayton Smith <argilo@gmail.com>
Gbp-Pq: Name 0005-Fix-flaky-mod_range-test.patch

kernels/volk/volk_32f_s32f_mod_rangepuppet_32f.h

index 3e0bc43656bd1c6f02271a7ca1ea9a1d9935524f..3a17859644cf4433873f536bf871d7368e0d5714 100644 (file)
@@ -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
 
@@ -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
@@ -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
 
@@ -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
@@ -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
 
@@ -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
@@ -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