Skip to content

Commit a92177f

Browse files
TEST: disabled LogReg SPMD test case (#2031)
* TEST: disabled LogReg SPMD test case * Update test_logistic_regression_spmd.py
1 parent fede266 commit a92177f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

sklearnex/spmd/linear_model/tests/test_logistic_regression_spmd.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@ def test_logistic_spmd_gold(dataframe, queue):
116116
@pytest.mark.parametrize("dtype", [np.float32, np.float64])
117117
@pytest.mark.mpi
118118
def test_logistic_spmd_synthetic(n_samples, n_features, C, tol, dataframe, queue, dtype):
119+
if dtype == np.float64:
120+
pytest.skip(
121+
"Sporadic failures on coef_ check. Test disabled while fix in progress"
122+
)
119123
# TODO: Resolve numerical issues when n_rows_rank < n_cols
120124
if n_samples <= n_features:
121125
pytest.skip("Numerical issues when rank rows < columns")

0 commit comments

Comments
 (0)