Skip to content

Commit

Permalink
Fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
codereport committed Feb 25, 2021
1 parent a04900a commit b90197f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
16 changes: 8 additions & 8 deletions cpp/include/cudf/detail/gather.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -557,14 +557,14 @@ struct column_gatherer_impl<struct_view, MapItRoot> {
std::back_inserter(output_struct_members),
[&gather_map_begin, &gather_map_end, nullify_out_of_bounds, stream, mr](
cudf::column_view const& col) {
return cudf::type_dispatcher(col.type(),
column_gatherer{},
col,
gather_map_begin,
gather_map_end,
nullify_out_of_bounds,
stream,
mr);
return cudf::type_dispatcher<dispatch_storage_type>(col.type(),
column_gatherer{},
col,
gather_map_begin,
gather_map_end,
nullify_out_of_bounds,
stream,
mr);
});

gather_bitmask(
Expand Down
6 changes: 4 additions & 2 deletions cpp/tests/collect_list/collect_list_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,10 @@ template <typename T>
struct TypedCollectListTest : public CollectListTest {
};

using TypesForTest = cudf::test::
Concat<cudf::test::IntegralTypes, cudf::test::FloatingPointTypes, cudf::test::DurationTypes>;
using TypesForTest = cudf::test::Concat<cudf::test::IntegralTypes,
cudf::test::FloatingPointTypes,
cudf::test::DurationTypes,
cudf::test::FixedPointTypes>;

TYPED_TEST_CASE(TypedCollectListTest, TypesForTest);

Expand Down

0 comments on commit b90197f

Please sign in to comment.