Migrate to new CCCL memory resource interface#7450
Merged
rapids-bot[bot] merged 5 commits intorapidsai:mainfrom Nov 7, 2025
Merged
Migrate to new CCCL memory resource interface#7450rapids-bot[bot] merged 5 commits intorapidsai:mainfrom
rapids-bot[bot] merged 5 commits intorapidsai:mainfrom
Conversation
This PR migrates cuML to use the new stream-first parameter ordering for memory resource operations, replacing the legacy async methods: - `allocate_async(size, alignment, stream)` → `allocate(stream, size, alignment)` - `deallocate_async(ptr, size, alignment, stream)` → `deallocate(stream, ptr, size, alignment)` Modified 9 files with 38 total API changes: - ARIMA parameter management (14 changes) - Genetic algorithm implementation (4 changes) - SVM implementation and tests (12 changes) - Pinned host vector (3 changes + added stream header) - Benchmark infrastructure (2 changes) - Symbolic regression example (2 changes) - Sparse utilities (3 changes) All changes maintain the same functionality while adopting the new CCCL interface. Relates to rapidsai/rmm#2126
0f0e1c5 to
5dcfd58
Compare
divyegala
approved these changes
Nov 6, 2025
Contributor
Author
|
/merge |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Migrates cuML to use the new CCCL memory resource interface.
Part of rapidsai/rmm#2126.