Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions python/cuml/cuml_accel_tests/upstream/umap/xfail-list.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
marker: cuml_accel_flaky
strict: false
tests:
- "umap.tests.test_umap_on_iris::test_precomputed_transform_on_iris"
- "umap.tests.test_umap_ops::test_umap_transform_embedding_stability"
- reason: UMAP using removed numpy function `in1d`
marker: cuml_accel_no_numpy_in1d
Expand Down
2 changes: 1 addition & 1 deletion python/cuml/tests/test_pickle.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def test_nearest_neighbors_pickle(algorithm):
# just to ensure things are wired together properly.
accuracy = (i1 == i2).sum() / i1.size
assert accuracy >= 0.9
np.testing.assert_allclose(d1, d2, atol=1e-5)
np.testing.assert_allclose(d1, d2, atol=1e-3)
else:
np.testing.assert_allclose(i1, i2)
np.testing.assert_allclose(d1, d2)
Expand Down
Loading