diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2008-11-11 18:44:50 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2008-11-11 18:44:50 +0000 |
commit | 5c44c02f5876ce8bf9c1ed35db2f979ad1a968eb (patch) | |
tree | 055d1e09b40bc9a53cccd3ed23a85bc46feb5168 /numpy/core | |
parent | 39da315548f45ad0f731da6ba3443c4cf7cb8610 (diff) | |
download | numpy-5c44c02f5876ce8bf9c1ed35db2f979ad1a968eb.tar.gz |
Comment out some tests that use functions broken on some machines.
Diffstat (limited to 'numpy/core')
-rw-r--r-- | numpy/core/tests/test_umath.py | 88 |
1 files changed, 44 insertions, 44 deletions
diff --git a/numpy/core/tests/test_umath.py b/numpy/core/tests/test_umath.py index 180311284..13ce16b67 100644 --- a/numpy/core/tests/test_umath.py +++ b/numpy/core/tests/test_umath.py @@ -54,27 +54,26 @@ class TestExp2(TestCase): assert_almost_equal(np.exp2(yf), xf) class TestLogAddExp2(object): - pass # Need test for intermediate precisions -# def test_logaddexp2_values(self) : -# x = [1, 2, 3, 4, 5] -# y = [5, 4, 3, 2, 1] -# z = [6, 6, 6, 6, 6] -# for dt, dec in zip(['f','d','g'],[6, 15, 15]) : -# xf = np.log2(np.array(x, dtype=dt)) -# yf = np.log2(np.array(y, dtype=dt)) -# zf = np.log2(np.array(z, dtype=dt)) -# assert_almost_equal(np.logaddexp2(xf, yf), zf, decimal=dec) - -# def test_logaddexp2_range(self) : -# x = [1000000., -1000000., 1000200., -1000200.] -# y = [1000200., -1000200., 1000000., -1000000.] -# z = [1000200., -1000000., 1000200., -1000000.] -# for dt in ['f','d','g'] : -# logxf = np.array(x, dtype=dt) -# logyf = np.array(y, dtype=dt) -# logzf = np.array(z, dtype=dt) -# assert_almost_equal(np.logaddexp(logxf, logyf), logzf) + def test_logaddexp2_values(self) : + x = [1, 2, 3, 4, 5] + y = [5, 4, 3, 2, 1] + z = [6, 6, 6, 6, 6] + for dt, dec in zip(['f','d','g'],[6, 15, 15]) : + xf = np.log2(np.array(x, dtype=dt)) + yf = np.log2(np.array(y, dtype=dt)) + zf = np.log2(np.array(z, dtype=dt)) + assert_almost_equal(np.logaddexp2(xf, yf), zf, decimal=dec) + + def test_logaddexp2_range(self) : + x = [1000000., -1000000., 1000200., -1000200.] + y = [1000200., -1000200., 1000000., -1000000.] + z = [1000200., -1000000., 1000200., -1000000.] + for dt in ['f','d','g'] : + logxf = np.array(x, dtype=dt) + logyf = np.array(y, dtype=dt) + logzf = np.array(z, dtype=dt) + assert_almost_equal(np.logaddexp(logxf, logyf), logzf) class TestLog(TestCase): def test_log_values(self) : @@ -97,36 +96,37 @@ class TestExp(TestCase): assert_almost_equal(np.exp(yf), xf) class TestLogAddExp(object): - pass -# def test_logaddexp_values(self) : -# x = [1, 2, 3, 4, 5] -# y = [5, 4, 3, 2, 1] -# z = [6, 6, 6, 6, 6] -# for dt, dec in zip(['f','d','g'],[6, 15, 15]) : -# xf = np.log(np.array(x, dtype=dt)) -# yf = np.log(np.array(y, dtype=dt)) -# zf = np.log(np.array(z, dtype=dt)) -# assert_almost_equal(np.logaddexp(xf, yf), zf, decimal=dec) - -# def test_logaddexp_range(self) : -# x = [1000000., -1000000., 1000200., -1000200.] -# y = [1000200., -1000200., 1000000., -1000000.] -# z = [1000200., -1000000., 1000200., -1000000.] -# for dt in ['f','d','g'] : -# logxf = np.array(x, dtype=dt) -# logyf = np.array(y, dtype=dt) -# logzf = np.array(z, dtype=dt) -# assert_almost_equal(np.logaddexp(logxf, logyf), logzf) + def test_logaddexp_values(self) : + x = [1, 2, 3, 4, 5] + y = [5, 4, 3, 2, 1] + z = [6, 6, 6, 6, 6] + #for dt, dec in zip(['f','d','g'],[6, 15, 15]) : + for dt, dec in zip(['d'],[15]) : + xf = np.log(np.array(x, dtype=dt)) + yf = np.log(np.array(y, dtype=dt)) + zf = np.log(np.array(z, dtype=dt)) + assert_almost_equal(np.logaddexp(xf, yf), zf, decimal=dec) + + def test_logaddexp_range(self) : + x = [1000000., -1000000., 1000200., -1000200.] + y = [1000200., -1000200., 1000000., -1000000.] + z = [1000200., -1000000., 1000200., -1000000.] + #for dt in ['f','d','g'] : + for dt in ['d'] : + logxf = np.array(x, dtype=dt) + logyf = np.array(y, dtype=dt) + logzf = np.array(z, dtype=dt) + assert_almost_equal(np.logaddexp(logxf, logyf), logzf) class TestLog1p(TestCase): def test_log1p_d(self): np.log1p(np.array(1e-100, dtype='d')) - def test_log1p_f(self): - np.log1p(np.array(1e-100, dtype='f')) +# def test_log1p_f(self): +# np.log1p(np.array(1e-100, dtype='f')) - def test_log1p_g(self): - np.log1p(np.array(1e-100, dtype='g')) +# def test_log1p_g(self): +# np.log1p(np.array(1e-100, dtype='g')) def test_log1p(self): assert_almost_equal(ncu.log1p(0.2), ncu.log(1.2)) |