From a87aed93b39c3aa399750610b66df4a1bc07e1c8 Mon Sep 17 00:00:00 2001 From: Conor Hoekstra Date: Wed, 8 Sep 2021 22:52:18 -0400 Subject: [PATCH] Final Fix --- cpp/src/groupby/hash/groupby.cu | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/cpp/src/groupby/hash/groupby.cu b/cpp/src/groupby/hash/groupby.cu index 58ffe07b531..694ca2afceb 100644 --- a/cpp/src/groupby/hash/groupby.cu +++ b/cpp/src/groupby/hash/groupby.cu @@ -620,12 +620,8 @@ std::unique_ptr 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