-
Notifications
You must be signed in to change notification settings - Fork 309
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
Use stream_allocator_adaptor constructor instead of factory. #4557
Use stream_allocator_adaptor constructor instead of factory. #4557
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like most of the diff here (and packaging-codeowners
being added as a reviewer) is coming from the fact that this has branch-24.10
commits on it but is targeting branch-24.08
. I suspect this was meant to target branch-24.10
.
@jameslamb Fixed! Thanks, just forgot to update the base branch when opening. |
CI/packaging reviews not needed after base branch fix
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok yeah I figured, thanks. Approved from me (not that you need it any more).
/merge |
This PR uses the
stream_allocator_adaptor
constructor instead of a factory. With CTAD, we do not need the factory and can use the constructor directly. The factory will be deprecated in rapidsai/rmm#1626.