Skip to content

Commit 816bb65

Browse files
authored
XFail Holt Winters test where statsmodels has known issues with gcc 9.3.0(#3385)
In PR #3379, we observed this error in statsmodels (obtaining nans) that is unrelated to cuml but occurs with gcc 9.3.0. (See issue #3384.) For now, we will xfail. Authors: - John Zedlewski <[email protected]> Approvers: - Dante Gama Dessavre (@dantegd) URL: #3385
1 parent d72c54a commit 816bb65

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

python/cuml/test/test_holtwinters.py

+6
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ def test_singlets_holtwinters(seasonal, h, datatype):
7272
train = airpassengers[:-h]
7373
test = airpassengers[-h:]
7474

75+
if seasonal == "multiplicative":
76+
pytest.xfail("Statsmodels nan errors with gcc 9.3 (Issue #3384)")
77+
7578
sm_hw = sm_ES(train, seasonal=seasonal,
7679
seasonal_periods=12)
7780
sm_hw = sm_hw.fit()
@@ -98,6 +101,9 @@ def test_multits_holtwinters(seasonal, h, datatype):
98101
airpassengers = np.asarray(airpassengers, dtype=datatype)
99102
co2 = np.asarray(co2, dtype=datatype)
100103

104+
if seasonal == "multiplicative":
105+
pytest.xfail("Statsmodels nan errors with gcc 9.3 (Issue #3384)")
106+
101107
air_train = airpassengers[:-h]
102108
air_test = airpassengers[-h:]
103109
co2_train = co2[:-h]

0 commit comments

Comments
 (0)