-
Notifications
You must be signed in to change notification settings - Fork 916
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
Use kvikIO as the default IO backend #12574
Conversation
Codecov ReportBase: 86.58% // Head: 85.71% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## branch-23.02 #12574 +/- ##
================================================
- Coverage 86.58% 85.71% -0.87%
================================================
Files 155 155
Lines 24368 24865 +497
================================================
+ Hits 21098 21312 +214
- Misses 3270 3553 +283
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
…ce_read()` (#12584) `datasource_chunk_reader.get_next_chunk()` called `device_read_async()` without waiting on the returned Future. Should fix the CI fail in #12574 cc. @vuule Authors: - Mads R. B. Kristensen (https://github.com/madsbk) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) - Vukasin Milovanovic (https://github.com/vuule) - Yunsong Wang (https://github.com/PointKernel) URL: #12584
…fea-kvikio-default
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.
Changes look good.
I am not sure if this is the entire change required to change the default backend.
Changes in this PR looks good to me.
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.
quick comment about the CI script changes.
@@ -167,13 +167,6 @@ if [[ -z "$PROJECT_FLASH" || "$PROJECT_FLASH" == "0" ]]; then | |||
echo "Running GoogleTest $test_name" | |||
${gt} --gtest_output=xml:"$WORKSPACE/test-results/" | |||
done | |||
|
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 file is no longer in use by CI since the switch to GitHub Actions.
the new CPP test file is here: https://github.com/rapidsai/cudf/blob/branch-23.02/ci/test_cpp.sh.
I imagine you may want to make similar changes there.
We will be removing all of the old Jenkins CI scripts from the RAPIDS repositories in the coming weeks.
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.
thanks, done.
/merge |
Description
Closes #10415
Switching the default backend to kvikIO.
Benchmarks show the same or better throughput.
Removing the redundant libcudf tests that ran with kvikIO.
Checklist