Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
Naim committed Mar 14, 2024
1 parent 60202ff commit ebbe8f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ create_graph(raft::handle_t const& handle,
auto start = comm_rank * (num_edges / comm_size);
auto end = (comm_rank + 1) * (num_edges / comm_size);
if (comm_rank == comm_size - 1) { end = num_edges; }

auto work_size = end - start;

rmm::device_uvector<vertex_t> d_edge_srcs(work_size, handle.get_stream());
rmm::device_uvector<vertex_t> d_edge_dsts(work_size, handle.get_stream());

Expand Down

0 comments on commit ebbe8f6

Please sign in to comment.