-
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
[TASK] Clean up ctk lib "wrapper" calls in cuml #475
Comments
Linking rapidsai/cuml#4547 and rapidsai/cuml#4515 |
This is probably best done once we've completed the movement of primitives from cuml. |
This issue has been labeled |
This issue has been labeled |
We've been moving the wrapper functions for the ctk libraries into
detail
so that we can better manage the RAFT API functions which are being invoked by consuming projects.Step 1 was to hide the wrapper functions in the
detail
namespace and Step 2 is to re-route all calls to functions indetail
from downstream projects so they are calling into the public API.Additionally, the cublas wrapper functions in linalg have any unnecessary overloads, which can be consolidated. These will also need to continue to provide the option of accepting device or host pointers for scalar parameters alpha and beta, in which the new
device_scalar_view
will be useful.The text was updated successfully, but these errors were encountered: