-
Notifications
You must be signed in to change notification settings - Fork 902
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
fix gcc 11 compilation errors #10067
fix gcc 11 compilation errors #10067
Conversation
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.
C++ looks good, minus the redundant change with an existing PR.
Please add a description to the PR
@@ -171,7 +171,7 @@ std::vector<metadata::stripe_source_mapping> aggregate_orc_metadata::select_stri | |||
|
|||
// Coalesce stripe info at the source file later since that makes downstream processing much | |||
// easier in impl::read | |||
for (const size_t& stripe_idx : user_specified_stripes[src_file_idx]) { | |||
for (const size_t stripe_idx : user_specified_stripes[src_file_idx]) { |
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.
#10045 already addresses this one.
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.
Reverted.
@@ -18,6 +18,8 @@ | |||
#include <cudf/scalar/scalar.hpp> | |||
#include <cudf/strings/strings_column_view.hpp> | |||
|
|||
#include <optional> |
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.
The <optional>
include is being addressed in #10044
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.
Reverted.
@@ -31,6 +31,7 @@ | |||
|
|||
#include <future> | |||
#include <memory> | |||
#include <optional> |
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 for finding this benchmark issue, I have updated #10044 to address this as well.
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.
Reverted.
rerun tests |
@gpucibot merge |
Codecov Report
@@ Coverage Diff @@
## branch-22.02 #10067 +/- ##
================================================
- Coverage 10.49% 10.41% -0.08%
================================================
Files 119 119
Lines 20305 20541 +236
================================================
+ Hits 2130 2139 +9
- Misses 18175 18402 +227
Continue to review full report at Codecov.
|
rerun tests |
Fix gcc 11 compilation errors.