Skip to content

Commit

Permalink
Final Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
codereport committed Sep 9, 2021
1 parent 810d234 commit a87aed9
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions cpp/src/groupby/hash/groupby.cu
Expand Up @@ -620,12 +620,8 @@ std::unique_ptr<table> groupby_null_templated(table_view const& keys,
stream,
mr);

return cudf::detail::gather(keys,
gather_map.begin(),
gather_map.begin() + gather_map.size(),
out_of_bounds_policy::DONT_CHECK,
stream,
mr);
return cudf::detail::gather(
keys, gather_map.begin(), gather_map.end(), out_of_bounds_policy::DONT_CHECK, stream, mr);
}

} // namespace
Expand Down

0 comments on commit a87aed9

Please sign in to comment.