-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEA] Move k-means from cuml to RAFT #28
Comments
This issue has been marked rotten due to no recent activity in the past 90d. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. |
This issue has been marked stale due to no recent activity in the past 30d. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. This issue will be marked rotten if there is no activity in the next 60d. |
Prioritizing this as a 22.06 task to support cupy integration and potentially cuann work. |
cc @teju85 for awareness |
This issue has been labeled |
This issue has been labeled |
This PR replace the current KMeans of Raft with cuml's implementation. Closes #28. It is using the new `device_*_view` for the API. Authors: - Micka (https://github.com/lowener) - Corey J. Nolet (https://github.com/cjnolet) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: #605
The cagra_c.h file was using in-class member initializers, which are only available in c++11 - and not in C. This resulted in compile failures when trying to build C libraries using CAGRA. Fix and add a basic C smoke test that would have caught this. Authors: - Ben Frederickson (https://github.com/benfred) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: rapidsai/cuvs#28
cuML exposes a Kmeans feature. Another Kmeans implementation has been introduced as part of moving Spectral clustering to RAFT.
We should avoid multiplying implementations for the same feature.
We could move cuML's kmeans backend to RAFT and use it in spectral clustering (and potentially in cuGraph as well later on).
The text was updated successfully, but these errors were encountered: