-
Notifications
You must be signed in to change notification settings - Fork 917
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
Fixing BUG, get_next_chunk()
should use the blocking function device_read()
#12584
Fixing BUG, get_next_chunk()
should use the blocking function device_read()
#12584
Conversation
get_next_chunk()
to use the blocking function device_read()
get_next_chunk()
should use the blocking function device_read()
53d9d79
to
846a642
Compare
…_chunk_use_blocking_device_read
Codecov ReportBase: 86.58% // Head: 85.69% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## branch-23.02 #12584 +/- ##
================================================
- Coverage 86.58% 85.69% -0.89%
================================================
Files 155 155
Lines 24368 24858 +490
================================================
+ Hits 21098 21303 +205
- Misses 3270 3555 +285
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. |
@@ -169,7 +169,7 @@ if [[ -z "$PROJECT_FLASH" || "$PROJECT_FLASH" == "0" ]]; then | |||
done | |||
|
|||
# Test libcudf (csv, orc, and parquet) with `LIBCUDF_CUFILE_POLICY=KVIKIO` | |||
for test_name in "CSV_TEST" "ORC_TEST" "PARQUET_TEST"; do | |||
for test_name in "CSV_TEST" "ORC_TEST" "PARQUET_TEST" "DATA_CHUNK_SOURCE_TEST"; do |
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 used since we've switched to GitHub Actions.
We will be opening PRs to remove all of these dead files from the repositories after the 23.02
release.
The file below is where we test the C++ now. These changes should be moved to there
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, added it to test_cpp.sh
. When #12574 get merged, we don't need this anymore.
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.
Approving ops-codeowner
file changes
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.
Nice catch! Beat me to it :)
/merge |
datasource_chunk_reader.get_next_chunk()
calleddevice_read_async()
without waiting on the returned Future.Should fix the CI fail in #12574
cc. @vuule
Checklist