Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
seunghwak committed Aug 31, 2021
1 parent 32495c5 commit 9e4514c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/tests/community/mg_louvain_helper.cu
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ void sort_and_coarsen_edgelist(
(*edgelist_weights) = std::move(tmp_edgelist_weights);
} else {
thrust::sort(rmm::exec_policy(stream), pair_first, pair_first + edgelist_major_vertices.size());
auto it =
thrust::unique(rmm::exec_policy(stream), pair_first, pair_first + edgelist_major_vertices.size());
auto it = thrust::unique(
rmm::exec_policy(stream), pair_first, pair_first + edgelist_major_vertices.size());
number_of_edges = thrust::distance(pair_first, it);
}

Expand Down

0 comments on commit 9e4514c

Please sign in to comment.