You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This applies some smaller NumPy 2 related fixes. With (in progress) cupy 13.2 fixups, the single gpu test suite seems to be doing mostly fine. There is a single test remaining:
```
test_simpl_set.py::test_simplicial_set_embedding
```
is failing with:
```
(Pdb) cp.asarray(cu_embedding)
array([[23067.518, 23067.518],
[17334.559, 17334.559],
[22713.598, 22713.598],
...,
[23238.438, 23238.438],
[25416.912, 25416.912],
[19748.943, 19748.943]], dtype=float32)
```
being completely different from the reference:
```
array([[5.330462 , 4.3419437],
[4.1822557, 5.6225405],
[5.200859 , 4.530094 ],
...,
[4.852359 , 5.0026293],
[5.361374 , 4.1475334],
[4.0259256, 5.7187223]], dtype=float32)
```
And I am not sure why that might be, I will prod it a bit more, but it may need someone who knows the methods to have a look.
One wrinkle is that hdbscan is not yet released for NumPy 2, but I guess that still required even though sklearn has a version?
(Probably, not a big issue, but my fixups scikit-learn-contrib/hdbscan#644 run into some issue even though it doesn't seem NumPy 2 related.)
xref: rapidsai/build-planning#38
Authors:
- Sebastian Berg (https://github.com/seberg)
- https://github.com/jakirkham
- Dante Gama Dessavre (https://github.com/dantegd)
Approvers:
- Kyle Edwards (https://github.com/KyleFromNVIDIA)
- Dante Gama Dessavre (https://github.com/dantegd)
URL: #5954
0 commit comments