Skip to content

Commit

Permalink
[BUG]Fix non-type template parameter to cugraph::relabel (#4064)
Browse files Browse the repository at this point in the history
Fix non-type template parameter to `cugraph::relabel`

Authors:
  - Naim (https://github.com/naimnv)

Approvers:
  - Seunghwa Kang (https://github.com/seunghwak)
  - Chuck Hastings (https://github.com/ChuckHastings)

URL: #4064
  • Loading branch information
naimnv authored Jan 4, 2024
1 parent 8d5bba3 commit 9d893ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/community/flatten_dendrogram.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void leiden_partition_at_level(raft::handle_t const& handle,
thrust::make_counting_iterator<size_t>(0),
thrust::make_counting_iterator<size_t>((level - 1) / 2),
[&handle, &dendrogram, &local_vertex_ids_v, &d_partition, local_num_verts](size_t l) {
cugraph::relabel<vertex_t, false>(
cugraph::relabel<vertex_t, multi_gpu>(
handle,
std::tuple<vertex_t const*, vertex_t const*>(dendrogram.get_level_ptr_nocheck(2 * l + 1),
dendrogram.get_level_ptr_nocheck(2 * l + 2)),
Expand Down

0 comments on commit 9d893ec

Please sign in to comment.