[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/02: filter: upping the allowed relative
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/02: filter: upping the allowed relative error in freq_xlating_fft_filter's QA from 0.001 to 0.0012 to account for minor precision errors with AVX. |
Date: |
Mon, 7 Jul 2014 17:21:24 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
trondeau pushed a commit to branch maint
in repository gnuradio.
commit 1151e5502ccd440ebd89599cf7e4be4fb5ed8334
Author: Tom Rondeau <address@hidden>
Date: Mon Jul 7 12:14:09 2014 -0400
filter: upping the allowed relative error in freq_xlating_fft_filter's QA
from 0.001 to 0.0012 to account for minor precision errors with AVX.
---
gr-filter/python/filter/qa_freq_xlating_fft_filter.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gr-filter/python/filter/qa_freq_xlating_fft_filter.py
b/gr-filter/python/filter/qa_freq_xlating_fft_filter.py
index a9adfa0..d0e18fc 100755
--- a/gr-filter/python/filter/qa_freq_xlating_fft_filter.py
+++ b/gr-filter/python/filter/qa_freq_xlating_fft_filter.py
@@ -75,7 +75,7 @@ class test_freq_xlating_filter(gr_unittest.TestCase):
def assert_fft_ok(self, expected_result, result_data):
expected_result = expected_result[:len(result_data)]
self.assertComplexTuplesAlmostEqual2 (expected_result, result_data,
- abs_eps=1e-9, rel_eps=1e-3)
+ abs_eps=1e-9, rel_eps=1.2e-3)
def test_fft_filter_ccf_001(self):
@@ -144,4 +144,3 @@ class test_freq_xlating_filter(gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(test_freq_xlating_filter, "test_freq_xlating_filter.xml")
-