[Multi-GPU Polars] New frontends accept RMM config - #22052
Merged
rapids-bot[bot] merged 4 commits intoApr 10, 2026
Conversation
madsbk
force-pushed
the
new-frontends-accept-rmm-config
branch
5 times, most recently
from
April 9, 2026 13:53
54f21ac to
5b48890
Compare
madsbk
force-pushed
the
new-frontends-accept-rmm-config
branch
from
April 9, 2026 13:53
5b48890 to
be61f32
Compare
madsbk
marked this pull request as ready for review
April 9, 2026 15:35
bdice
approved these changes
Apr 9, 2026
pentschev
reviewed
Apr 9, 2026
Contributor
Author
|
/merge |
shrshi
pushed a commit
to shrshi/cudf
that referenced
this pull request
May 12, 2026
Allow `SPMDEngine`, `DaskEngine`, and `RayEngine` to accept a `MemoryResourceConfig` via `engine_options["memory_resource_config"]`. This enables declarative RMM memory resource configuration, for example through `StreamingOptions`, instead of requiring users to manually call `rmm.mr.set_current_device_resource()` before constructing an engine. Authors: - Mads R. B. Kristensen (https://github.com/madsbk) Approvers: - Bradley Dice (https://github.com/bdice) URL: NVIDIA#22052
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.
Allow
SPMDEngine,DaskEngine, andRayEngineto accept aMemoryResourceConfigviaengine_options["memory_resource_config"].This enables declarative RMM memory resource configuration, for example through
StreamingOptions, instead of requiring users to manually callrmm.mr.set_current_device_resource()before constructing an engine.