Skip to content

Commit

Permalink
[CI] remove check 2025.2 kmeans and knn conformance (#2190)
Browse files Browse the repository at this point in the history
* Update test_kmeans.py

* Update test_kmeans.py

* Update test_kmeans.py

* Update test_run_to_run_stability.py
  • Loading branch information
icfaust authored Nov 27, 2024
1 parent 1f10433 commit d9a25a5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions sklearnex/cluster/tests/test_kmeans.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,6 @@ def test_dense_vs_sparse(queue, init, algorithm, dims):
from sklearnex.cluster import KMeans

if init == "random" or (not _IS_INTEL and init == "k-means++"):
if daal_check_version((2025, "P", 200)):
pytest.fail("Re-verify failure of k-means++ in 2025.2 oneDAL")
pytest.skip(f"{init} initialization for sparse K-means is non-conformant.")

# For higher level of sparsity (smaller density) the test may fail
Expand Down
2 changes: 0 additions & 2 deletions sklearnex/tests/test_run_to_run_stability.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,6 @@ def _skip_neighbors(estimator, method):
and method
in ["score", "predict", "kneighbors", "kneighbors_graph", "predict_proba"]
):
if daal_check_version((2025, "P", 200)):
pytest.fail("Re-verify failure of algorithms in oneDAL 2025.2")
pytest.skip(f"{estimator} shows instability on non-Intel(R) hardware")


Expand Down

0 comments on commit d9a25a5

Please sign in to comment.