From 2b602ec47a849350ee0d9eff9a64e6ae4a84cf4f Mon Sep 17 00:00:00 2001 From: jinsolp Date: Tue, 31 Mar 2026 22:29:17 +0000 Subject: [PATCH] xfail --- python/cuml/tests/test_umap.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/cuml/tests/test_umap.py b/python/cuml/tests/test_umap.py index 334906edc9..6891c803b4 100644 --- a/python/cuml/tests/test_umap.py +++ b/python/cuml/tests/test_umap.py @@ -989,6 +989,9 @@ def test_umap_small_fit_large_transform(): @pytest.mark.parametrize("n_components", [2, 5]) @pytest.mark.parametrize("random_state", [None, 42]) @pytest.mark.parametrize("force_serial_epochs", [True, False]) +@pytest.mark.xfail( + reason="With current heuristics, UMAP may produce outliers on GPUs with high SM counts." +) def test_umap_outliers( n_neighbors, n_components, random_state, force_serial_epochs ):