-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
RAPIDS 26.02 support #12143
Copy link
Copy link
Open
Description
Description
Running xgboost 3.1.3 tests against RAPIDS 26.02, I found 2 issues that I think are still present on master:
cudfremoved themodeparameter to.to_pylibcudf()cudfremovedfrom_pandas()methods, in favor of passingpandasDataframes to constructors likecudf.DataFrame()
Opening this to report those and to have a place for you all to track full RAPIDS 26.02 support.
Notes
Looks like this PR would add CI images with RAPIDS 26.02 that'd help with testing: dmlc/xgboost-devops#78
For the .from_pandas() changes, stuff like this:
| X = cudf.from_pandas(X) |
Should be converted to like
X = cudf.DataFrame(X) Though I'm not sure how many cuDF releases back that pattern is supported, so don't know if you can make that change unconditionally. @mroeschke would know.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels