summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Rondeau <tom@trondeau.com>2014-07-07 12:14:09 -0400
committerTom Rondeau <tom@trondeau.com>2014-07-07 12:14:09 -0400
commit1151e5502ccd440ebd89599cf7e4be4fb5ed8334 (patch)
tree03754fc2133bcafca6987a507a4d7c82296d089c
parentdocs: Corrects or expands documentation comments for various blocks where I have had to read the source code to understand the (diff)
downloadgnuradio-1151e5502ccd440ebd89599cf7e4be4fb5ed8334.tar.xz
gnuradio-1151e5502ccd440ebd89599cf7e4be4fb5ed8334.zip
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.
-rwxr-xr-xgr-filter/python/filter/qa_freq_xlating_fft_filter.py3
1 files changed, 1 insertions, 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 a9adfa0f1..d0e18fc17 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")
-