Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seunghwak committed Feb 15, 2024
1 parent f96b4eb commit 97029ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp/src/prims/per_v_random_select_transform_outgoing_e.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ struct convert_pair_to_quadruplet_t {
__device__ thrust::tuple<int, size_t, edge_t, size_t> operator()(
thrust::tuple<edge_t, size_t> index_pair) const
{
auto nbr_idx = thrust::get<0>(index_pair);
auto key_idx = thrust::get<1>(index_pair);
edge_t local_nbr_idx{0};
auto nbr_idx = thrust::get<0>(index_pair);
auto key_idx = thrust::get<1>(index_pair);
auto local_nbr_idx = nbr_idx;
int minor_comm_rank{-1};
size_t intra_partition_offset{};
if (nbr_idx != invalid_idx) {
Expand Down

0 comments on commit 97029ac

Please sign in to comment.