Skip to content

Commit

Permalink
Fix unique (#60840) (#61044)
Browse files Browse the repository at this point in the history
* fix unique kernel, row to num_out
  • Loading branch information
warrentdrew committed Feb 5, 2024
1 parent f025385 commit 3452e61
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions paddle/phi/kernels/gpu/unique_kernel.cu
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,11 @@ static void ComputeUniqueDims(const Context& context,
// 3. counts: 'counts'
counts->Resize(common::make_ddim({num_out}));
auto* count_data = context.template Alloc<IndexT>(counts);
thrust::fill(exec_policy, count_data, count_data + row, 0);
thrust::adjacent_difference(
exec_policy, range_data_ptr + 1, range_data_ptr + row + 1, count_data);
thrust::fill(exec_policy, count_data, count_data + num_out, 0);
thrust::adjacent_difference(exec_policy,
range_data_ptr + 1,
range_data_ptr + num_out + 1,
count_data);
}

// Calculate unique when 'axis' is set
Expand Down

0 comments on commit 3452e61

Please sign in to comment.