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
DistributedManager cleanup and kNN cuml/scipy hotfixes (#1182)
* Enable a "soft" check path that doesn't raise an exception, just
returns false, for check_min_version.
This let's knn import without crashing if cuml isn't installed.
* Use the soft fail for scipy too.
* remove barrier at the cleanup of distributed manager. It is still opt-in,
if it's ever needed, but by default it's off.
* Finish cleanup of knn. New logic:
- soft check of cuml and scipy install.
- if the backend is selected as cuml or scipy, but not installed,
it will error loudly.
- if the backend is "auto", it will select cuml/scipy if available
but torch if not.
* Add test path for cpu knn when scipy is not installed.
document hard_fail parameter in check_min_version.
0 commit comments