From 3c998b6f9f7ceed10831905fc42de1fce869659c Mon Sep 17 00:00:00 2001 From: John Zedlewski Date: Tue, 19 Jan 2021 11:35:32 -0800 Subject: [PATCH] Xfail errors in holt winters expected with gcc 9.3.0 --- python/cuml/test/test_holtwinters.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/python/cuml/test/test_holtwinters.py b/python/cuml/test/test_holtwinters.py index 55fef81319..d9d40c0867 100644 --- a/python/cuml/test/test_holtwinters.py +++ b/python/cuml/test/test_holtwinters.py @@ -72,6 +72,9 @@ def test_singlets_holtwinters(seasonal, h, datatype): train = airpassengers[:-h] test = airpassengers[-h:] + if seasonal == "multiplicative": + pytest.xfail("Statsmodels nan errors with gcc 9.3 (Issue #3384)") + sm_hw = sm_ES(train, seasonal=seasonal, seasonal_periods=12) sm_hw = sm_hw.fit() @@ -98,6 +101,9 @@ def test_multits_holtwinters(seasonal, h, datatype): airpassengers = np.asarray(airpassengers, dtype=datatype) co2 = np.asarray(co2, dtype=datatype) + if seasonal == "multiplicative": + pytest.xfail("Statsmodels nan errors with gcc 9.3 (Issue #3384)") + air_train = airpassengers[:-h] air_test = airpassengers[-h:] co2_train = co2[:-h]