-
Notifications
You must be signed in to change notification settings - Fork 553
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
Pulling test/prims/test_utils.h out of raft namespace and into MLCommon #5151
Pulling test/prims/test_utils.h out of raft namespace and into MLCommon #5151
Conversation
…emove_raft_abs_redefinition
…ition' into bug-2302-remove_raft_abs_redefinition
@dantegd CI seems to be picking up an older version of the raft conda packages (as you had suggested offline): https://github.com/rapidsai/cuml/actions/runs/3991712271/jobs/6846916279#step:6:481. Do you have any thoughts as to how we can/should make it pick up the most recent or does that require #5120 to be merged first? I can also merge that into my branch here, but then we'd still have to wait for that PR to be completed. |
This PR was merged into another already. Closing |
For some reason, the
test_utils.h
incpp/test/prims
was using theraft
namespace, which was causing this file to attempt to redefine anabs
function. Changing the namespace back toMLCommon
here to remove this conflict.