Skip to content

Commit

Permalink
Fix dtype arg to column constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
shwina committed Aug 31, 2020
1 parent 6e1531e commit 5259dee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/groupby/sort/group_collect.cu
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ std::unique_ptr<column> group_collect(column_view const &values,
group_offsets.data().get(), group_offsets.size() * sizeof(cudf::size_type), stream, mr);

auto offsets = std::make_unique<cudf::column>(
cudf::type_to_id<size_type>, num_groups + 1, std::move(offsets_data));
cudf::data_type(cudf::type_to_id<cudf::size_type>()), num_groups + 1, std::move(offsets_data));

return make_lists_column(num_groups,
std::move(offsets),
Expand Down

0 comments on commit 5259dee

Please sign in to comment.