-
Notifications
You must be signed in to change notification settings - Fork 914
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
Column to JCUDF row for tables with strings #10235
Column to JCUDF row for tables with strings #10235
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-22.04 #10235 +/- ##
================================================
+ Coverage 86.13% 86.16% +0.02%
================================================
Files 139 139
Lines 22438 22447 +9
================================================
+ Hits 19328 19341 +13
+ Misses 3110 3106 -4
Continue to review full report at Codecov.
|
f06c67a
to
204b606
Compare
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.
Looks good to me. A couple of minor nitpicks. Apologies for "the fog".
413e5de
to
c3c5c67
Compare
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.
LGTM!
Co-authored-by: nvdbaranec <[email protected]>
Co-authored-by: Nghia Truong <[email protected]>
…umn-to-row-strings
…2346/cudf into mwilson/column-to-row-strings
std::vector<int8_t const *> variable_width_input_data( | ||
variable_data_begin, variable_data_begin + variable_width_table.num_columns()); | ||
|
||
auto dev_variable_input_data = make_device_uvector_async(variable_width_input_data, stream); |
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.
Was surprised to find we don't have an iterator version of make_device_uvector_async()
@gpucibot merge |
This is the code for the column to row portion of the string work. This code will convert a table that includes strings into the JCUDF row format. This depends on #10157 and as such, is a draft PR until that is merged. I am putting this up now so people working on reviewing that PR can see where it is headed.
closes #10234