-
Notifications
You must be signed in to change notification settings - Fork 962
Drop cuda 11 usages #19386
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
Drop cuda 11 usages #19386
Changes from 2 commits
457d423
11b3888
6e09994
07816ec
713709e
b2535d1
71e8396
9ff36f8
c9ef2d6
9e99443
e43937c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
galipremsagar marked this conversation as resolved.
Show resolved
Hide resolved
|
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,8 +104,8 @@ def default_memory_resource( | |
): | ||
raise ComputeError( | ||
"GPU engine requested, but incorrect cudf-polars package installed. " | ||
"If your system has a CUDA 11 driver, please uninstall `cudf-polars-cu12` " | ||
"and install `cudf-polars-cu11`" | ||
Comment on lines
-107
to
-108
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FYI: pola-rs/polars#23620 |
||
"If your system has a CUDA `x` driver, please uninstall `cudf-polars-cu12` " | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How can this error be reached? Do we need this to say “Requires CUDA 12+” instead of recommending a reinstall? I tried to trace down how this code is reached. Is it one of these two paths? https://github.com/search?q=repo%3Arapidsai%2Frmm+%22not+supported+with+this+CUDA+driver%2Fruntime+version%22&type=code There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, that is the paths. I updated the error message. |
||
"and install `cudf-polars-cu<x>` instead." | ||
) from None | ||
else: | ||
raise | ||
|
Uh oh!
There was an error while loading. Please reload this page.