Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
fnrizzi committed Sep 7, 2023
1 parent afac778 commit db591e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions algorithms/src/std_algorithms/impl/Kokkos_Unique.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ KOKKOS_FUNCTION IteratorType unique_team_impl(const TeamHandleType& teamHandle,
} else if (num_elements == 1) {
return last;
} else {
// FIXME: for the execution-space-based impl we used an auxiliary allocation,
// but for the team level we cannot do the same, so do this serially
// for now and later figure out if this can be done in parallel
// FIXME: for the execution-space-based impl we used an auxiliary
// allocation, but for the team level we cannot do the same, so do this
// serially for now and later figure out if this can be done in parallel

std::size_t count = {};
if (teamHandle.team_rank() == 0) {
Expand Down

0 comments on commit db591e3

Please sign in to comment.