From c2f129fcfa7cb33faa9b31446cd8035ed0e914d4 Mon Sep 17 00:00:00 2001
From: Florent Jaillet <florent.jaillet@lif.univ-mrs.fr>
Date: Thu, 29 Jun 2017 13:48:01 +0200
Subject: [PATCH] Fixing bugs and failing tests for architecture i686, solving
 issue #8

Note that the modifications include the fixes for issue #10 and issue #11
and should solve Debian bug 861091 and 861094.
---
 ltfatpy/tests/gabor/test_gabphasegrad.py | 2 +-
 ltfatpy/tests/gabor/test_instfreqplot.py | 2 +-
 ltfatpy/tests/gabor/test_phaseplot.py    | 2 +-
 ltfatpy/tests/gabor/test_sgram.py        | 2 +-
 ltfatpy/tests/gabor/test_tfplot.py       | 6 ++++++
 ltfatpy/tools/postpad.py                 | 2 +-
 6 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/ltfatpy/tests/gabor/test_gabphasegrad.py b/ltfatpy/tests/gabor/test_gabphasegrad.py
index 33e85c7..b1b0a19 100644
--- a/ltfatpy/tests/gabor/test_gabphasegrad.py
+++ b/ltfatpy/tests/gabor/test_gabphasegrad.py
@@ -143,7 +143,7 @@ class TestGabphasegrad(unittest.TestCase):
                 msg = 'wrong output in gabphasegrad with inputs ' + str(inputs)
                 assert_allclose(tgrad, outputs[0], rtol=4e-15, err_msg=msg)
                 assert_allclose(fgrad, outputs[1], rtol=1e-15, err_msg=msg)
-                assert_array_equal(c, outputs[2], msg)
+                assert_allclose(c, outputs[2], rtol=1e-15, err_msg=msg)
             elif method == 'phase':
                 cphase, a = (inputs[var] for var in ('cphase', 'a'))
                 tgrad, fgrad = gabphasegrad(method, cphase, a)
diff --git a/ltfatpy/tests/gabor/test_instfreqplot.py b/ltfatpy/tests/gabor/test_instfreqplot.py
index 0cf7e3a..682b4b0 100644
--- a/ltfatpy/tests/gabor/test_instfreqplot.py
+++ b/ltfatpy/tests/gabor/test_instfreqplot.py
@@ -108,7 +108,7 @@ class TestInstfreqplot(unittest.TestCase):
             out = instfreqplot(**inputs)
             msg = ('Wrong value in output of instfreqplot with inputs ' +
                    str(inputs))
-            assert_allclose(out, outputs[0], rtol=2e-15, err_msg=msg)
+            assert_allclose(out, outputs[0], atol=1e-13, err_msg=msg)
 
 
 if __name__ == '__main__':
diff --git a/ltfatpy/tests/gabor/test_phaseplot.py b/ltfatpy/tests/gabor/test_phaseplot.py
index 4bfca8b..4d066d0 100644
--- a/ltfatpy/tests/gabor/test_phaseplot.py
+++ b/ltfatpy/tests/gabor/test_phaseplot.py
@@ -102,7 +102,7 @@ class TestPhaseplot(unittest.TestCase):
             out = phaseplot(**inputs)
             msg = ('Wrong value in output of phaseplot with inputs ' +
                    str(inputs))
-            assert_allclose(out, outputs[0], rtol=2e-15, err_msg=msg)
+            assert_allclose(out, outputs[0], atol=1e-14, err_msg=msg)
 
 
 if __name__ == '__main__':
diff --git a/ltfatpy/tests/gabor/test_sgram.py b/ltfatpy/tests/gabor/test_sgram.py
index b89a75b..11169df 100644
--- a/ltfatpy/tests/gabor/test_sgram.py
+++ b/ltfatpy/tests/gabor/test_sgram.py
@@ -114,7 +114,7 @@ class TestSgram(unittest.TestCase):
             out = sgram(**inputs)
             msg = ('Wrong value in output of sgram with inputs ' +
                    str(inputs))
-            assert_array_equal(out, outputs[0], msg)
+            assert_allclose(out, outputs[0], atol=1e-14, err_msg=msg)
 
 
 if __name__ == '__main__':
diff --git a/ltfatpy/tests/gabor/test_tfplot.py b/ltfatpy/tests/gabor/test_tfplot.py
index bb26ca7..6965ce0 100644
--- a/ltfatpy/tests/gabor/test_tfplot.py
+++ b/ltfatpy/tests/gabor/test_tfplot.py
@@ -63,6 +63,7 @@ from __future__ import print_function, division
 import unittest
 import numpy as np
 from numpy.testing import assert_array_equal
+import matplotlib.pyplot as plt
 
 from ltfatpy.gabor.tfplot import tfplot
 
@@ -175,6 +176,11 @@ class TestTfplot(unittest.TestCase):
     def test_plot(self):
         """Check that the all the plotting sections of tfplot can be run
         """
+        # NOTE: To avoid an error when running the tests in a environnement
+        # with no $DISPLAY variable defined, we switch matplotlib to a
+        # non-interactive backend
+        plt.switch_backend("ps")
+
         coef = np.random.random((5, 4))
         step = 1
         yr = np.array([0., 1.])
diff --git a/ltfatpy/tools/postpad.py b/ltfatpy/tools/postpad.py
index 81733b6..d1f3a6a 100644
--- a/ltfatpy/tools/postpad.py
+++ b/ltfatpy/tools/postpad.py
@@ -103,7 +103,7 @@ def postpad(x, L, C=0., dim=None):
 
     if dim is None:
         # by default, dim is the first non-singleton dimension
-        dim = np.nonzero(np.array(x.shape) > 1)[0][0]
+        dim = int(np.nonzero(np.array(x.shape) > 1)[0][0])
 
     x, L, Ls, W, dim, permutedsize, order = assert_sigreshape_pre(x, L, dim)
 
-- 
GitLab