-
Notifications
You must be signed in to change notification settings - Fork 310
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
Remove unnecessary CUDA utilities #4855
Remove unnecessary CUDA utilities #4855
Conversation
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
@@ -56,7 +56,6 @@ def _get_feasibility(G, sources, components=None, depth_limit=None): | |||
|
|||
# Fixme not implemented in RMM yet |
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.
This should probably use rmm.mr.available_device_memory()
but this function is currently unreachable due to the NotImplementedError
thrown on line 149 below. It seems it would be better to rework this entirely once the feature is implemented.
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.
LGTM, thanks!
/merge |
This PR removes some utilities that were updated in #4830 but are no longer needed.
xref: rapidsai/build-planning#117